Metadata-Version: 2.1
Name: django-auth-exchange
Version: 0.1.2
Summary: A reusable Django app for authenticating against Exchange servers.
Home-page: https://github.com/gregschmit/django-auth-exchange
Author: Gregory N. Schmit
Author-email: gschmi4@uic.edu
License: MIT
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Dist: Django (>=2)
Requires-Dist: exchangelib

Auth Exchange
#############

.. inclusion-marker-do-not-remove

.. image:: https://readthedocs.org/projects/django-auth-exchange/badge/?version=latest
    :target: https://django-auth-exchange.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

Documentation: https://django-auth-exchange.readthedocs.io

Source: https://github.com/gregschmit/django-auth-exchange

PyPI: https://pypi.org/project/django-auth-exchange/

Auth Exchange is a reusable Django app that allows you to authenticate users
against an Exchange/Office365 server (using :code:`exchangelib`).

**The Problem**: I don't want users of my app to remember another password.

**The Solution**: This app allows those users to authenticate using their
Exchange email credentials.


How to Use
==========

.. code-block:: shell

    $ pip install django-auth-exchange

Include :code:`django_auth_exchange` in your :code:`INSTALLED_APPS`.

Add :code:`django_auth_exchange.backends.ExchangeAuthBackend` to your
:code:`AUTHENTICATION_BACKENDS`, e.g.:

.. code-block:: python

    AUTHENTICATION_BACKENDS = [
        'django_auth_exchange.backends.ExchangeAuthBackend',
        'django.contrib.auth.backends.ModelBackend',
    ]

Configure at least one domain:

.. code-block:: python

    AUTH_EXCHANGE_DOMAIN_SERVERS = {
        'example.org': 'autodiscover',
    }


Settings
--------

:code:`AUTH_EXCHANGE_CREATE_UNKNOWN_USER` (default: :code:`True`) - Determines
if users should be created if they are not found in the local database.

:code:`AUTH_EXCHANGE_DEFAULT_DOMAIN` (default: :code:`'example.com'`) - If only
a username is provided, this is the default domain that will be associated.

:code:`AUTH_EXCHANGE_ALLOWED_FORMATS` (default:
:code:`['email', 'netbios', 'username']`) - This specifies which formats are
allowed as the username (email means :code:`someuser@example.com`, netbios means
:code:`EXAMPLE\someuser`, and username means :code:`someuser`).

:code:`AUTH_EXCHANGE_DOMAIN_SERVERS` (default: :code:`{}`) - This specifies the
domains which are allowed to authenticate and the server that should be used for
authentication (or :code:`'autodiscover'`). Hint: Office365 uses the server
:code:`outlook.office365.com`.

:code:`AUTH_EXCHANGE_DOMAIN_USER_PROPERTIES` (default: :code:`{}`) - This
specifies the settings we should apply to a user when they are added to the
local database for each domain (e.g., to make all :code:`example.com` users
superusers, do:
:code:`{'example.com': {'is_staff': True, 'is_superuser': True}}`).

:code:`AUTH_EXCHANGE_NETBIOS_TO_DOMAIN_MAP` (default: :code:`{}`) - This
specifies a mapping from NETBIOS names to domain names.


Contributing
============

Email gschmi4@uic.edu if you want to contribute. You must only contribute code
that you have authored or otherwise hold the copyright to, and you must
make any contributions to this project available under the MIT license.

To collaborators: don't push using the :code:`--force` option.


