summaryrefslogtreecommitdiff
path: root/plugins/password/config.inc.php.dist
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-08-24 19:18:47 +0000
committeralecpl <alec@alec.pl>2009-08-24 19:18:47 +0000
commit7b865083e71471c2c6f9e039b42e6e8cc4ac5657 (patch)
treef2a2ef3480892e866060fb8a114f96f8193e39bc /plugins/password/config.inc.php.dist
parentf4360201ee06953119da2b4e7801b01a2bf00853 (diff)
- Password/LDAP: support %name, %domain in userdn (#1486055)
Diffstat (limited to 'plugins/password/config.inc.php.dist')
-rw-r--r--plugins/password/config.inc.php.dist7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/password/config.inc.php.dist b/plugins/password/config.inc.php.dist
index abe2749b6..5d0a88b4e 100644
--- a/plugins/password/config.inc.php.dist
+++ b/plugins/password/config.inc.php.dist
@@ -87,8 +87,11 @@ $rcmail_config['password_ldap_adminDN'] = null;
$rcmail_config['password_ldap_adminPW'] = null;
// LDAP user DN mask
-// The user's DN is mandatory and as we only have his login, we need to re-create his DN using a mask
-// '%login' will be replace by the current roundcube user's login
+// The user's DN is mandatory and as we only have his login,
+// we need to re-create his DN using a mask
+// '%login' will be replaced by the current roundcube user's login
+// '%name' will be replaced by the current roundcube user's name part
+// '%domain' will be replaced by the current roundcube user's domain part
// Exemple: 'uid=%login,ou=people,dc=exemple,dc=com'
$rcmail_config['password_ldap_userDN_mask'] = 'uid=%login,ou=people,dc=exemple,dc=com';