Displaying 3 results from an estimated 3 matches for "mail_storage_flag_dotlock_use_excl".
2007 Apr 08
3
Released 1.0.rc31
http://dovecot.org/releases/dovecot-1.0.rc31.tar.gz
http://dovecot.org/releases/dovecot-1.0.rc31.tar.gz.sig
mbox + NFS combination shouldn't break anymore. v1.0 still planned to
be released next friday.
- mbox: Give "mbox file was modified while we were syncing" error only
if we detect some problems in the mbox file. The check can't be
trusted with NFS.
- Convert
2007 Apr 08
3
Released 1.0.rc31
http://dovecot.org/releases/dovecot-1.0.rc31.tar.gz
http://dovecot.org/releases/dovecot-1.0.rc31.tar.gz.sig
mbox + NFS combination shouldn't break anymore. v1.0 still planned to
be released next friday.
- mbox: Give "mbox file was modified while we were syncing" error only
if we detect some problems in the mbox file. The check can't be
trusted with NFS.
- Convert
2007 Jul 25
2
Allowing tilde at start of mailbox names
...c/lib-storage/mail-storage.h Tue Jul 24 05:48:03 2007 +0300
+++ b/src/lib-storage/mail-storage.h Wed Jul 25 14:08:43 2007 +0100
@@ -34,7 +34,9 @@ enum mail_storage_flags {
fail to create the storage. */
MAIL_STORAGE_FLAG_NO_AUTOCREATE = 0x200,
/* Rely on O_EXCL when creating dotlocks */
- MAIL_STORAGE_FLAG_DOTLOCK_USE_EXCL = 0x400
+ MAIL_STORAGE_FLAG_DOTLOCK_USE_EXCL = 0x400,
+ /* Allow folder names to begin with '~' TILDE */
+ MAIL_STORAGE_FLAG_ALLOW_TILDE = 0x800
};
enum mail_storage_lock_method {
diff -r a23be6956727 -r ab9cf3790ea9 src/master/mail-process.c
--- a/src/master/mail-process.c Tue Jul 24...