]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
Removed unused auth/mail_debug settings from structs.
authorTimo Sirainen <tss@iki.fi>
Mon, 15 Nov 2010 16:33:27 +0000 (16:33 +0000)
committerTimo Sirainen <tss@iki.fi>
Mon, 15 Nov 2010 16:33:27 +0000 (16:33 +0000)
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

index 103f9e9abcac97c07d326ecf87e06da1d939c31d..4e115373b47fb6593251c7eaf3c726764fae6248 100644 (file)
@@ -60,7 +60,6 @@ struct service_settings imap_service_settings = {
        { 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 setting_define imap_setting_defines[] = {
 };
 
 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
index f35e5d0350cd3a7615017c05f96abce5f6c49c47..3cd115c679caa435134a8619791a9934925e0548 100644 (file)
@@ -11,7 +11,6 @@ enum imap_client_workarounds {
 /* </settings checks> */
 
 struct imap_settings {
-       bool mail_debug;
        bool verbose_proctitle;
 
        /* imap: */
index de9013d4ed1cda419977cd6e826d5e454806f5ec..13254cb799a9801a0b4cd4c6513757de247dc321 100644 (file)
@@ -181,8 +181,6 @@ static const struct setting_define master_setting_defines[] = {
        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 @@ static const struct master_settings master_default_settings = {
        .default_vsz_limit = 256*1024*1024,
 
        .version_ignore = FALSE,
-       .mail_debug = FALSE,
-       .auth_debug = FALSE,
 
        .first_valid_uid = 500,
        .last_valid_uid = 0,
index 04f9d03a7cc9e7c5b323b43439497842124135e8..c62f3b33d1586205fdf59a33364df54f762c794b 100644 (file)
@@ -17,8 +17,6 @@ struct master_settings {
        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;
index b6e3843aa88dd3b68c5620b741e1a50e6b3e6d5a..0c31c8df684a6e2dc047bd5c286d65b38c22d043 100644 (file)
@@ -60,7 +60,6 @@ struct service_settings pop3_service_settings = {
        { 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 setting_define pop3_setting_defines[] = {
 };
 
 static const struct pop3_settings pop3_default_settings = {
-       .mail_debug = FALSE,
        .verbose_proctitle = FALSE,
 
        .pop3_no_flag_updates = FALSE,
index 174e2ba4ba2e4e39c6dfb0869e2247894ffe5543..c1bc75967ad2f126164ea52641bef5c074a98035 100644 (file)
@@ -11,7 +11,6 @@ enum pop3_client_workarounds {
 /* </settings checks> */
 
 struct pop3_settings {
-       bool mail_debug;
        bool verbose_proctitle;
 
        /* pop3: */