[dovecot-cvs] dovecot/src/master mail-process.c, 1.75, 1.76 master-settings.c, 1.86, 1.87 master-settings.h, 1.57, 1.58

cras at dovecot.org cras at dovecot.org
Sun Sep 11 13:52:03 EEST 2005


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

Modified Files:
	mail-process.c master-settings.c master-settings.h 
Log Message:
Added pop3_reuse_xuidl setting. Patch by Chris Wakelin



Index: mail-process.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/mail-process.c,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -d -r1.75 -r1.76
--- mail-process.c	4 Jul 2005 11:32:31 -0000	1.75
+++ mail-process.c	11 Sep 2005 10:52:00 -0000	1.76
@@ -227,6 +227,8 @@
 		env_put("FULL_FILESYSTEM_ACCESS=1");
 	if (set->pop3_no_flag_updates)
 		env_put("POP3_NO_FLAG_UPDATES=1");
+	if (set->pop3_reuse_xuidl)
+		env_put("POP3_REUSE_XUIDL=1");
 	if (set->pop3_enable_last)
 		env_put("POP3_ENABLE_LAST=1");
 	if (set->mbox_dirty_syncs)

Index: master-settings.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.c,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- master-settings.c	7 Aug 2005 12:51:12 -0000	1.86
+++ master-settings.c	11 Sep 2005 10:52:00 -0000	1.87
@@ -131,6 +131,7 @@
 	/* pop3 */
 	DEF(SET_BOOL, pop3_no_flag_updates),
 	DEF(SET_BOOL, pop3_enable_last),
+	DEF(SET_BOOL, pop3_reuse_xuidl),
 	DEF(SET_STR, pop3_uidl_format),
 	DEF(SET_STR, pop3_client_workarounds),
 	DEF(SET_STR, pop3_logout_format),
@@ -327,6 +328,7 @@
 	/* pop3 */
 	MEMBER(pop3_no_flag_updates) FALSE,
 	MEMBER(pop3_enable_last) FALSE,
+	MEMBER(pop3_reuse_xuidl) FALSE,
 	MEMBER(pop3_uidl_format) "%v.%u",
 	MEMBER(pop3_client_workarounds) NULL,
 	MEMBER(pop3_logout_format) "top=%t/%T, retr=%r/%R, del=%d/%m, size=%s",

Index: master-settings.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.h,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- master-settings.h	14 May 2005 20:32:06 -0000	1.57
+++ master-settings.h	11 Sep 2005 10:52:00 -0000	1.58
@@ -100,6 +100,7 @@
 	/* pop3 */
 	int pop3_no_flag_updates;
 	int pop3_enable_last;
+	int pop3_reuse_xuidl;
 	const char *pop3_uidl_format;
 	const char *pop3_client_workarounds;
 	const char *pop3_logout_format;



More information about the dovecot-cvs mailing list