I want to use Python to create an SMTP server that will use TLS via STARTTLS. The Python Lib/smtpd.py library doesn't seem to support this natively. Is there a way to make it work?
Asked
Active
Viewed 624 times
2
-
https://docs.python.org/2.7/library/smtplib.html#smtplib.SMTP.starttls – larsks Jun 02 '15 at 15:52
-
That's a client; I want to do an SMTP server. – vy32 Jun 02 '15 at 15:57
-
Ah, sorry. Reading comprehension failure. – larsks Jun 02 '15 at 15:57
-
@vy32 I also want to implement a very simple smtp server, preferable with python. Did you ever succeed and may want to share your knowledge? – soey Sep 18 '17 at 15:07
-
@soey I did not, but it seems that tintin below has done so. – vy32 Sep 19 '17 at 03:10
-
1@soey you know about [twisted](https://twistedmatrix.com/trac/) ? – akoeltringer Oct 02 '17 at 13:13