vote up 2 vote down star

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?

flag
Thanks for those things so far. I must add this would be my first step into the world of sockets and services. One of the problems I am having is not knowing how the sockets remain open, listening, multiple users at the same time? – MyNameIsLoki Jun 17 at 18:51
Researching a bit more, should I be using a socket service or a remoting? I have done neither before. – MyNameIsLoki Jun 17 at 21:25

3 Answers

vote up 0 vote down

I created this mock smtp server a long time ago. You can use that code to start with and some "real logic" to it.

link|flag
1  
Additionally, this RFC should be good for reference: ietf.org/rfc/rfc821.txt – schnaader Jun 17 at 18:46
That looks excellent, thank you. – MyNameIsLoki Jun 17 at 18:52
vote up 0 vote down

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.

link|flag
vote up 4 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.