[Date Prev][Date Next]
[Chronological]
[Thread]
[Top]
Re: International searches
At 08:31 PM 11/1/2005, Pablo Hoffman wrote:
>So far I've looked in LDAP RFCs and openldap documentation/mailing lists
>without any luck.
In LDAP, "Sánchez" and "Sanchez" are not equal per the
caseIgnoreMatch (or caseExactMatch) matching rule.
Hence, (cn=Sanchez) won't match the CN value "Sánchez".
However, in slapd(8), directory string approximate
rule ignores accents and such. Hence, (cn~=Sanchez)
will match "Sánchez" and vice versa.
Kurt