On 10 June 2017 at 02:17, John D. Ament <johndam...@apache.org> wrote: > Otherwise we > have to figure out how to get ponymail to setup an SMTP listener.
If you just want to test that emails are sent correctly, Python has a simple SMTP server: python -m smtpd -n -c DebuggingServer localhost:1025 This will print out the content of any mails sent to it. Maybe Ruby has something similar.