[dovecot-cvs] dovecot/src/master mail-process.c, 1.67, 1.68 master-settings.c, 1.80, 1.81 master-settings.h, 1.52, 1.53

cras at dovecot.org cras at dovecot.org
Wed Dec 29 21:10:30 EET 2004


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

Modified Files:
	mail-process.c master-settings.c master-settings.h 
Log Message:
Added mail_debug setting. Moved full_filesystem_access from global variable
to flag in mail_create*() functions.



Index: mail-process.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/mail-process.c,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- mail-process.c	29 Dec 2004 17:31:54 -0000	1.67
+++ mail-process.c	29 Dec 2004 19:10:27 -0000	1.68
@@ -214,6 +214,8 @@
 		env_put("MAILDIR_STAT_DIRS=1");
 	if (set->maildir_copy_with_hardlinks)
 		env_put("MAILDIR_COPY_WITH_HARDLINKS=1");
+	if (set->mail_debug)
+		env_put("DEBUG=1");
 	if (set->mail_full_filesystem_access)
 		env_put("FULL_FILESYSTEM_ACCESS=1");
 	if (set->pop3_no_flag_updates)

Index: master-settings.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.c,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -d -r1.80 -r1.81
--- master-settings.c	29 Dec 2004 17:31:54 -0000	1.80
+++ master-settings.c	29 Dec 2004 19:10:27 -0000	1.81
@@ -91,6 +91,7 @@
 	DEF(SET_STR, mail_cache_fields),
 	DEF(SET_STR, mail_never_cache_fields),
 	DEF(SET_INT, mailbox_idle_check_interval),
+	DEF(SET_BOOL, mail_debug),
 	DEF(SET_BOOL, mail_full_filesystem_access),
 	DEF(SET_INT, mail_max_keyword_length),
 	DEF(SET_BOOL, mail_save_crlf),
@@ -258,6 +259,7 @@
 	MEMBER(mail_cache_fields) "flags",
 	MEMBER(mail_never_cache_fields) "imap.envelope",
 	MEMBER(mailbox_idle_check_interval) 30,
+	MEMBER(mail_debug) FALSE,
 	MEMBER(mail_full_filesystem_access) FALSE,
 	MEMBER(mail_max_keyword_length) 50,
 	MEMBER(mail_save_crlf) FALSE,

Index: master-settings.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/master/master-settings.h,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -d -r1.52 -r1.53
--- master-settings.h	29 Dec 2004 17:31:54 -0000	1.52
+++ master-settings.h	29 Dec 2004 19:10:27 -0000	1.53
@@ -62,6 +62,7 @@
 	const char *mail_cache_fields;
 	const char *mail_never_cache_fields;
 	unsigned int mailbox_idle_check_interval;
+	int mail_debug;
 	int mail_full_filesystem_access;
 	int mail_max_keyword_length;
 	int mail_save_crlf;



More information about the dovecot-cvs mailing list