Hi,
I am testing roundcube 0.7-stable. I configured LDAP Adressbook with the following groups properties:
'groups' => array( 'base_dn' => 'dc=mydomain', 'filter' => '(objectClass=rmailGroup)', 'object_classes' => array("top", "mailGroup"), 'member_attr' => 'rfc822member', // name of the member attribute, e.g. uniqueMember 'name_attr' => 'cn', // attribute to be used as group name ),
I can see the users and groups emails in address book but not group members. When i click on group no member listed. After enabling rouncube debug, I saw the following LDAP query. It seems that RC users full dn as a filter value.
[29-Dec-2011 17:20:55 +0200]: C: Search [(|(member=uid=user@test.com,ou=test.com,o=mail,dc=mydomain)(uniqueMember=uid=user@test.com,ou=test.com,o=mail,dc=mydomain)(*rfc822member=uid=user@test.com,ou=test.com,o=mail,dc=mydomain*))][dn: dc=mydomain]
But the filter value must be username not full dn as above. Any idea?