diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-07-04 12:43:44 -0300 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-07-04 12:43:44 -0300 |
commit | 23341b2326b560ddf71c90915bc55f49bed81446 (patch) | |
tree | 5f4d0e2175068cd6fa073e6c1a1c3f01ae538dce /app/common.php | |
parent | e99fd2a0e3bedcfb8aad24af9ee4df30b707e50a (diff) | |
parent | 0a3049c17293e6b7b416b4264ace1f373bda6728 (diff) |
Merge pull request #161 from Typz/ldap
Implement LDAP user lookup.
Diffstat (limited to 'app/common.php')
-rw-r--r-- | app/common.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/common.php b/app/common.php index 350e70b7..d607cf92 100644 --- a/app/common.php +++ b/app/common.php @@ -44,7 +44,9 @@ defined('DB_NAME') or define('DB_NAME', 'kanboard'); defined('LDAP_AUTH') or define('LDAP_AUTH', false); defined('LDAP_SERVER') or define('LDAP_SERVER', ''); defined('LDAP_PORT') or define('LDAP_PORT', 389); -defined('LDAP_USER_DN') or define('LDAP_USER_DN', '%s'); +defined('LDAP_SSL_VERIFY') or define('LDAP_SSL_VERIFY', true); +defined('LDAP_ACCOUNT_FULLNAME') or define('LDAP_ACCOUNT_FULLNAME', 'displayname'); +defined('LDAP_ACCOUNT_EMAIL') or define('LDAP_ACCOUNT_EMAIL', 'mail'); // Google authentication defined('GOOGLE_AUTH') or define('GOOGLE_AUTH', false); |