Is it possible to allow a users and a group to modify their attributes. I follow the FAQ in openldap but fail
This is my acl in slapd.conf
----
access to dn=".*,ou=dev,dc=abc,dc=com"
attrs=sn,cn,userPassword,mail
by self write
by group="cn=administrator,ou=dev,dc=abc,dc=com" write
by dn="(.*),ou=dev,dc=abc,dc=com" read
by anonymous auth
by * none
If I use above rule, it is impossible to access the ldap even use the user. Unless remove the line
>>> attrs=sn,cn,userPassword,mail
Is it possible do it in openldap??
Thankx