Anyway to create SMTP Server on Windows 7?

4

Possible Duplicate:
Implementing a SMTP server on a personal computer (windows)

I'm thinking of a case where I can use a SMTP Server on my own system to actually send email from thunderbird to whoever it's being sent to, this could be a way just to I can manage how I want my mails sent and also if I want to scan them with an antivirus etc.

Is there any way that emails can be routed through by just installing an SMTP Server and changing my settings to reflect them. (e.g. server 127.0.0.1 port 25)

I have installed hMailServer, and looked at the configuration but I feel that I am missing something.

Thanks

Sandeep Bansal

Posted 2011-11-06T02:01:15.087

Reputation: 6 168

Question was closed 2011-11-09T01:26:40.227

Answers

6

Yes, you can just install hMailServer or Mercury Mail to have a SMTP server.

The big problem, however, is spam.

  1. Many (almost all) mail servers will block messages coming from residential connections, due to massive spam problems.

    Your ISP may be blocking all SMTP connections on port 25 as well, for the same reason.

  2. Most mail providers these days use SPF, which restricts the servers allowed to send messages from their domain.

    In other words, messages with From: ...@gmail.com can only be sent from Google's own servers. If you use your own server, the messages are much more likely to be marked as spam or rejected entirely, due to the failing SPF check.

In other words, you will not be able to just send mail directly. You will still have to configure your SMTP server to relay everything through your mail provider's servers.

Aside from that, computers only work when they are on. If you send a message and the recipient's server has problems, your server will retry the delivery – but it can't do so if you turn it off for the night. On the other hand, your mail provider's servers are always on.

user1686

Posted 2011-11-06T02:01:15.087

Reputation: 283 655

I get what you mean, in the long run it's easier just using the ESP's server. Thanks anyway! – Sandeep Bansal – 2011-11-06T13:50:42.263