Pedro Luis Sánchez Faure

Results 3 comments of Pedro Luis Sánchez Faure

I can perform a successful bind when I set the attribute `get_info='NONE'` into `Server` ldap3 object: ``` >>> import ldap3 >>> server = ldap3.Server('', get_info='NONE') >>> temp_connection = ldap3.Connection(server, user='uid=plsan***,ou=Users,dc=*****,dc=com',...

I have made these small changes to the code: ```diff $ git diff authentik/sources/ldap/models.py diff --git a/authentik/sources/ldap/models.py b/authentik/sources/ldap/models.py index a6cb1a283..c1caa6026 100644 --- a/authentik/sources/ldap/models.py +++ b/authentik/sources/ldap/models.py @@ -3,7 +3,7 @@ from...