tags:

views:

429

answers:

5

I'm running Windows Vista on my development machine... tried four SMTP servers so far (2 crashed, 2 turned out to be trial ware after being promoted as "free"). So I don't have IIS6 SMTP available.

Do you know any simple, hassle-free SMTP server that I can use? I need absolutely no bells and whistles. All it needs to do is listen on port 25 and send off emails.

Help?

A: 

Install sendmail in a virtual ubuntu machine and send email through that.

workmad3
Seems a tad overkill...
Michael Petrotta
A: 

Check out Lamson, an SMTP server in Python.

Dave W. Smith
definitely more production-ready than the good old pysmtp I suggested - thanks for the useful pointer!
Alex Martelli
+1  A: 

You can hardly get freer or simpler than pysmtp

Alex Martelli
+1 but pysmtp has been has been superseded by the smtpd module in the standard library. See http://docs.python.org/library/smtpd.html
hwiechers
A: 

In Windows XP, there's a "SMTP service" in the IIS category under 'Add/Remove Windows Components' - not sure if Vista has that too.

grawity
Poster mentions that this isn't available.
Michael Haren
This feature was removed from Vista. It's still available in Server 2008.
Michael Petrotta
+1  A: 

Try Mercury Mail

Darrel Miller
This is also part of XAMPP as well.
Lucas Jones