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

link|improve this question

Why are you looking for one? – David Zaslavsky Apr 24 '09 at 3:00
Maybe because I am annoyed that whenever I try one of the smtplib examples, it always tries to connect to localhost and fails? – Unknown Apr 24 '09 at 3:21
feedback

2 Answers

up vote 1 down vote accepted

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). At the other end of the complexity spectrum is Quotient, which is much more than a MTA.

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.