dovecot-2.0: Removed unused auth/mail_debug settings from structs.

dovecot at dovecot.org dovecot at dovecot.org
Mon Nov 15 18:33:31 EET 2010


details:   http://hg.dovecot.org/dovecot-2.0/rev/d9913925a111
changeset: 12422:d9913925a111
user:      Timo Sirainen <tss at iki.fi>
date:      Mon Nov 15 16:33:27 2010 +0000
description:
Removed unused auth/mail_debug settings from structs.

diffstat:

 src/imap/imap-settings.c     |  2 --
 src/imap/imap-settings.h     |  1 -
 src/master/master-settings.c |  4 ----
 src/master/master-settings.h |  2 --
 src/pop3/pop3-settings.c     |  2 --
 src/pop3/pop3-settings.h     |  1 -
 6 files changed, 0 insertions(+), 12 deletions(-)

diffs (93 lines):

diff -r 8a28deb29320 -r d9913925a111 src/imap/imap-settings.c
--- a/src/imap/imap-settings.c	Mon Nov 15 16:25:23 2010 +0000
+++ b/src/imap/imap-settings.c	Mon Nov 15 16:33:27 2010 +0000
@@ -60,7 +60,6 @@
 	{ SET_DEFLIST, name, offsetof(struct imap_settings, field), defines }
 
 static const struct setting_define imap_setting_defines[] = {
-	DEF(SET_BOOL, mail_debug),
 	DEF(SET_BOOL, verbose_proctitle),
 
 	DEF(SET_SIZE, imap_max_line_length),
@@ -75,7 +74,6 @@
 };
 
 static const struct imap_settings imap_default_settings = {
-	.mail_debug = FALSE,
 	.verbose_proctitle = FALSE,
 
 	/* RFC-2683 recommends at least 8000 bytes. Some clients however don't
diff -r 8a28deb29320 -r d9913925a111 src/imap/imap-settings.h
--- a/src/imap/imap-settings.h	Mon Nov 15 16:25:23 2010 +0000
+++ b/src/imap/imap-settings.h	Mon Nov 15 16:33:27 2010 +0000
@@ -11,7 +11,6 @@
 /* </settings checks> */
 
 struct imap_settings {
-	bool mail_debug;
 	bool verbose_proctitle;
 
 	/* imap: */
diff -r 8a28deb29320 -r d9913925a111 src/master/master-settings.c
--- a/src/master/master-settings.c	Mon Nov 15 16:25:23 2010 +0000
+++ b/src/master/master-settings.c	Mon Nov 15 16:33:27 2010 +0000
@@ -181,8 +181,6 @@
 	DEF(SET_SIZE, default_vsz_limit),
 
 	DEF(SET_BOOL, version_ignore),
-	DEF(SET_BOOL, mail_debug),
-	DEF(SET_BOOL, auth_debug),
 
 	DEF(SET_UINT, first_valid_uid),
 	DEF(SET_UINT, last_valid_uid),
@@ -208,8 +206,6 @@
 	.default_vsz_limit = 256*1024*1024,
 
 	.version_ignore = FALSE,
-	.mail_debug = FALSE,
-	.auth_debug = FALSE,
 
 	.first_valid_uid = 500,
 	.last_valid_uid = 0,
diff -r 8a28deb29320 -r d9913925a111 src/master/master-settings.h
--- a/src/master/master-settings.h	Mon Nov 15 16:25:23 2010 +0000
+++ b/src/master/master-settings.h	Mon Nov 15 16:33:27 2010 +0000
@@ -17,8 +17,6 @@
 	uoff_t default_vsz_limit;
 
 	bool version_ignore;
-	bool mail_debug;
-	bool auth_debug;
 
 	unsigned int first_valid_uid, last_valid_uid;
 	unsigned int first_valid_gid, last_valid_gid;
diff -r 8a28deb29320 -r d9913925a111 src/pop3/pop3-settings.c
--- a/src/pop3/pop3-settings.c	Mon Nov 15 16:25:23 2010 +0000
+++ b/src/pop3/pop3-settings.c	Mon Nov 15 16:33:27 2010 +0000
@@ -60,7 +60,6 @@
 	{ SET_DEFLIST, name, offsetof(struct pop3_settings, field), defines }
 
 static const struct setting_define pop3_setting_defines[] = {
-	DEF(SET_BOOL, mail_debug),
 	DEF(SET_BOOL, verbose_proctitle),
 
 	DEF(SET_BOOL, pop3_no_flag_updates),
@@ -76,7 +75,6 @@
 };
 
 static const struct pop3_settings pop3_default_settings = {
-	.mail_debug = FALSE,
 	.verbose_proctitle = FALSE,
 
 	.pop3_no_flag_updates = FALSE,
diff -r 8a28deb29320 -r d9913925a111 src/pop3/pop3-settings.h
--- a/src/pop3/pop3-settings.h	Mon Nov 15 16:25:23 2010 +0000
+++ b/src/pop3/pop3-settings.h	Mon Nov 15 16:33:27 2010 +0000
@@ -11,7 +11,6 @@
 /* </settings checks> */
 
 struct pop3_settings {
-	bool mail_debug;
 	bool verbose_proctitle;
 
 	/* pop3: */


More information about the dovecot-cvs mailing list