Skip to content

Instantly share code, notes, and snippets.

@mredar
Created May 1, 2014 00:22
Show Gist options
  • Save mredar/d53fbe8c924fc19bd23b to your computer and use it in GitHub Desktop.
Save mredar/d53fbe8c924fc19bd23b to your computer and use it in GitHub Desktop.
Python stdlib smtpd server, for dev envs
import smtpd
import asyncore
d=smtpd.DebuggingServer(('127.0.0.1', 25), None)
try:
asyncore.loop()
except KeyboardInterrupt:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment