changeset 12422:d9913925a111

Removed unused auth/mail_debug settings from structs.
author Timo Sirainen <tss@iki.fi>
date Mon, 15 Nov 2010 16:33:27 +0000
parents 8a28deb29320
children 656da7e0d6b9
files src/imap/imap-settings.c src/imap/imap-settings.h src/master/master-settings.c src/master/master-settings.h src/pop3/pop3-settings.c src/pop3/pop3-settings.h
diffstat 6 files changed, 0 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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: */
--- 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,
--- 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;
--- 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,
--- 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: */