summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..921a7b3
--- /dev/null
+++ b/README.md
@@ -0,0 +1,15 @@
+Mock SMTP Server which displays the received messages on stdout.
+
+The server is the python smtpd module in debug mode. The default command is:
+
+ python -m smtpd -n -c DebuggingServer localhost:25
+
+The received message looks something like:
+
+ ---------- MESSAGE FOLLOWS ----------
+ from: test@example.com
+ to: test2@example.com
+ subject: Hello
+
+ Hello World
+ ------------ END MESSAGE ------------