diff options
author | Lorenzo Perone <lorenzo.perone@bytesatwork.com> | 2014-10-14 23:22:46 +0200 |
---|---|---|
committer | Lorenzo Perone <lorenzo.perone@bytesatwork.com> | 2014-10-14 23:22:46 +0200 |
commit | 3e3fcd4d2786930996be916b9ff3a0c46abc49c0 (patch) | |
tree | c8e3845948cdae79391299713873df7503db8022 /plugins/password/config.inc.php.dist | |
parent | c45507e317bfc5310005d651a3818b2669541fba (diff) |
Password Plugin / LDAP Driver:
- adds support for (optional) multiple userPassword values for compatibility with more authentication shemes
- adds support for CRAM-MD5 scheme as implemented by doveadm pw (credits: see header of plugins/password/helpers/dovecot_hmacmd5.php)
Diffstat (limited to 'plugins/password/config.inc.php.dist')
-rw-r--r-- | plugins/password/config.inc.php.dist | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/password/config.inc.php.dist b/plugins/password/config.inc.php.dist index 6610b4dae..94c4368fe 100644 --- a/plugins/password/config.inc.php.dist +++ b/plugins/password/config.inc.php.dist @@ -204,10 +204,11 @@ $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 or clear. +// ext_des, md5crypt, blowfish, md5, sha, smd5, ssha, ad, cram-md5 (dovecot style) or clear. // Please note that most encodage types require external libraries // to be included in your PHP installation, see function hashPassword in drivers/ldap.php for more info. -// Default: 'crypt' +// Multiple password Values can be generated by concatenating encodings with a +. E.g. 'cram-md5+crypt' +// Default: 'crypt'. $config['password_ldap_encodage'] = 'crypt'; // LDAP password attribute |