[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
(ITS#6354) Regex-based authzTo example in docs, section 15.3.3.1, is incorrect.
- To: openldap-its@OpenLDAP.org
- Subject: (ITS#6354) Regex-based authzTo example in docs, section 15.3.3.1, is incorrect.
- From: tim@stoo.org
- Date: Wed, 28 Oct 2009 22:16:15 GMT
- Auto-submitted: auto-generated (OpenLDAP-ITS)
Full_Name: Tim Stewart
Version: 2.4.x
OS: N/A
URL:
Submission from: (NULL) (65.200.62.8)
The OpenLDAP documentation at:
http://www.openldap.org/doc/admin24/sasl.html#SASL%20Authentication
describes an example of using a regular expression to describe a set of
distinguished names as opposed to using an ldap:// URL. The example is
authzTo: dn.regex=^uid=[^,]*,dc=example,dc=com$
which will produce a syntax error. Instead, the example should read like
authzTo: dn.regex:^uid=[^,]*,dc=example,dc=com$
(the first `=' is replaced with `:') which is accepted by the server.