Is there a Python MTA (Mail transfer agent)

2020-02-25 23:58发布

问题:

Just wondering if there is a Python MTA. I took a look at smtpd but they all look like forwarders without any functionality.

回答1:

Yes, Twisted includes a framework for building SMTP servers. There's a simple Twisted-based email server available here (also see here for some information about its development).

If you want something closer to a mail application server, there's Lamson.



回答2:

If you're looking for a full MTA solution you should check out http://slimta.org/ or as previously mentioned here http://lamsonproject.org I myself has experimented a bit with slimta and it seems to work well.



回答3:

It's pretty new, so nothing like the maturity of Twisted's SMTP, but there's also Lamson.