Skip to content

Commit

Permalink
fix minor errors in options.yml.example
Browse files Browse the repository at this point in the history
We need parentheses on both sides of the ldap_user_filter, otherwise the ldap search is broken and won't work..

Missing small L in a comment. (l. 115)
  • Loading branch information
netzvieh committed Aug 21, 2015
1 parent 1aaec60 commit f01380b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/config/options.yml.example
Expand Up @@ -109,10 +109,10 @@ ldap_search_auth: ""
# be met; eg group membership
#
# To allow only users in a specific group uncomment this line:
#ldap_user_filter: memberof=CN=group,OU=Groups,DC=Domain Component)
#ldap_user_filter: (memberof=CN=group,OU=Groups,DC=Domain Component)
#
# Note this is joined to the normal selection like so:
# (&(#{dap_search_attr}=#{login})#{ldap_user_filter})
# (&(#{ldap_search_attr}=#{login})#{ldap_user_filter})
# giving an ldap search of:
# (&(sAMAccountName=#{login})(memberof=CN=group,OU=Groups,DC=Domain Component))
#
Expand Down

0 comments on commit f01380b

Please sign in to comment.