Hi,
is it possible to change config to make uid case insensitive?
this search return no entries.
ldapsearch -x -D "uid=*U*ser01,cn=users,dc=XXX,dc=XXX" -w XXX -s base -b
"cn=users,dc=XXX,dc=XXX"
ldap_bind: No such object (32)
matched DN: cn=users,dc=ujaen,dc=es
but this return one entry
ldapsearch -x -D "uid=*u*ser01,cn=users,dc=XXX,dc=XXX" -w XXX -s base -b
"cn=users,dc=XXX,dc=XXX"
...
# numEntries: 1
In my case, what I want is both searches returning the exact same record.
in 00core.ldif
attributeTypes: ( 0.9.2342.19200300.100.1.1 NAME ( 'uid' 'userid' )
EQUALITY *caseIgnore*Match
SUBSTR caseIgnoreSubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.15
X-ORIGIN 'RFC 4519'
X-DEPRECATED 'userid' )
Using 389-ds-base-1.3.3.1-20.el7_1 in centos 7.
Regards
--