Skip to content

Instantly share code, notes, and snippets.

View baroobob's full-sized avatar

baroobob

  • Illinois
View GitHub Profile
#!/usr/bin/env python
"""A noddy fake smtp server."""
import smtpd
import asyncore
class FakeSMTPServer(smtpd.SMTPServer):
"""A Fake smtp server"""
def __init__(*args, **kwargs):