Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Presently, I am working on a project using classic ASP. My development machine is Vista Enterprise. Although Vista does allow you to have multiple Web Sites (not without a workaround in XP), it has removed the SMTP service from IIS.

Is there a standard workaround for this issue?

As more web developers at my company receive new machines I am concerned that this issue will become a greater irritant. (Currently I am the only Web Dev using Vista)

share|improve this question

4 Answers

up vote 8 down vote accepted

I found a better suggestion over on serverfault. This thread details it

http://smtp4dev.codeplex.com/ Nice tool.

share|improve this answer
I have used smtp4dev since this answer was posted as my go to dev solution. That being said I recently came across another possibility. A program called papercut. Here is a comparison of the two apps. improve.dk/papercut-vs-smtp4dev-testing-mail-sending-locally – Scott Gowell Feb 28 at 17:01

You have two workarounds. You can direct all mail to your company's SMTP server. This often means that your development machines use a different config (remote SMTP vs local), so I find this less desirable.

You could also install another SMTP server on your dev machine. One option is the free Mercury Mail Transport System by the maker's of the venerable Pegasus Mail.

share|improve this answer
Looks like I really need to use CDO sys vs. CDONTS. – Scott Gowell Dec 11 '08 at 13:44

This is very similar to "What’s a good mail server for development use?"

I have tried 3 things:

  • sendmail from SUA community warehouse built with SASL (AUTH) and OpenSSL (SSL/TLS) for Interx/SFU/SUA. This works well but is quite slow to start a session for some reason. And of course it is sendmail so about as opaque to configure as humanly possible. (Services for UNIX 3.5 and the Subsystem for Unix Applications also come with an old-ish build of sendmail that does not have AUTH and ssl.)
  • Mercury Mail Server. The setup and managment feels obtuse and dated to me.
  • hMailServer. Very slick. Quick setup and intuitive to configure. I like it.
share|improve this answer
hMailServer also supports DKIM signatures: hmailserver.com/documentation/latest/?page=reference_domain. Very nice if you don't want to get flagged as spam: stackoverflow.com/questions/371/… – russau Oct 7 '09 at 0:38

Take a look at Papercut. It works well for my development environment on Windows 7.

Description of Papercut from the CodePlex site:

Papercut is a simplified SMTP server designed to only receive messages (not to send them on) with a GUI on top of it allowing you to see the messages it receives. It doesn't enforce any restrictions on addresses, it just takes the message and allows you see it. It is only active while it is running, and if you want it in the background, just minimize it to the system tray. When it receives a new message, a balloon message will show up to let you know.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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