Reputation: 25132
I'm doing PHP development on my MacBook and have reached the email functionality of the book I'm using.
Are there any good SMTP servers for Mac?
Cheers,
Billy
Upvotes: 5
Views: 7764
Reputation: 72201
CommandLineFu had this one liner to run an SMTP server on port 25:
sudo python -m smtpd -n -c DebuggingServer localhost:25
This will run a fake smtp server on your local machine. It won't send anything, but will dump it to the console.
Upvotes: 4
Reputation: 5800
Old thread, but for anyone else landing here. I just found this app:
It's a super simple SMTP test server for mac osx. It comes with a very simply gui that allows you to see the messages you have sent. Obviously it's not a "real" server (i.e. it doesn't relay) but for simply testing sending emails it works perfectly.
Upvotes: 1
Reputation: 70540
Postfix is usually built in: http://www.david-reitter.com/software/osxpostfix.html
Upvotes: 4
Reputation: 3773
http://www.phase2technology.com/node/667/
But do you really need a SMTP-Server of your own?
Upvotes: 2