case insensitive LDAP searches

前端 未结 2 1235
栀梦
栀梦 2020-12-11 04:26

What\'t the syntax for performing a case-insensitive match on a \'uid\' attribute? If attribute definition matters then how would that be changed? In particular I am using

相关标签:
2条回答
  • 2020-12-11 05:24

    I think they are case insensitive by default, unless its a password attribute.

    0 讨论(0)
  • 2020-12-11 05:29

    (uid=miXedCaseUSer) will match a uid of mixedcaseuser.

    Accoriding to the OID Description for 0.9.2342.19200300.100.1.1 - Userid userId is defined to have EQUALITY MATCHING RULE caseIgnoreMatch

    Which means it is one of the attribute definitions that employ case insensitive matching by default.

    0 讨论(0)
提交回复
热议问题