From: Timo Sirainen Date: Wed, 5 Apr 2017 11:14:57 +0000 (+0300) Subject: example-config: Add blocking setting to dovecot-ldap.conf.ext X-Git-Tag: 2.2.29~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f9269f9c6f865de465b8da8a7e8f3014ff3c33a9;p=thirdparty%2Fdovecot%2Fcore.git example-config: Add blocking setting to dovecot-ldap.conf.ext --- 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