LDAP+SASL
Norberto Bensa
nbensa at gmail.com
Thu Feb 19 21:46:01 UTC 2009
On Thu, Feb 19, 2009 at 7:26 PM, Michael Peek <peek at tiem.utk.edu> wrote:
> sasl-regexp uid=(.*),cn=.*,cn=auth
> uid=$1,ou=People,dc=nimbios,dc=org
You have at least two problems. The first one is sasl-regexp, AFAIK it
should be authz-regexp. The second problem is ".*" will match
everything and will not work as you expect. You need to tell the
regexp when to stop:
authz-regexp
uid=([^,]*),cn=[^,]*,cn=auth
uid=$1,ou=People,dc=nimbios,d=org
Also, remember to add "authz-policy to" too.
If it continues to fail, increase loglevel in slapd.conf
Regards,
Norberto
More information about the ubuntu-users
mailing list