search for: carncross

Displaying 12 results from an estimated 12 matches for "carncross".

2004 May 26
3
IMAP views - and things to make Outlook Express not suck so much
Some of the things that keep being brought up SEEM TO ME to be a form of IMAP crack that can be accomplished in a much more generalized manner with a little bit of thought. An idea I had a while back was for IMAP views. It accomplishes the four things I keep seeing on this list without being specific to any of them. Consider new configuration variables: rewrite Junk { folder = INBOX search =
2004 Jul 26
1
bug in LSUB command
RFC 2060 section 7.2.2 and 7.2.3 says the "The LIST response occurs as a result of a LIST command." and "The LSUB response occurs as a result of an LSUB command." Dovecot presently returns the LIST response for the LSUB command. -- Geo Carncross <geocar at internetconnection.net> Internet Connection
2004 Jun 15
1
cvs changelog
FEI: the CVS changelog is no longer updating. cras's commits look like this: date: YYYY-MM-DD HH:MM:SS +TZDD; author cras; state Exp; lines +1 -0 but cvs2cl.pl (2.50) demands: date: YYYY/MM/DD HH:MM:SS; author cras; state: Exp; lines +1 -0 cvs2cl.pl version 2.55 still can't parse these lines. I patched my cvs2cl.pl so I could still follow dovecot, but I'm not certain these
2005 Mar 14
2
emulating courier imap
I'm trying this: default_mail_env = maildir:%h/.maildir:INDEX=%h/.indexes:INBOX=% h/.maildir namespace private { separator = . prefix = INBOX. inbox = no } namespace private { separator = . prefix = inbox = yes hidden = yes } but dovecot doesn't appear to be honoring "hidden" - am I missing something? (that is, all my
2005 Apr 06
1
dovecot crashes
I'm getting these over and over again in my dovecot [CVS] logs. I'm using PAM for authentication- something that worked a few weeks ago. Apr 6 15:22:11 [PAM-env] Unknown PAM_ITEM: <XAUTHORITY> Apr 6 15:22:11 [dovecot-auth] PAM pam_putenv: delete non-existent entry; XAUTHORITY dovecot: Apr 06 15:22:16 Warning: Killed with signal 2 dovecot: Apr 06 15:22:16 Error: child 25731 (imap)
2006 Jun 26
0
RHEL 3 and quota issues.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Thanks to code provided by Geo Carncross, I was able to determine what the problem was with v2 quota support on RHEL 3 using ext3 filesystems. I've included a patch file for quota-fs.c <sys/quota.h> on RHEL 3 sets _LINUX_QUOTA_VERSION to 1 if it's not defined by default. I copied <sys/quota.h> to ./sysquota.h and ed...
2004 Dec 23
8
delivery agent in 1.0?
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi :) Is there any plan to include delivery agent in 1.x? I would be very happy, if there would be lmtp delivery agent included with dovecot 1.x... This would make creating large mailsystem cluster creation very simple + indexes would be always up2date. Brane -----BEGIN PGP SIGNATURE-----
2004 Sep 02
3
link() problem with dovecot-imapd
I'm having a few problems with dovecot-imapd (installed from debian unstable) and am after some much needed help, all is set up and configured, except for this final problem of when I try and move or copy a message from one Maildir to another. I have the option "maildir_copy_with_hardlinks = no" in the the dovecot.conf file but it still seems to be trying to link() the file
2005 Oct 06
4
Backup Maildir
Hi All, I'm currently doing nightly full backups of /home. I'm not sure if a full back up is the best way to do backups. I know with my fileserver i do weekly full backup and daily incremental which would file on those type of files. I guess my question to the group is, how do you guys backup Maildir? whats the best way of doing it? -- Gabe Granger Pancentric results-driven
2004 Oct 25
9
Maildir unreliability
Looks like maildir can't be used very realiably without quite a lot of locking. Writing and scanning the directory would have to be locked, but reading wouldn't (as long as the file hasn't been renamed which would require scanning to find it). So much for "no locks needed".. The problem is that opendir()/readdir() may temporarily not return some files if there has been
2005 Mar 15
0
empty namespace prefix doesn't honor hidden (PATCH)
diff -u -r1.44 cmd-list.c --- src/imap/cmd-list.c 5 Feb 2005 18:07:26 -0000 1.44 +++ src/imap/cmd-list.c 15 Mar 2005 16:15:27 -0000 @@ -213,7 +213,7 @@ ctx->inbox && cur_ref == ctx->ref, ns->sep); if (*cur_ref != '\0' || *cur_prefix == '\0') - match = IMAP_MATCH_CHILDREN; + match =
2005 Mar 29
0
Checkin 1.37 of src/lib-storage/mail-storage.c
Checkin 1.37 of src/lib-storage/mail-storage.c added a parameter to mailbox_open() but this broke building src/deliver/deliver.c as revision 1.2 doesn't use the new parameter. It looks like save_mail() of src/deliver/deliver.c calls mailbox_open() and it looks like it might work fine if it were to use a (struct istream *)0 as the third parameter (instead of the flags) -- but I don't use