Created
December 21, 2012 14:06
-
-
Save dstarh/4353040 to your computer and use it in GitHub Desktop.
python simple debugging smtp server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import smtpd | |
import asyncore | |
server = smtpd.DebuggingServer(('127.0.0.1', 1025), None) | |
asyncore.loop() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment