Metadata-Version: 2.1
Name: matrix-synapse-imap
Version: 0.0.2
Summary: IMAP auth provider for Synapse
Home-page: https://github.com/bit/matrix-synapse-imap
Author: Jan Gerber
Author-email: j@mailb.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Dist: Twisted (>=15.1.0)

IMAP auth provider for Synapse
==============================

Allows Synapse to use IMAP to login users.

Installation
------------

pip3 install matrix-synapse-imap

Usage
-----

Example Synapse config:

.. code:: yaml

    password_providers:
      - module: "imap_auth_provider.IMAPAuthProvider"
        config:
          create_users: true
          server: "mail.example.com"

The ``create_users``-key specifies whether to create Matrix accounts
for valid system accounts.

The ``server``-key specifies the name of the imap server, it must support SSL connections.



