Quote:
Originally Posted by iggy Thank you for the files. Give us a moment to analyze and we'll get right back to you. |
The supplied slapd.conf.in clearly illustrates why this error is occuring:
Code:
# only allow access to these attrs basically GAL/Postfix related attrs
access to dn.subtree="ou=people,dc=XXXXX,dc=com"
by * read
access to dn.subtree="ou=groups,dc=XXXXX,dc=com"
by * read Since you've locked down all access to those subtrees to READ only, nothing can write to it. You need to fix your ACLS to be like:
Code:
# only allow access to these attrs basically GAL/Postfix related attrs
access to dn.subtree="ou=people,dc=XXXXXXX,dc=com"
by dn.children="cn=admins,cn=zimbra" write
by * read
access to dn.subtree="ou=groups,dc=XXXXXXX,dc=com"
by dn.children="cn=admins,cn=zimbra" write
by * read Also, I'd advise you to move all the index statements that got added up with the other index statements, and move the added access lines to before the
line, as overlays are the last things that should be listed in a given database configuration. If you later enable replication, you may hit problems with your current configs.
--Quanah