From 4737b393b5a37a13d3d715ce0f80f3a10344c795 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Thu, 26 Jan 2012 23:13:13 -0400 Subject: [PATCH] Add email authentication backend note to the documentation --- docs/settings.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/settings.rst b/docs/settings.rst index 3b1fc65f25..ffac3c7179 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -330,7 +330,9 @@ Common Default: ``username`` - Controls the mechanism used to authenticated user. Options are: ``username``, ``email`` + Controls the mechanism used to authenticated user. Options are: ``username``, ``email`` + If using the ``email`` login method a proper email authentication backend must used + such as AUTHENTICATION_BACKENDS = ('common.auth.email_auth_backend.EmailAuthBackend',) .. data:: COMMON_ALLOW_ANONYMOUS_ACCESS