Anyone have any experience with 3rd party SMTP server for windows (server 2003)? I would like to set one up so that the cruise control can send reports of nightly builds and svn check-ins.

I would like the server to be lightweight and free (this will only be used for sending email)

I know windows server 2003 has a SMTP server built in, but this machine is a virtual machine and I can't give it access to an install CD.

Thanks!

link|improve this question

46% accept rate
For Linux you can see askubuntu.com/questions/4118/setup-a-local-testing-smtp-server – claws Nov 8 '10 at 14:07
feedback

8 Answers

up vote 17 down vote accepted

xmailserver

Just to help a tiny bit with setup, here's a sample setup.reg:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\GNU]

[HKEY_LOCAL_MACHINE\SOFTWARE\GNU\XMail]
"MAIL_ROOT"="C:\\MailRoot"
"MAIL_CMD_LINE"=""
link|improve this answer
thanks, this is working for me. but it really needs an installer--manually copying files and creating registry keys isn't necessary these days! – Kip Aug 28 '09 at 13:34
It's true, but I just tried it and it's not as much trouble as it looked. – Kev Feb 25 '10 at 16:34
FYI - It fails to launch on clean install of Windows 7 Ultimate x64 – ruslan Jan 24 at 17:19
feedback

hMailServer http://www.hmailserver.com/ is a pretty solid (and FREE) SMTP server. It compares very well against non-free software.

link|improve this answer
1  
this has mysql embeded :( If it has to store mail then sure, but if it's just an outbound stmp server .. then this is an overkill IMO. – Pure.Krome Sep 11 '09 at 6:11
i must say that it's really stable and works great, "mailRelay" by NetVicious on the other hand, does not. :/ and is not something i'd recommend anyone. – possan Sep 22 '09 at 14:21
+1 Tried hMailServer. Its really easy to use and works amazingly. :) – claws Nov 8 '10 at 14:07
1  
Note that an outbound SMTP server may need to store e-mails as well. It is not just a proxy for a connection to the actual target mail server, it may store your message and re-send it if that is needed (for example when target server uses graylisting or is simply offline). So I guess that is what mysql is for. – Cray Feb 15 at 2:09
hMailServer now has an option to use SQL Server Compact as database. – Pavel Chuchuva Apr 27 at 4:14
feedback

I used GMail SMTP service for similar things. It's really good when one have to demo a mail sending application to potential customer and have to use their network (and can access the SMTP server "back home").

Here's how to call it from .NET.

link|improve this answer
1  
just remember that gmail and google apps have a limit of 100 emails per 24 hours via SMTP - go over this and your account will be suspended for 24 hours. blogoscoped.com/forum/112956.html – Damien McGivern May 16 '10 at 13:19
+1 This method can sometimes save you from big problems, especially then you need to do some tests in remote environment. Greatest advantage is that this method doesn't need any smtp server installation or configuring, and doesn't depends on specific client environment (except firewall). – Andrey Markeev Sep 21 '10 at 16:35
I bet they scan your emails, though. – Blank Xavier Oct 16 '11 at 15:47
feedback

We use MailEnable to do this.

link|improve this answer
1  
Here is the web site for MailEnable: mailenable.com – Gabe Jul 5 '09 at 22:32
need enterprise version for TLS outgoing support (I believe this is required if you need to send through gmail) – Simon_Weaver Jan 3 '10 at 9:41
I tried MailEnable. I'mm not happy - it was accepting emails and silently not relaying them. That to me is the cardinal sin of an SMTP server, the one thing you must never do. If you're not going to relay, you MUST tell the sender. – Blank Xavier Oct 16 '11 at 15:46
feedback

Can you copy an i386 folder from another (perhaps physical) install of of Server 2003?

link|improve this answer
what has this to do with a simple smtp server? – Carl Hörberg Sep 23 '09 at 15:37
2  
@Carl: His problem is that he doesn't have access to the install CD to install the smtp server included with windows server. But he doesn't need that cd. All he needs is access to the i386 folder, which is sometimes installed already. – Joel Coehoorn Sep 23 '09 at 15:44
feedback

mailenable has a free windows based server that works very well for this kind of stuff.

http://www.mailenable.com/

i have heard of the hmailserver as well, that might be worth it too.

link|improve this answer
feedback

For strictly SMTP server, you can try to use PostCast Server. There is a free version at postcastserver.com.

link|improve this answer
The free version only allows 10 messages a day - I just busted that in testing. – Rob Hunter Oct 22 '09 at 15:54
It's also a huge memory hog. Which is the reason I'm here looking for a simpler smtp server. XMail is definitely the way to go. – Craig Oct 20 '10 at 14:53
feedback

Check out this blog post for a guide to setting up the SMTP server that comes with Windows Server and using it from .NET

http://www.lukepuplett.com/2010/06/how-to-send-email-from-microsoft-server.html

link|improve this answer
feedback

protected by Kip Apr 7 at 14:38

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.