diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-02-20 19:42:27 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-02-20 19:42:27 -0500 |
commit | 7c2bf746f2790e724b56bb1b05614bd1cd6df2f4 (patch) | |
tree | bb6ba812375bd35efd2ba1028e281811521da1c5 /docs | |
parent | 8214aae1d6c60b3d6726729d7532d8ee0df629ce (diff) |
Lowercase LDAP usernames by default for authentication
Diffstat (limited to 'docs')
-rw-r--r-- | docs/ldap-authentication.markdown | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/ldap-authentication.markdown b/docs/ldap-authentication.markdown index 0428d8e0..2428194d 100644 --- a/docs/ldap-authentication.markdown +++ b/docs/ldap-authentication.markdown @@ -76,6 +76,15 @@ 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. +// Example for ActiveDirectory: 'samaccountname' +// Example for OpenLDAP: 'uid' +define('LDAP_ACCOUNT_ID', 'samaccountname'); + +// By default Kanboard lowercase the ldap username to avoid duplicate users (the database is case sensitive) +// Set to true if you want to preserve the case +define('LDAP_USERNAME_CASE_SENSITIVE', false); ``` ### LDAP bind type |