Metadata-Version: 1.0
Name: pymta
Version: 0.3.1
Summary: library to build a custom SMTP server
Home-page: http://www.schwarz.eu/opensource/projects/pymta
Author: Felix Schwarz
Author-email: felix.schwarz@oss.schwarz.eu
License: MIT
Download-URL: http://www.schwarz.eu/opensource/projects/pymta/download/0.3.1/pymta-0.3.1.tar.gz
Description: 
        pymta is a library to build a custom SMTP server in Python. This is useful if
        you want to...
        
        * test mail-sending code against a real SMTP server even in your unit tests.
        * build a custom SMTP server with non-standard behavior without reimplementing
        the whole SMTP protocol.
        * have a low-volume SMTP server which can be easily extended using Python
        
        Changelog
        ******************************
        
        0.3.1 (27.02.2009)
        ==================
        - Fixed bug which caused hang after unexpected connection drop by client
        
        0.3 (15.02.2009)
        ==================
        - Switch to process-based architecture, got rid of asyncore
        - Support for size-limitations of messages, huge messages will not be stored in
        memory if they will be rejected anyway (denial of service prevention)
        - API documentation is now auto-generated
        - Renamed DefaultMTAPolicy to IMTAPolicy and moved all interfaces to pymta.api
        - Added the debugging_server as an extremely simple example of a pymta-based
        server
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Software Development :: Libraries :: Python Modules
