From 1ec684b60adec9a5034ad7140be96406802bdad8 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 29 Jun 2015 12:02:11 +0200 Subject: [PATCH] Fix wrong path for authentication backend (fixes #7693) --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 327fb39..7311f44 100644 --- a/config.py +++ b/config.py @@ -129,7 +129,7 @@ LDAP_AUTH_SETTINGS = [ }, } ] -AUTHENTICATION_BACKENDS = ('authentic2.backends.LDAPBackend',) +AUTHENTICATION_BACKENDS = ('authentic2.backends.ldap_backend.LDAPBackend',) # bypass authentic2 warning: "DEFAULT_FROM_EMAIL must be customized" DEFAULT_FROM_EMAIL = 'root@localhost'