LDAP search for user in subtree possible?

I would like to add LDAP authentication to our Stardog server. Since we have many OUs where user accounts are stored, it would be good, if it would be possible to search for a user in a complete subtree.
In the example given in the docs it looks like I would have to add all OUs with users:

ldap.user.dn.templates = "uid={0},ou=people,dc=example,dc=com","uid={0},ou=contractors,dc=example,dc=com"

What I would need is something like

ldap.user.dn.templates = "cn={0},*,dc=example,dc=com"

The whole subtree should be searched for a cn that matches the username. Is it possible?

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