[Python] Add basic SMTP server

This commit is contained in:
ImmortalPC 2013-11-25 00:52:17 +01:00
parent 663d72012d
commit ad744eea9f
1 changed files with 3 additions and 0 deletions

View File

@ -8,3 +8,6 @@
python -m SimpleHTTPServer
# Python 3
python -m http.server 8000
# SMTP-Server for debugging, messages will be discarded, and printed on stdout.
python -m smtpd -n -c DebuggingServer localhost:1025