I need to create a Windows service that can listen for SMTP.
When it receives an email I need to process it, and then forward it to my real SMTP server for sending proper.
Can anyone point me at any useful source code, libraries or tutorials on how I can get started doing this?
Seems like all I need is a simple TCP listener and message parser, then I can simply resend the message with the .NET SmtpClient API?