You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
If i create ldap user with name [email protected] i can sign in with ldap password one, two or more times. If i create [email protected] i can only one time sign in. on second time -
error: "Server application error" in browser (500)
into pdb -
django.db.utils.IntegrityError: duplicate key value violates unique constraint "users_user_email_243f6e77_uniq"
DETAIL: Key (email)=([email protected]) already exists.
The text was updated successfully, but these errors were encountered:
veox
added a commit
to veox/taiga-contrib-ldap-auth-ensky
that referenced
this issue
Dec 1, 2016
In `ldap_register()`, LDAP binding has already been performed,
and the user is allowed to authenticate. However, the current
logic is to look up the user entry in local DB using the string
from the login form. If the latter fails, creating a new user
is attempted - which might have been already created!
This still does not allow special characters (as in ensky#43, which
can be unsafe), but does address the underlying issue.
Should fixensky#15, ensky#17, ensky#45, and make ensky#43 obsolete.
Hi
If i create ldap user with name [email protected] i can sign in with ldap password one, two or more times. If i create [email protected] i can only one time sign in. on second time -
error: "Server application error" in browser (500)
into pdb -
django.db.utils.IntegrityError: duplicate key value violates unique constraint "users_user_email_243f6e77_uniq"
DETAIL: Key (email)=([email protected]) already exists.
The text was updated successfully, but these errors were encountered: