there is a nice trick with python: http://muffinresearch.co.uk/archives/2010/10/15/fake-smtp-server-with-python/
Just one liner can do the job (listens on port 2500
):
python -m smtpd -n -c DebuggingServer localhost:2500
there is a nice trick with python: http://muffinresearch.co.uk/archives/2010/10/15/fake-smtp-server-with-python/
Just one liner can do the job (listens on port 2500
):
python -m smtpd -n -c DebuggingServer localhost:2500