Django authentication via login URLs, no passwords required.
Project description
Django Mail Auth
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
This project was inspired by:
- Is it time for password-less login? by Ben Brown
- LOGIN WITHOUT PASSWORD MOST SECURE | WAIT.. WHAT? by Joris Snoek
- django-nopassword by Rolf Erik Lekang
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!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django_mail_auth-3.5.5.tar.gz.
File metadata
- Download URL: django_mail_auth-3.5.5.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b8095836d4142231f8106fa43be04e1adef426a1c88c8194b75025b517c77c0b
|
|
| MD5 |
dcd780b23be59e1d39a44c15a5cd6257
|
|
| BLAKE2b-256 |
8332617d33f91d34dfc90303b5c6170b86d33a746fafcda9c71b4ec6efff2e1a
|
Provenance
The following attestation bundles were made for django_mail_auth-3.5.5.tar.gz:
Publisher:
release.yml on codingjoe/django-mail-auth
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_mail_auth-3.5.5.tar.gz -
Subject digest:
b8095836d4142231f8106fa43be04e1adef426a1c88c8194b75025b517c77c0b - Sigstore transparency entry: 771826657
- Sigstore integration time:
-
Permalink:
codingjoe/django-mail-auth@b974d94e453b2a38d26f1110fdfc3891a406c8e7 -
Branch / Tag:
refs/tags/3.5.5 - Owner: https://github.com/codingjoe
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b974d94e453b2a38d26f1110fdfc3891a406c8e7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file django_mail_auth-3.5.5-py3-none-any.whl.
File metadata
- Download URL: django_mail_auth-3.5.5-py3-none-any.whl
- Upload date:
- Size: 26.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
708ebecb44c60a2718ea38b06dea44b1b6f3a47bf026cd6149c33e70888f4765
|
|
| MD5 |
b4b64c66424b44c8333a1605f063932d
|
|
| BLAKE2b-256 |
387ec258103bc18a2516e9742000c9f39cd5c796b3bf8a01ccd6bf1cb083d825
|
Provenance
The following attestation bundles were made for django_mail_auth-3.5.5-py3-none-any.whl:
Publisher:
release.yml on codingjoe/django-mail-auth
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
django_mail_auth-3.5.5-py3-none-any.whl -
Subject digest:
708ebecb44c60a2718ea38b06dea44b1b6f3a47bf026cd6149c33e70888f4765 - Sigstore transparency entry: 771826665
- Sigstore integration time:
-
Permalink:
codingjoe/django-mail-auth@b974d94e453b2a38d26f1110fdfc3891a406c8e7 -
Branch / Tag:
refs/tags/3.5.5 - Owner: https://github.com/codingjoe
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b974d94e453b2a38d26f1110fdfc3891a406c8e7 -
Trigger Event:
release
-
Statement type: