diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-04-30 20:38:16 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-04-30 20:38:16 -0400 |
commit | 3872dee261779a3263155935a578173205aae533 (patch) | |
tree | c1dfd082d6ae82e8607533ed8697ef546e27430a /doc/config.markdown | |
parent | 2afd7ee834d8064c6cfefd09a11d08d05a0dfdf1 (diff) |
Added support for LDAP Posix Groups (OpenLDAP with memberUid)
Diffstat (limited to 'doc/config.markdown')
-rw-r--r-- | doc/config.markdown | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/config.markdown b/doc/config.markdown index 150cb6dc..c1f08b99 100644 --- a/doc/config.markdown +++ b/doc/config.markdown @@ -170,6 +170,11 @@ define('LDAP_GROUP_BASE_DN', ''); // Example for ActiveDirectory: (&(objectClass=group)(sAMAccountName=%s*)) define('LDAP_GROUP_FILTER', ''); +// LDAP user group filter +// If this filter is configured, Kanboard will search user groups in LDAP_GROUP_BASE_DN +// Example for OpenLDAP: (&(objectClass=posixGroup)(memberUid=%s)) +define('LDAP_GROUP_USER_FILTER', ''); + // LDAP attribute for the group name define('LDAP_GROUP_ATTRIBUTE_NAME', 'cn'); ``` |