kgaughan (owner)

Revisions

gist: 78035 Download_button fork
public
Public Clone URL: git://gist.github.com/78035.git
Embed All Files: show embed
Python #
1
2
3
4
5
import smtpd
import asyncore
 
smtpd.DebuggingServer(('127.0.0.1', 1025), None)
asyncore.loop()