Metadata-Version: 1.1
Name: matrix-synapse-ldap3
Version: 0.1.2
Summary: An LDAP3 auth provider for Synapse
Home-page: https://github.com/matrix-org/matrix-synapse-ldap3
Author: hexa-
Author-email: hexa@darmstadt.ccc.de
License: UNKNOWN
Description: Synapse LDAP Auth Provider
        ==========================
        
        Allows synapse to use LDAP as a password provider.
        
        Installation
        ------------
        - Via deb package `python-matrix-synapse-ldap3` available in the same repo as the synapse package
        - Via python's package manager: `pip install matrix-synapse-ldap3`
        
        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)"
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2.7
