From f9269f9c6f865de465b8da8a7e8f3014ff3c33a9 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 5 Apr 2017 14:14:57 +0300 Subject: [PATCH] example-config: Add blocking setting to dovecot-ldap.conf.ext --- doc/example-config/dovecot-ldap.conf.ext | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/example-config/dovecot-ldap.conf.ext b/doc/example-config/dovecot-ldap.conf.ext index 942ece5a03..f4a65f2921 100644 --- a/doc/example-config/dovecot-ldap.conf.ext +++ b/doc/example-config/dovecot-ldap.conf.ext @@ -140,3 +140,12 @@ base = # 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 -- 2.47.3