Working filters :
(cn=marc)
(&(cn=marc)(objectClass=person)) => ("cn" seems to be ok...)
(&(givenName=marc)(sn=gaudreau))
(&(objectClass=person)(givenName=marc)(sn=gaudreau)) => (because the
objectClass condition is before everything else, this works fine)
Non-working filters :
(&(givenName=marc)(sn=gaudreau)(objectClass=person)) => (this time the
objectClass condition is at the end and this does not work)
(&(givenName=quanah)(sn=gibson)(objectClass=person)) => (same problem
but with "sn" instead)
(&(givenName=joe)(sn=gibson)(objectClass=person)) => (this still does
not work because of the "Gibson-Mount" entry)
(&(givenName=joe*)(sn=gibson)(objectClass=person))
(&(givenName=marc)(sn=smith)(anythingReturningALotOfCandidates))