diff dovecot-example.conf @ 613:1906116a62ce HEAD

Finally support for handling each login connection in it's own process. Enabled by default. Also a few bugfixes to master process.
author Timo Sirainen <tss@iki.fi>
date Sat, 16 Nov 2002 07:21:21 +0200
parents 3b44bc64afd4
children e60620644af3
line wrap: on
line diff
--- a/dovecot-example.conf	Sat Nov 16 07:19:03 2002 +0200
+++ b/dovecot-example.conf	Sat Nov 16 07:21:21 2002 +0200
@@ -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
 
 ##