dovecot-2.0: imap, pop3: Changed default client_limit to 1.

dovecot at dovecot.org dovecot at dovecot.org
Thu Mar 18 03:50:56 EET 2010


details:   http://hg.dovecot.org/dovecot-2.0/rev/53dadf274cc7
changeset: 10939:53dadf274cc7
user:      Timo Sirainen <tss at iki.fi>
date:      Thu Mar 18 03:50:53 2010 +0200
description:
imap, pop3: Changed default client_limit to 1.
So even if service_count is disabled, by default no more than 1 connection
is allowed for the process.

diffstat:

 src/imap/imap-settings.c |  2 +-
 src/pop3/pop3-settings.c |  2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diffs (24 lines):

diff -r 7fa0cd9e3a89 -r 53dadf274cc7 src/imap/imap-settings.c
--- a/src/imap/imap-settings.c	Wed Mar 17 15:45:50 2010 +0200
+++ b/src/imap/imap-settings.c	Thu Mar 18 03:50:53 2010 +0200
@@ -41,7 +41,7 @@
 
 	.process_min_avail = 0,
 	.process_limit = 1024,
-	.client_limit = 0,
+	.client_limit = 1,
 	.service_count = 1,
 	.vsz_limit = -1U,
 
diff -r 7fa0cd9e3a89 -r 53dadf274cc7 src/pop3/pop3-settings.c
--- a/src/pop3/pop3-settings.c	Wed Mar 17 15:45:50 2010 +0200
+++ b/src/pop3/pop3-settings.c	Thu Mar 18 03:50:53 2010 +0200
@@ -41,7 +41,7 @@
 
 	.process_min_avail = 0,
 	.process_limit = 1024,
-	.client_limit = 0,
+	.client_limit = 1,
 	.service_count = 1,
 	.vsz_limit = -1U,
 


More information about the dovecot-cvs mailing list