[dovecot-cvs] dovecot dovecot-example.conf,1.13,1.14

cras at procontrol.fi cras at procontrol.fi
Sat Nov 16 07:21:23 EET 2002


Update of /home/cvs/dovecot
In directory danu:/tmp/cvs-serv15320

Modified Files:
	dovecot-example.conf 
Log Message:
Finally support for handling each login connection in it's own process.
Enabled by default. Also a few bugfixes to master process.



Index: dovecot-example.conf
===================================================================
RCS file: /home/cvs/dovecot/dovecot-example.conf,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- dovecot-example.conf	12 Nov 2002 05:27:30 -0000	1.13
+++ dovecot-example.conf	16 Nov 2002 05:21:21 -0000	1.14
@@ -57,11 +57,20 @@
 # is if you wish to run the whole imapd without roots.
 #login_chroot = yes
 
-# Number of imap-login processes to use, one or two is enough
-#login_processes_count = 1
+# Should each login be processed in it's own process (yes), or should one
+# login process be allowed to process multiple connections (no)? Yes is more
+# secure, espcially with SSL/TLS enabled. No is faster since there's no need
+# to create processes all the time.
+#login_process_per_connection = yes
+
+# Number of imap-login processes to create. If login_process_per_user is
+# yes, this is the number of extra processes waiting for users to log in.
+#login_processes_count = 3
 
 # Maximum number of connections allowed in login state. When this limit is
-# reached, the oldest connections are dropped.
+# reached, the oldest connections are dropped. If login_process_per_user
+# is no, this is a per-process value, so the absolute maximum number of users
+# logging in actually login_processes_count * max_logging_users.
 #max_logging_users = 256
 
 ##




More information about the dovecot-cvs mailing list