Fix a default value and documentation of password_ldap_encodage option (#9658)

This commit is contained in:
Aleksander Machniak
2025-04-21 13:32:17 +02:00
parent 8208b9f87d
commit 7a39bbb5b6
2 changed files with 5 additions and 5 deletions

View File

@@ -81,6 +81,7 @@
- Fix HTML message preview if it contains floating tables (#9804)
- Fix removing/expiring redis/memcache records when using a key prefix
- Fix bug where a wrong SPECIAL-USE folder could have been detected, if there were more than one per-type (#9781)
- Fix a default value and documentation of password_ldap_encodage option (#9658)
## Release 1.6.10

View File

@@ -277,12 +277,11 @@ $config['password_ldap_search_base'] = 'ou=people,dc=example,dc=com';
$config['password_ldap_search_filter'] = '(uid=%login)';
// LDAP password hash type
// Standard LDAP encryption type which must be one of: crypt,
// ext_des, md5crypt, blowfish, md5, sha, smd5, ssha, ad, cram-md5 (dovecot style) or clear.
// Standard LDAP encryption type which must be one of options supported in password_algorithm.
// Set to 'default' if you want to use method specified in password_algorithm option above.
// Multiple password Values can be generated by concatenating encodings with a +. E.g. 'cram-md5+crypt'
// Default: 'crypt'.
$config['password_ldap_encodage'] = 'crypt';
// Multiple password Values can be generated by concatenating encodings with a +. E.g. 'cram-md5+md5-crypt'
// Default: 'md5-crypt'.
$config['password_ldap_encodage'] = 'md5-crypt';
// LDAP password attribute
// Name of the ldap's attribute used for storing user password