1
0
Fork
You've already forked django-imapauth
0
IMAP authentication backend for Django
  • Python 100%
2023年09月01日 12:34:00 +02:00
.github/workflows Initial commit. 2023年09月01日 12:34:00 +02:00
django_imapauth/backends Initial commit. 2023年09月01日 12:34:00 +02:00
.gitignore Initial commit. 2023年09月01日 12:34:00 +02:00
pyproject.toml Initial commit. 2023年09月01日 12:34:00 +02:00
README.md Initial commit. 2023年09月01日 12:34:00 +02:00

Django IMAP Auth

Lets you authenticate your Django users against an IMAP server.

Configuration settings:

  • IMAP_AUTH_HOST: your IMAP server

  • IMAP_AUTH: a list of accounts that should be authenticated against the IMAP server (defaults to empty list); example: ['alice', 'bob']

  • IMAP_AUTH_STAFF: a list of staff accounts that should be authenticated against the IMAP server (defaults to empty list); example: ['carol']

  • IMAP_AUTH_SUPERUSER: a list of superuser accounts that should be authenticated against the IMAP server (defaults to empty list); example: ['ted', 'grace']