Hi all, This my code for LDAP:
from gluon.contrib.login_methods.ldap_auth import ldap_auth auth.settings.login_methods.append(ldap_auth(mode='cn',server='myserver',base_dn='ou=subdomain1,o=domain,c=com',port=389)) This works fine when I explicitely query SUBDOMAIN1 with the users that are in that domain (user1, user2, ...) My problem is that at runtime, I don't know what subdomain the users are from and I don't want to query all subdomains one after the other to find user information. Is these a way to query the entire directory (root) for users without knowing what subdomains they are in? If not, is there another better way to do this? Thank advance.