MCPcopy Index your code
hub / github.com/codingjoe/django-mail-auth

github.com/codingjoe/django-mail-auth @3.5.5

Chat with this repo
repository ↗ · DeepWiki ↗ · release 3.5.5 ↗ · + Follow
132 symbols 524 edges 48 files 23 documented · 17%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README
<img alt="Django MailAuth: Secure login links; no passwords required!" src="https://github.com/codingjoe/django-mail-auth/raw/main/images/logo-light.svg">

Django Mail Auth

version Documentation Status coverage license

Django Mail Auth is a lightweight authentication backend for Django, that does not require users to remember passwords.

Django Mail Auth features:

  • custom user model support
  • drop in Django admin support
  • drop in Django User replacement
  • drop in Wagtail login replacement
  • extendable SMS support

screenshot from a login form

This project was inspired by:

Installation

Run this command to install django-mail-auth:

python3 -m pip install django-mail-auth[wagtail]

Setup

First add mailauth to you installed apps:

INSTALLED_APPS = [
    # Django's builtin apps…
    "mailauth",
    "mailauth.contrib.admin",  # optional
    "mailauth.contrib.user",  # optional
    # optional, must be included before "wagtail.admin"
    "mailauth.contrib.wagtail",
    # other apps…
]

mailauth.contrib.admin is optional and will replace the admin's login with token based authentication too.

mailauth.contrib.user is optional and provides a new Django User model. The new User model needs to be enabled via the AUTH_USER_MODEL setting:

# This setting should be either "EmailUser" or
# any custom subclass of "AbstractEmailUser"
AUTH_USER_MODEL = "mailauth_user.EmailUser"

# optional, Wagtail only
WAGTAILUSERS_PASSWORD_ENABLED = False

Next you will need to add the new authentication backend:

AUTHENTICATION_BACKENDS = (
    # default, but now optional
    # This should be removed if you use mailauth.contrib.user or any other
    # custom user model that does not have a username/password
    "django.contrib.auth.backends.ModelBackend",
    # The new access token based authentication backend
    "mailauth.backends.MailAuthBackend",
)

Django's ModelBackend is only needed, if you still want to support password based authentication. If you don't, simply remove it from the list.

Last but not least, go to your URL root configuration urls.py and add the following:

from django.urls import path


urlpatterns = [
    path("accounts/", include("mailauth.urls")),
    # optional, must be before "wagtail.admin.urls"
    path("", include("mailauth.contrib.wagtail.urls")),
]

That's it!

[!IMPORTANT] Don't forget to setup you Email backend!

Core symbols most depended-on inside this repo

get
called by 17
mailauth/views.py
create_user
called by 9
mailauth/contrib/user/models.py
save
called by 7
mailauth/forms.py
unsign
called by 7
mailauth/signing.py
anonymize
called by 6
mailauth/contrib/user/models.py
authenticate
called by 5
mailauth/backends.py
get_users
called by 4
mailauth/forms.py
to_timestamp
called by 4
mailauth/signing.py

Shape

Method 80
Class 43
Function 9

Languages

Python100%

Modules by API surface

mailauth/contrib/user/models.py12 symbols
tests/contrib/auth/test_models.py11 symbols
mailauth/forms.py10 symbols
mailauth/views.py9 symbols
tests/test_views.py8 symbols
tests/test_signing.py8 symbols
tests/test_backends.py8 symbols
tests/contrib/auth/test_admin.py8 symbols
tests/test_forms.py7 symbols
tests/contrib/wagtail/test_views.py6 symbols
tests/conftest.py6 symbols
mailauth/signing.py6 symbols

For agents

$ claude mcp add django-mail-auth \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact