benadida / beamauth

Using a Bookmark as a Second Authentication Factor

This URL has Read+Write access

benadida (author)
Fri Apr 03 20:52:03 -0700 2009
commit  175807293683a5ed3d39574374ab2439be22a40d
tree    45adc9ee67f17ca57dbe18cd78a3706f6429822d
parent  61d6ca7609d2bdae7ebaea4dd97f86fe27dd2e8f
beamauth / email_debugger.py
100644 9 lines (7 sloc) 0.179 kb
1
2
3
4
5
6
7
8
9
"""
Run this at the prompt as an email debugger to see all sent emails
"""
 
import smtpd
import asyncore
server = smtpd.DebuggingServer(('127.0.0.1', 1025), None)
asyncore.loop()