I need to configure a SMTP server for testing my website which sends emails (for registration confirmation etc).
I dont actually want the email to be sent, I just w
If you've got Python installed, you can run the following one liner to run a debug smtp server in the console that'll dump messages to stdout:
sudo python -m smtpd -n -c DebuggingServer localhost:25
snagged from here: http://muffinresearch.co.uk/archives/2010/10/15/fake-smtp-server-with-python/