mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-20 01:21:20 +01:00
Fix a default value and documentation of password_ldap_encodage option (#9658)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user