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 /app/constants.php | |
parent | 8214aae1d6c60b3d6726729d7532d8ee0df629ce (diff) |
Lowercase LDAP usernames by default for authentication
Diffstat (limited to 'app/constants.php')
-rw-r--r-- | app/constants.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/constants.php b/app/constants.php index 064e0211..39ab5470 100644 --- a/app/constants.php +++ b/app/constants.php @@ -36,6 +36,7 @@ defined('LDAP_USER_PATTERN') or define('LDAP_USER_PATTERN', ''); defined('LDAP_ACCOUNT_FULLNAME') or define('LDAP_ACCOUNT_FULLNAME', 'displayname'); defined('LDAP_ACCOUNT_EMAIL') or define('LDAP_ACCOUNT_EMAIL', 'mail'); defined('LDAP_ACCOUNT_ID') or define('LDAP_ACCOUNT_ID', ''); +defined('LDAP_USERNAME_CASE_SENSITIVE') or define('LDAP_USERNAME_CASE_SENSITIVE', false); // Google authentication defined('GOOGLE_AUTH') or define('GOOGLE_AUTH', false); |