From: Timo Sirainen Date: Fri, 23 Oct 2009 02:58:53 +0000 (-0400) Subject: shutdown_clients default should have been "yes". X-Git-Tag: 2.0.alpha2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f63d261f59fb92d3563ae97d52dc209dade7e1e;p=thirdparty%2Fdovecot%2Fcore.git shutdown_clients default should have been "yes". --HG-- branch : HEAD --- diff --git a/src/imap/imap-settings.c b/src/imap/imap-settings.c index 86204b9fa1..4207e9ac54 100644 --- a/src/imap/imap-settings.c +++ b/src/imap/imap-settings.c @@ -36,7 +36,7 @@ static struct setting_define imap_setting_defines[] = { static struct imap_settings imap_default_settings = { MEMBER(mail_debug) FALSE, - MEMBER(shutdown_clients) FALSE, + MEMBER(shutdown_clients) TRUE, /* RFC-2683 recommends at least 8000 bytes. Some clients however don't break large message sets to multiple commands, so we're pretty diff --git a/src/pop3/pop3-settings.c b/src/pop3/pop3-settings.c index e9f18e76e4..928b5b1f68 100644 --- a/src/pop3/pop3-settings.c +++ b/src/pop3/pop3-settings.c @@ -36,7 +36,7 @@ static struct setting_define pop3_setting_defines[] = { static struct pop3_settings pop3_default_settings = { MEMBER(mail_debug) FALSE, - MEMBER(shutdown_clients) FALSE, + MEMBER(shutdown_clients) TRUE, MEMBER(pop3_no_flag_updates) FALSE, MEMBER(pop3_enable_last) FALSE,