Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
|version| |docs| |coverage| |license|
.. figure:: sample.png :width: 425 :alt: screenshot from a login form
Django Mail Auth is a lightweight authentication backend for Django, that does not require users to remember passwords.
Django Mail Auth features:
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
_.. _Rolf Erik Lekang
: http://rolflekang.com
.. _django-nopassword
: https://github.com/relekang/django-nopassword
.. _Is it time for password-less login?
: http://notes.xoxco.com/post/27999787765/is-it-time-for-password-less-login
.. _LOGIN WITHOUT PASSWORD MOST SECURE | WAIT.. WHAT?
: https://www.lucius.digital/en/blog/login-without-password-most-secure-wait-what
.. _Ben Brown
: http://twitter.com/benbrown
.. _Joris Snoek
: https://twitter.com/lucius_digital
Run this command to install django-mail-auth
::
python3 -m pip install django-mail-auth[wagtail]
First add mailauth
to you installed apps:
.. code-block:: python
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:
.. code-block:: python
# 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:
.. code-block:: python
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:
.. code-block:: python
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!
.. note:: Don't forget to setup you Email backend!
.. |version| image:: https://img.shields.io/pypi/v/django-mail-auth.svg :target: https://pypi.python.org/pypi/django-mail-auth/ .. |coverage| image:: https://codecov.io/gh/codingjoe/django-mail-auth/branch/main/graph/badge.svg :target: https://codecov.io/gh/codingjoe/django-mail-auth .. |license| image:: https://img.shields.io/badge/license-MIT-blue.svg :target: :target: https://raw.githubusercontent.com/codingjoe/django-mail-auth/main/LICENSE .. |docs| image:: https://readthedocs.org/projects/django-mail-auth/badge/?version=latest :target: https://django-mail-auth.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status
FAQs
Django authentication via login URLs, no passwords required.
We found that django-mail-auth demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.