Skip to content
Snippets Groups Projects
Select Git revision
  • 7813a553c5855f83c47b7e76302d3ab927bb12d6
  • test default
  • master protected
3 results

manage.py

Blame
  • email_debug.py 103 B
    import smtpd
    import asyncore
    server = smtpd.DebuggingServer(('127.0.0.1', 1025), None)
    asyncore.loop()