]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
shutdown_clients default should have been "yes".
authorTimo Sirainen <tss@iki.fi>
Fri, 23 Oct 2009 02:58:53 +0000 (22:58 -0400)
committerTimo Sirainen <tss@iki.fi>
Fri, 23 Oct 2009 02:58:53 +0000 (22:58 -0400)
--HG--
branch : HEAD

src/imap/imap-settings.c
src/pop3/pop3-settings.c

index 86204b9fa11ffcd69efc176979769ce92357f0c1..4207e9ac54c07688cd6edfb2ad96911676dfbced 100644 (file)
@@ -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
index e9f18e76e4fe3c36b0b8086dadcfaff136d975b7..928b5b1f68c1d1bedb9afa9562a032d10dabc00c 100644 (file)
@@ -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,