ldap_login.conf LDAPLoginModule question
I'm running CQ 5.4 and successfully integrated with AD via LDAP with the following settings:
com.day.crx.core.CRXLoginModule sufficient;
com.day.crx.security.ldap.LDAPLoginModule required
userRoot="CN=ABC,OU=hello,DC=world"
As long as the user is a member of the ABC group, he can sign in and their user is then created in the CRX. If I then remove the user from ABC group, however, they can still login. I understand that CRXLoginModule is set to sufficient, but I thought LDAPLoginModule takes precedence due to "required" setting. Of course, once I delete the user in the CRX, the user can no longer login.
Is this normal behavior, or should a user not be able to login?
Thanks.