Metadata-Version: 1.1
Name: matrix-synapse-imap
Version: 0.0.3
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
Description: 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:
                  enabled: true
                  create_users: true
                  server: "mail.example.com"
                  plainuserid: true
        
        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.
        
        The ``plainuserid``-key forces the unaltered userid to be send to the imap server
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3 :: Only
