[dovecot-cvs] dovecot/src/master master-settings.c, 1.95, 1.96 master-settings.h, 1.63, 1.64

cras at dovecot.org cras at dovecot.org
Thu Jan 5 03:19:44 EET 2006


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

Modified Files:
	master-settings.c master-settings.h 
Log Message:
Added dbox_rotate_size and dbox_rotate_days settings.



Index: master-settings.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.c,v
retrieving revision 1.95
retrieving revision 1.96
diff -u -d -r1.95 -r1.96
--- master-settings.c	2 Jan 2006 13:39:44 -0000	1.95
+++ master-settings.c	5 Jan 2006 01:19:42 -0000	1.96
@@ -116,6 +116,8 @@
 	DEF(SET_BOOL, mbox_dirty_syncs),
 	DEF(SET_BOOL, mbox_very_dirty_syncs),
 	DEF(SET_BOOL, mbox_lazy_writes),
+	DEF(SET_INT, dbox_rotate_size),
+	DEF(SET_INT, dbox_rotate_days),
 	DEF(SET_INT, umask),
 	DEF(SET_BOOL, mail_drop_priv_before_exec),
 
@@ -313,6 +315,8 @@
 	MEMBER(mbox_dirty_syncs) TRUE,
 	MEMBER(mbox_very_dirty_syncs) FALSE,
 	MEMBER(mbox_lazy_writes) TRUE,
+	MEMBER(dbox_rotate_size) 2048,
+	MEMBER(dbox_rotate_days) 1,
 	MEMBER(umask) 0077,
 	MEMBER(mail_drop_priv_before_exec) FALSE,
 

Index: master-settings.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.h,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -d -r1.63 -r1.64
--- master-settings.h	2 Jan 2006 13:39:44 -0000	1.63
+++ master-settings.h	5 Jan 2006 01:19:42 -0000	1.64
@@ -85,6 +85,8 @@
 	int mbox_dirty_syncs;
 	int mbox_very_dirty_syncs;
 	int mbox_lazy_writes;
+	unsigned int dbox_rotate_size;
+	unsigned int dbox_rotate_days;
 	unsigned int umask;
 	int mail_drop_priv_before_exec;
 



More information about the dovecot-cvs mailing list