Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/20tab/20tab-nullmailer

An smtpd python class to inject mails in the nullmailer spool system
https://github.com/20tab/20tab-nullmailer

Last synced: 21 days ago
JSON representation

An smtpd python class to inject mails in the nullmailer spool system

Awesome Lists containing this project

README

        

20tab-nullmailer
================

An smtpd python class to inject mails in the nullmailer spool system

To bind it on address 127.0.0.1:1025 just run it:

```sh
python twentytab_nullmailer.py
```

otherwise just use its class

```py
import asyncore
from twentytab_nullmailer import Nullmailer

# bind it on port 8025
server = Nullmailer(('127.0.0.1', 8025), False)
asyncore.loop()
```