Metadata-Version: 1.1
Name: secure-smtpd
Version: 2.1.1
Summary: Adds support for SSL, AUTH, and other goodies, to Petri Lehtinen's SMTPD library.
Home-page: https://github.com/bcoe/secure-smtpd
Author: Benjamin Coe
Author-email: bencoe@gmail.com
License: ISC
Description: Secure SMTPD
        ============
        
        Secure-SMTPD extends on Petri Lehtinen's SMTPD library adding support for AUTH and SSL.
        
        Usage
        -----
        
        ```python
        from secure_smtpd import SMTPServer, FakeCredentialValidator
        SMTPServer(
            self,
            ('0.0.0.0', 465),
            None,
            require_authentication=True,
            ssl=True,
            certfile='examples/server.crt',
            keyfile='examples/server.key',
            credential_validator=FakeCredentialValidator(),
            debug=True
        )
        asyncore.loop()
        ```
        
Keywords: secure ssl auth smtp smtpd server
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Communications :: Email :: Mail Transport Agents
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: ISC License (ISCL)
