[dovecot-cvs] dovecot/src/master master-settings.c, 1.66, 1.67 master-settings.h, 1.42, 1.43

cras at dovecot.org cras at dovecot.org
Sun Sep 12 17:27:01 EEST 2004


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

Modified Files:
	master-settings.c master-settings.h 
Log Message:
Added pop3_enable_last setting to enable deprecated LAST command.



Index: master-settings.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.c,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -d -r1.66 -r1.67
--- master-settings.c	11 Sep 2004 12:21:45 -0000	1.66
+++ master-settings.c	12 Sep 2004 14:26:58 -0000	1.67
@@ -120,6 +120,7 @@
 
 	/* pop3 */
 	DEF(SET_BOOL, pop3_mails_keep_recent),
+	DEF(SET_BOOL, pop3_enable_last),
 	DEF(SET_STR, pop3_client_workarounds),
 
 	{ 0, NULL, 0 }
@@ -285,6 +286,7 @@
 
 	/* pop3 */
 	MEMBER(pop3_mails_keep_recent) FALSE,
+	MEMBER(pop3_enable_last) FALSE,
 	MEMBER(pop3_client_workarounds) NULL,
 
 	/* .. */

Index: master-settings.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.h,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- master-settings.h	11 Sep 2004 12:21:45 -0000	1.42
+++ master-settings.h	12 Sep 2004 14:26:58 -0000	1.43
@@ -90,7 +90,8 @@
 	const char *imap_client_workarounds;
 
 	/* pop3 */
-        int pop3_mails_keep_recent;
+	int pop3_mails_keep_recent;
+	int pop3_enable_last;
 	const char *pop3_client_workarounds;
 
 	/* .. */



More information about the dovecot-cvs mailing list