changeset 788:5b2a247ed361 HEAD

mailbox_check_interval is now disabled by default, at least Evolution breaks with it.
author Timo Sirainen <tss@iki.fi>
date Mon, 16 Dec 2002 16:38:38 +0200
parents 31b22b4a48c9
children c50f9f4194d2
files dovecot-example.conf src/master/settings.c
diffstat 2 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/dovecot-example.conf	Mon Dec 16 10:27:58 2002 +0200
+++ b/dovecot-example.conf	Mon Dec 16 16:38:38 2002 +0200
@@ -139,7 +139,7 @@
 # Default MAIL environment to use when it's not set. By leaving this empty
 # dovecot tries to do some automatic detection as described in
 # doc/mail-storages.txt. $U will be replaced with username. Some examples:
-# "maildir:/var/mail/$U/Maildir", "mbox:~/mail/"
+# maildir:/var/mail/$U/Maildir, mbox:~/mail/
 #default_mail_env = 
 
 # Space-separated list of fields to cache for all mails. Currently these
@@ -173,7 +173,8 @@
 # received. This setting specifies the minimum interval in seconds between
 # new mail notifications to client - internally they may be checked more or
 # less often. Setting this to 0 disables the checking.
-#mailbox_check_interval = 30
+# NOTE: Evolution client breaks with this option when it's trying to APPEND.
+#mailbox_check_interval = 0
 
 # Space-separated list of fields that Dovecot should never set to be cached.
 # Useful if you want to save disk space at the cost of more I/O when the fields
--- a/src/master/settings.c	Mon Dec 16 10:27:58 2002 +0200
+++ b/src/master/settings.c	Mon Dec 16 16:38:38 2002 +0200
@@ -128,7 +128,7 @@
 char *set_default_mail_env = NULL;
 char *set_mail_cache_fields = "MessagePart";
 char *set_mail_never_cache_fields = NULL;
-unsigned int set_mailbox_check_interval = 30;
+unsigned int set_mailbox_check_interval = 0;
 int set_mail_save_crlf = FALSE;
 int set_mail_read_mmaped = FALSE;
 int set_maildir_copy_with_hardlinks = FALSE;