Free light OUTBOUND SMTP program for Windows servers

smtpwindows-server-2008

anyone know of any free SMTP outbound only servers / service for a windows server 2008 machine? I've got some web pages that send out emails (around 300 a day).

I don't want any inbound stuff / mail boxes, bad mail, etc.

just outbound and any failed messages can go into a log file or something.

anyone have any suggestions?

I'm not sure if the iis smtp service is sufficient.

Best Answer

Use the built-in SMTP server, you can't get lighter than that, especially if IIS is already running. I'm not sure what you mean by sufficient - as you say, your requirements are minimal.

You don't need to accept mail from anything other than the local machine. Be careful that your web pages can't be used to relay mail, but that issue is independent of your choice of SMTP server.

As for badmail, retries etc, anyone else got some configuration ideas? I would try to minimize the number of retries, and either send badmail to NULL somehow, or schedule a script to clean out the directory periodically.

Related Topic