4

I need to forward emails for a several domains to other email addresses. Previously I have used hMailServer on my Windows server to perform this forwarding function, but I am looking for something simpler that I can interface with from a .NET application.

Is there a simple email forwarding server I can easily manage from .NET? Spam filtering or email storage is not required.

Petrus Theron
  • 27,855
  • 36
  • 153
  • 287

1 Answers1

2

I've never used hMailServer but according to the documentation there's a COM API that looks like it would be automation compatible (since they've got VBScript samples) so you should be able to access this from .Net.

I'd suggest looking at the Rule object or the forum

Hans Olsson
  • 54,199
  • 15
  • 94
  • 116
  • I knew about the COM API, but it feels...COMmy. Isn't there a simple forwarding server for .NET somewhere? – Petrus Theron Dec 15 '10 at 16:01
  • @FreshCode: Don't know I'm afraid. I'd suggest looking at codeproject.com to check if you can find an article about writing your own in some .Net language. – Hans Olsson Dec 15 '10 at 16:50