[dovecot-cvs] dovecot/src/master mail-process.c, 1.46, 1.47 master-settings.c, 1.50, 1.51 master-settings.h, 1.31, 1.32

cras at procontrol.fi cras at procontrol.fi
Sun May 30 01:21:41 EEST 2004


Update of /home/cvs/dovecot/src/master
In directory talvi:/tmp/cvs-serv32116/src/master

Modified Files:
	mail-process.c master-settings.c master-settings.h 
Log Message:
Added maildir_stat_dirs option.



Index: mail-process.c
===================================================================
RCS file: /home/cvs/dovecot/src/master/mail-process.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- a/mail-process.c	24 May 2004 22:35:55 -0000	1.46
+++ b/mail-process.c	29 May 2004 22:21:39 -0000	1.47
@@ -314,6 +314,8 @@
 		env_put("MMAP_NO_WRITE=1");
 	if (set->fcntl_locks_disable)
 		env_put("FCNTL_LOCKS_DISABLE=1");
+	if (set->maildir_stat_dirs)
+		env_put("MAILDIR_STAT_DIRS=1");
 	if (set->maildir_copy_with_hardlinks)
 		env_put("MAILDIR_COPY_WITH_HARDLINKS=1");
 	if (set->maildir_check_content_changes)

Index: master-settings.c
===================================================================
RCS file: /home/cvs/dovecot/src/master/master-settings.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- a/master-settings.c	29 May 2004 16:43:22 -0000	1.50
+++ b/master-settings.c	29 May 2004 22:21:39 -0000	1.51
@@ -93,6 +93,7 @@
 	DEF(SET_BOOL, mmap_disable),
 	DEF(SET_BOOL, mmap_no_write),
 	DEF(SET_BOOL, fcntl_locks_disable),
+	DEF(SET_BOOL, maildir_stat_dirs),
 	DEF(SET_BOOL, maildir_copy_with_hardlinks),
 	DEF(SET_BOOL, maildir_check_content_changes),
 	DEF(SET_STR, mbox_locks),
@@ -226,6 +227,7 @@
 	MEMBER(mmap_no_write) FALSE,
 #endif
 	MEMBER(fcntl_locks_disable) FALSE,
+	MEMBER(maildir_stat_dirs) FALSE,
 	MEMBER(maildir_copy_with_hardlinks) FALSE,
 	MEMBER(maildir_check_content_changes) FALSE,
 	MEMBER(mbox_locks) "dotlock fcntl",

Index: master-settings.h
===================================================================
RCS file: /home/cvs/dovecot/src/master/master-settings.h,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- a/master-settings.h	29 May 2004 16:43:22 -0000	1.31
+++ b/master-settings.h	29 May 2004 22:21:39 -0000	1.32
@@ -68,6 +68,7 @@
 	int mmap_disable;
 	int mmap_no_write;
 	int fcntl_locks_disable;
+	int maildir_stat_dirs;
 	int maildir_copy_with_hardlinks;
 	int maildir_check_content_changes;
 	const char *mbox_locks;



More information about the dovecot-cvs mailing list