LDAP sync a group users

I created a group in Active Directory, and I added all the zammad users in this group.
I entered the group path as “Base DN” in LDAP integration config, but no user is synced. When I only use the domain DNs, it works but all the domain users are synced.
Please help.

It sounds like you’ve configured LDAP incorrectly. The “Base DN” is the OU that the users you want to include can be found in. If you want to limit your scope to group membership you will need to edit your “User filter” which is by default (&(objectClass=user)(samaccountname=*)(!(samaccountname=*$)))

You could use something like to get all of the users that belong to :

(&(objectClass=user)(sAMAccountName=*)(memberOf=cn=CaptainPlanet,ou=users,dc=company,dc=com))

Thank you very much astrugatch.

It worked for me.

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.