[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: How to disable or enable an ldap user account
Hello Deepak,
I also needed this functionality and implement with ACL:
========================================================================
# Acess by group Admins and Replicators
access to dn.subtree="dc=previdencia,dc=gov,dc=br"
by group.exact="cn=LDAP
Admins,ou=Grupos,ou=Builtin,dc=previdencia,dc=gov,dc=br" write
by group.exact="cn=LDAP
Replicators,ou=Grupos,ou=Builtin,dc=previdencia,dc=gov,dc=br" read
by * break
# Implementation of the concept of 'hidden' in Exchange 5.5
access to dn.subtree="dc=previdencia,dc=gov,dc=br"
filter=(accountStatus=deleted)
by * none
========================================================================
The first ACL is required to allow members of groups "LDAP Admins" and
"LDAP Replicators" can work normally.
The second ACL is the implementation of the concept of "hidden" in
Exchange 5.5, using the "accountStatus = deleted".
I hope I have helped him.
Hugs,
Jarbas
2008/10/20 RamakrishnaDeepak Battu <ramakrishnadeepak@gmail.com>:
> Hello everyone,
> Can any one point me to how u can disable/enable an ldap user
> account.Thanks in advance.
>
> regards,
> deepak.
>