A Question about LDAP
- I'm considering using Koozali SME Server as a primary authentication server
and
- I want to know if an account is locked
Using PHP from another machine, I can check is a user can login in by checking their LDAP - simple - works
if (@ldap_bind($ldap, $dn, $password)) return true;
if I do an ldap_search
- is there any entry which will tell me that the account is locked
i.e.
- go to user manager
- lock the account
- then, using ldap, can I tell if the account is locked
(it looks to me like the answer is no)
thanks in advance