Metadata-Version: 2.0
Name: matrix-synapse-ldap3
Version: 0.1.1
Summary: An LDAP3 auth provider for Synapse
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
Requires-Dist: Twisted (>=15.1.0)
Requires-Dist: ldap3
Requires-Dist: service-identity

Synapse LDAP Auth Provider
==========================

Allows synapse to use LDAP as a password provider.


Usage
-----

Example synapse config:

.. code:: yaml

   password_providers:
    - module: "ldap_auth_provider.LdapAuthProvider"
      config:
        enabled: true
        uri: "ldap://ldap.example.com:389"
        start_tls: true
        base: "ou=users,dc=example,dc=com"
        attributes:
           uid: "cn"
           mail: "email"
           name: "givenName"
        #bind_dn:
        #bind_password:
        #filter: "(objectClass=posixAccount)"


