hello. i'm trying to configure dynlist overlay into slapd. my slapd.conf
-----------------------------------------------------------------------
include /etc/ldap/schema/core.schema include /etc/ldap/schema/cosine.schema include /etc/ldap/schema/nis.schema include /etc/ldap/schema/inetorgperson.schema include /etc/ldap/schema/misc.schema include /etc/ldap/schema/dyngroup.schema
pidfile /var/run/slapd/slapd.pid argsfile /var/run/slapd/slapd.args loglevel 0 modulepath /usr/lib/ldap moduleload back_bdb sizelimit 500 tool-threads 1
overlay dynlist dynlist-attrset groupOfURLs memberURL
backend bdb checkpoint 512 30
database bdb suffix "dc=casa" rootdn "cn=admin,dc=casa" rootpw ***** directory "/var/lib/ldap" dbconfig set_cachesize 0 2097152 0 dbconfig set_lk_max_objects 1500 dbconfig set_lk_max_locks 1500 dbconfig set_lk_max_lockers 1500 index objectClass eq lastmod on
access to attrs=userPassword,shadowLastChange by dn="cn=admin,dc=casa" write by anonymous auth by self write by * none
access to dn.base="" by * read
access to dn.regex="^(.+,)?uid=([^,]+),ou=Users,dc=casa$" by dn="cn=admin,dc=casa" write by dn.exact,expand="uid=$2,ou=Users,dc=casa" write by * none
access to * by dn="cn=admin,dc=casa" write by self write by users read by * none
----------------------------------------------------------------------------------------
when i run slapd -d -1 i get the folowing error.
....... ......... loaded module back_bdb bdb_back_initialize: initialize BDB backend bdb_back_initialize: Sleepycat Software: Berkeley DB 4.2.52: (December 3, 2003) module back_bdb: null module registered line 33 (sizelimit 500) line 37 (tool-threads 1) line 42 (overlay dynlist) overlay "dynlist" not found /etc/ldap/slapd.conf: line 42: <overlay> handler exited with 1! slapd destroy: freeing system resources. slapd stopped. connections_destroy: nothing to destroy.
i've tried searching in the internet and the lists but 've found nothing. if i remove the lines :
overlay dynlist dynlist-attrset groupOfURLs memberURL
slapd runs ok, but without dynlist of course. dynlist.la and dynlist.so are in /usr/lib/ldap thank's in advance.
-------------------------------------------------------