There is no problem with the Authentication and if the user is in the ACL all works fine.
The problem occur with group authorization in AD. When a user try to log in the authentication works, but the authorisation fails.
As we can se the problem causes by the commonname in AD when it contains a comma.
Look att this
Scenarie 1, DO NOT WORK
CN name in AD = Doe, John (include comma)
Authorization Filter is:
(&(objectclass=group)(Member=%*))
Result, shows the following search filter in the ldap log file:
(&(objectclass=group)(Member=CN=Doe, John,OU=XX,OU=Users,OU=XXX,DC=eu,DC=XXXXXXX,DC=com))
Scenarie 2, WORKS FINE
CN name in AD = Doe John (NO comma)
Same Authorization Filter
Result, shows the following search filter in the ldap log file:
(&(objectclass=group)(Member=Doe John))
Why do domino create a DN name when there is a comma in the common name in the %*
Why do domino create a only CN name when ist not?
Any knowledge about this issue? Is there a work around?
We have an AD with a lot of commas and we are not allowed to change the commonname and remove commas, wish would be the easiest way to manange this…