diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-12 20:28:34 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-12 20:28:34 -0400 |
commit | de5049039cbe1373829fa41483bbfc9b162d5f41 (patch) | |
tree | fec1c3fbb7113c32d6a207a276f7642e59097581 /config.default.php | |
parent | cf46cf44041939d18260fafd0ac3a4bcfb85bc9f (diff) |
Improve LDAP authentication class
Diffstat (limited to 'config.default.php')
-rw-r--r-- | config.default.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.default.php b/config.default.php index 6cfe260d..d3e18b8a 100644 --- a/config.default.php +++ b/config.default.php @@ -100,10 +100,10 @@ define('LDAP_ACCOUNT_FULLNAME', 'displayname'); // Name of an attribute of the user account object which should be used as the email of the user. define('LDAP_ACCOUNT_EMAIL', 'mail'); -// Name of an attribute of the user account object which should be used as the id of the user. +// Name of an attribute of the user account object which should be used as the id of the user. (optional) // Example for ActiveDirectory: 'samaccountname' // Example for OpenLDAP: 'uid' -define('LDAP_ACCOUNT_ID', 'samaccountname'); +define('LDAP_ACCOUNT_ID', ''); // LDAP Attribute for group membership define('LDAP_ACCOUNT_MEMBEROF', 'memberof'); |