summaryrefslogtreecommitdiff
path: root/README.md
blob: 921a7b35e13e0e59422a87c53e978135ce30c83b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 ------------