[Date Prev][Date Next] [Chronological] [Thread] [Top]

RE: Matching Rules for Constructed Syntaxes



Oops! I misread the ASN.1 for LdapACI.


This:

> (ldapACI:componentMatch:={
> 	component "subject.dn",
> 	rule distinguishedNameMatch,
> 	value "cn=Steven Legg, o=Adacel, c=au" })

should read:

(ldapACI:componentMatch:={
	component "subject.subject.dn",
	rule distinguishedNameMatch,
	value "cn=Steven Legg, o=Adacel, c=au" })

and this:

> (ldapACI:componentMatch:=
> 	{ component "subject.dn.*", rule rdnMatch, value "o=Adacel" })

should read:

(ldapACI:componentMatch:={
	component "subject.subject.dn.*",
	rule rdnMatch,
	value "o=Adacel" })

Cheers,
Steven