HiI have enabled my domino directory to be published as ldap and available for anonymous queries
If I run
ldapsearch -h myldaphost cn=*
I get a list of all entries, and a person is i.e.:
CN=FirstName LastName,O=DominoCertifier
objectclass=dominoPerson
…
cn=FirstName LastName
uid=userid
…
so far so good,
I would suppose that I could query my ldap with something like:
ldapsearch -h myldaphost O=DominoCertifier
and get a list of all entries that have that certifier (including my user. But that does not work, the query returns only 1 entry for the certifier.
I tried using a more complex filter like
ldapsearch -h myldaphost “(&(cn=*)(O=DominoCertifier))”
This in my opinion should return all entries with the above mentioned certifier, but it returns nothing.
I am missing something? Do I need to enable somthing on ldap or domino directory to peform this kind of query?
/Andreas