There are tons of Google examples on making a POP3 client in .net but I want to make a simple custom POP3 service/server to retrieve email for the user from a custom database. Are there any components or examples of that?
A:
I created this mock smtp server a long time ago. You can use that code to start with and some "real logic" to it.
slf
2009-06-17 18:44:20
Additionally, this RFC should be good for reference: http://www.ietf.org/rfc/rfc821.txt
schnaader
2009-06-17 18:46:27
That looks excellent, thank you.
MyNameIsLoki
2009-06-17 18:52:41
A:
There's a Delphi example here which might get you started. It shouldn't be too hard to pull out the basic parts of the POP3 spec and write to those, either - relevant information here for Telnet commands.
As well, an RFC here describing the protocol in more detail.
Andy Mikula
2009-06-17 18:45:35
+4
A:
Here's an open source .NET POP3 server. And since you mentioned you're new to sockets programming, here's a tutorial for that, too.
Jon B
2009-06-17 18:51:58