1

I have a network device that supports sending email notifications, but doesn't provide for the username and password. I would like to point this device to an internal system which would then take care of sending the email using our actual email server. (Which requires a username and password.) Do you know of any service program that I could run on Windows which would take care of this for me?

Thanks!

AJ.
  • 168
  • 5

3 Answers3

2

Point it at one of your MX servers. If those don't accept unauthenticated mail something is very wrong (or you intentionally don't receive mail from the internet). Then you just have to worry about getting the message past your spam filters.

You could also alter your MTA to accept without auth from that devices IP address.

84104
  • 12,698
  • 6
  • 43
  • 75
1

You could use hMailServer to only accept mails from that device and then relay it to a "real" mail server with SMTP-AUTH.

mailq
  • 16,882
  • 2
  • 36
  • 66
0

IIS will do this for you,

this is an example how to do it with for Google Mail.

http://routerjanitor.blogspot.com/2011/08/google-apps-iis-smtp-relay.html

Of course the TCP port and the smart host will need to be altered for your solution.

Joris
  • 11
  • 1