nickw444 / flask-ldap3-login

LDAP3 Logins for Flask/Flask-Login

Home Page:http://flask-ldap3-login.readthedocs.org/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Users with different "sub OUs" not able to log in

zupd opened this issue · comments

commented

I want two users to log in from 2 different sub OUs.

For example if I want both these 2 to authenticate
user1 dn: OU=Users,OU=subgroup1,OU=group1,OU=Users
user2 dn: OU=Users,OU=subgroup2,OU=group1,OU=Users

it doesnt work because I need the entire user DN in the config.
e.g config['LDAP_USER_DN'] = "OU=Users,OU=subgroup1,OU=group1,OU=Users"

Any way to work around this or perhaps fix it in a later patch?

commented

Never mind. Got it to work. Changed LDAP_USER_SEARCH_ATTR or something like that to SUBTREE instead of the default of LEVEL. And the user string to OU=group1,OU=Users

Perfect, glad to see you got it working 👍

@gigglearrows - Hi - Where you using Flask-Login on your app to login the user, inheriting the UserMixin methods, once your users were found in the sub OUs?