2

I would like to install a Test/Dummy SMTP server on a Windows 2008 server (virtual box). I just want to test my web application on the machine it self so I don't need the mails to go out on the internet, but just to be written to disk (so that I can verify that the mail function was indeed called and the correct data was handed over to SMTP)

Can you recommend some tool. I guess starting your own SMTP server in python is an option. I am looking for a simple (ready to use) solution, targeted for tests systems. I will need to integrate it to automated tests (Selenium) at a later stage.

John Gardeniers
  • 27,262
  • 12
  • 53
  • 108
geoaxis
  • 451
  • 1
  • 6
  • 17

1 Answers1

1

Use the built-in SMTP service (Server Manager → Features → Add Features → SMTP Server). The mail will go to the drop directory (C:\inetpub\mailroot\Drop).

Ansgar Wiechers
  • 4,197
  • 2
  • 17
  • 26