changeset 21922:a7c6ecdaaef8

example-config: Add blocking setting to dovecot-ldap.conf.ext
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Wed, 05 Apr 2017 14:14:57 +0300
parents 4e7a0dfe1e51
children a4eaf4ba3f90
files doc/example-config/dovecot-ldap.conf.ext
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/doc/example-config/dovecot-ldap.conf.ext	Sat Apr 08 09:58:57 2017 +0300
+++ b/doc/example-config/dovecot-ldap.conf.ext	Wed Apr 05 14:14:57 2017 +0300
@@ -140,3 +140,12 @@
 # Default password scheme. "{scheme}" before password overrides this.
 # List of supported schemes is in: http://wiki2.dovecot.org/Authentication
 #default_pass_scheme = CRYPT
+
+# By default all LDAP lookups are performed by the auth master process.
+# If blocking=yes, auth worker processes are used to perform the lookups.
+# Each auth worker process creates its own LDAP connection so this can
+# increase parallelism. With blocking=no the auth master process can
+# keep 8 requests pipelined for the LDAP connection, while with blocking=yes
+# each connection has a maximum of 1 request running. For small systems the
+# blocking=no is sufficient and uses less resources.
+#blocking = no