MyNameIsLoki
MyNameIsLoki

Reputation:

Create a simple POP3 *SERVER*

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?

Upvotes: 3

Views: 3965

Answers (3)

user27414
user27414

Reputation:

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.

Upvotes: 5

Andy Mikula
Andy Mikula

Reputation: 16780

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.

Upvotes: 0

slf
slf

Reputation: 22767

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

Upvotes: 0

Related Questions