[dovecot-cvs] dovecot/src/master mail-process.c, 1.56, 1.57 master-settings.c, 1.65, 1.66 master-settings.h, 1.41, 1.42

cras at dovecot.org cras at dovecot.org
Sat Sep 11 15:21:47 EEST 2004


Update of /var/lib/cvs/dovecot/src/master
In directory talvi:/tmp/cvs-serv9497/src/master

Modified Files:
	mail-process.c master-settings.c master-settings.h 
Log Message:
Removed mailbox_check_interval completely. It wasn't currently implemented,
and most (all?) clients which would benefit from it support IDLE anyway.



Index: mail-process.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/mail-process.c,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- mail-process.c	28 Aug 2004 16:39:54 -0000	1.56
+++ mail-process.c	11 Sep 2004 12:21:45 -0000	1.57
@@ -187,8 +187,6 @@
 			    set->mail_cache_fields, NULL));
 	env_put(t_strconcat("MAIL_NEVER_CACHE_FIELDS=",
 			    set->mail_never_cache_fields, NULL));
-	env_put(t_strdup_printf("MAILBOX_CHECK_INTERVAL=%u",
-				set->mailbox_check_interval));
 	env_put(t_strdup_printf("MAILBOX_IDLE_CHECK_INTERVAL=%u",
 				set->mailbox_idle_check_interval));
 	env_put(t_strdup_printf("MAIL_MAX_KEYWORD_LENGTH=%u",

Index: master-settings.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.c,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -d -r1.65 -r1.66
--- master-settings.c	5 Sep 2004 15:27:45 -0000	1.65
+++ master-settings.c	11 Sep 2004 12:21:45 -0000	1.66
@@ -88,7 +88,6 @@
 	DEF(SET_STR, default_mail_env),
 	DEF(SET_STR, mail_cache_fields),
 	DEF(SET_STR, mail_never_cache_fields),
-	DEF(SET_INT, mailbox_check_interval),
 	DEF(SET_INT, mailbox_idle_check_interval),
 	DEF(SET_BOOL, mail_full_filesystem_access),
 	DEF(SET_INT, mail_max_keyword_length),
@@ -250,7 +249,6 @@
 	MEMBER(default_mail_env) NULL,
 	MEMBER(mail_cache_fields) "flags",
 	MEMBER(mail_never_cache_fields) "imap.envelope",
-	MEMBER(mailbox_check_interval) 0,
 	MEMBER(mailbox_idle_check_interval) 30,
 	MEMBER(mail_full_filesystem_access) FALSE,
 	MEMBER(mail_max_keyword_length) 50,

Index: master-settings.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.h,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- master-settings.h	28 Aug 2004 16:39:54 -0000	1.41
+++ master-settings.h	11 Sep 2004 12:21:45 -0000	1.42
@@ -59,7 +59,6 @@
 	const char *default_mail_env;
 	const char *mail_cache_fields;
 	const char *mail_never_cache_fields;
-	unsigned int mailbox_check_interval;
 	unsigned int mailbox_idle_check_interval;
 	int mail_full_filesystem_access;
 	int mail_max_keyword_length;



More information about the dovecot-cvs mailing list