summaryrefslogtreecommitdiff
path: root/roundcubemail/plugins/password/config.inc.php.dist
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-08-24 19:18:47 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-08-24 19:18:47 +0000
commitf0c33d00dcb1c9fa394b45aba51466871a3f90af (patch)
treedf304a460cdd92fa96b4f124f18cc7679255ae6d /roundcubemail/plugins/password/config.inc.php.dist
parenta1ecb5b2849a132c87da5adac6ed656acb61c664 (diff)
- Password/LDAP: support %name, %domain in userdn (#1486055)
git-svn-id: https://svn.roundcube.net/trunk@2869 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/plugins/password/config.inc.php.dist')
-rw-r--r--roundcubemail/plugins/password/config.inc.php.dist7
1 files changed, 5 insertions, 2 deletions
diff --git a/roundcubemail/plugins/password/config.inc.php.dist b/roundcubemail/plugins/password/config.inc.php.dist
index abe2749b6..5d0a88b4e 100644
--- a/roundcubemail/plugins/password/config.inc.php.dist
+++ b/roundcubemail/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';