Developing a C# POP3 client: Part 02 - The SimplePop3Client

In my last post I talked about the standard POP3 commands, today we'll write a simple C# POP3 client.

The class diagram

The SimplePop3Client consist of only one class:

SimplePop3Client class diagram

Properties

We have only three Properties: Host, Port and ApopTimestamp. ApopTimestamp cannot be set and will only be available after connecting.

Methods

We'll implement all standard POP3 commands (including the optional ones) as public methods. We need two extra methods for connecting and disconnecting to the mail server. We could also establish the connection in the constructor, but I think it's better to have the control over the moment when we connect to the server.

There are three helper methods:

  • SendCommand(string command)
    Sends the command string to the server
  • GetSingleLineResult()
    Returns the response of the server. We'll use that for commands which return only one line (USER, PASS, APOP, STAT, LIST n, UIDL n, NOOP, DELE n,RSET, QUIT)
  • GetMultiLineResult()
    Returns the response of the server. We'll need this method for commands which return more than one line (LIST, UIDL, RETR, TOP n, TOP n m)

Fields

For the connection and the handling of the responses we need a TcpClient, a NetworkStream and a StreamReader. The string lastResponse is often used on receiving the response.

Connect and Disconnect

When connecting we try to get the APOP timestamp because we possibly need it later.

using System.Text.RegularExpressions

public string Connect()
{
	string response = "";
	try
	{
		// connect to the server
		client = new TcpClient(this.Host, this.Port);
		stream = client.GetStream();
		reader = new StreamReader(stream);
		lastResponse = streamReader.ReadLine();
		if (lastResponse.StartsWith("+OK"))
		{
			// try to extract apop timestamp
			Regex r = new Regex(@"(?<TimeStamp>\x3C[^\x3C\x3E]+\x3E)");
			Match m = r.Match(lastResponse);
			if (m.Groups["TimeStamp"].Value != "")
			{
				this._ApopTimeStamp = m.Groups["TimeStamp"].Value;
			}
		}
		response = lastResponse;
	}
	catch (Exception e)
	{
		response = "An error occured: " + e.ToString()
	}
	return response;
} 
  

public bool Disconnect()
{
	return QUIT().StartsWith("+OK");
} 

The helper methods

SendCommand

private bool SendCommand(string command)
{
	bool success = true;
	try
	{
		byte[] buffer = Encoding.ASCII.GetBytes(command + Environment.NewLine);
		networkStream.Write(buffer, 0, buffer.Length);
	}
	catch (Exception)
	{
		success = false;
	}
	return success;
}

GetSingleLineResponse

private string GetSingleLineResponse()
{
	string response = ""
	try
	{
		response = reader.ReadLine() ?? ""
	}
	catch (Exception e)
	{
		response = "An error occured: " + e.ToString();
	}
	return response;
}

GetMultiLineResponse

private string GetMultiLineResponse()
{
	StringBuilder response = new StringBuilder();
	try
	{
		lastResponse = reader.ReadLine() ?? "";
		response.AppendLine(lastResponse);
		if(lastResponse.StartsWith("+OK"))
		{
			// multiline responses always end with a single dot in the last line
			while (lastResponse != ".")
			{
				lastResponse = reader.ReadLine();
				response.AppendLine(lastResponse);
			}
		}
	}
	catch (Exception e)
	{
		response = "An error occured: " + e.ToString();
	}
	return response;
}

Implementing the standard POP3 commands

For each POP3 command we have a public method. They all work the same:

  1. Send command and check if it was successful
  2. Get response and return it

So I show you only a few sample commands:

public string STAT()
{
	bool success = SendCommand("LIST");
	return success ? GetSingleLineResponse() : "";
} 
public string RETR(int messageNumber)
{
	bool success = SendCommand(String.Format("RETR {0}", messageNumber));
	return success ? GetMultiLineResponse() : "";
}

APOP authentication

The APOP method is a little because an additional step for the md5 hash is needed:

using System.Security.Cryptography; 

private string APOP(string username, string password)
{
	// calculate md5 has
	MD5 md5Hasher = MD5.Create();
	byte[] data = md5Hasher.ComputeHash(Encoding.Default.GetBytes(this.ApopTimestamp + username));
	StringBuilder digest = new StringBuilder();
	for (int i = 0; i < data.Length; i++)
	{
		digest.Append(data[i].ToString("x2"));
	}
	// send apop command
	bool success = SendCommand(String.Format("APOP {0} {1}", username, digest.ToString()));
	return success ? streamReader.ReadToEnd() : "";
} 

Testing the SimplePop3Client

Yes, I know, I should do real unit tests. At least there's a lot written about it, and I'd really like to do but unfortunatly this is a topic I'm not well versed in. But it's definitely something I'd like to try out developing Opo Perspective. For this simple POP3 client I think a simple console application will be adequate for our needs:

namespace Opo.Net.Mail
{
	class Program
	{
		static void Main(string[] args)
		{
			SimplePop3Client pop3 = new SimplePop3Client("pop.yourmailserver.com", 110, "AccountName@Domain.com", "Password");
			Console.Write(pop3.Connect());
			Console.Write(pop3.USER());
			Console.Write(pop3.PASS());
			Console.Write(pop3.STAT());
			Console.Write(pop3.LIST());
			Console.Write(pop3.RETR(1));
			Console.Write(pop3.DELE(2));
			Console.Write(pop3.LIST());
			Console.Write(pop3.RSET());
			Console.Write(pop3.LIST());
			Console.Write(pop3.QUIT());
			Console.Write(pop3.Disconnect());
			Console.ReadKey();
		}
	}
}

Code download

Download the SimplePop3Client Solution: SimplePop3Client.zip (5.48 kb)

Make sure you set appropriate values for host and port in program.cs before you start debugging.


Posted by: Dave
Posted on: 4/30/2008 at 12:57 AM
Tags: , Categories: Actions: E-mail | Kick it! | DZone it! | del.icio.us
Post Information: Permalink | Comments (12) | Post RSSRSS comment feed
Administration:

Comments (12) -

Rajesh Goel India

Tuesday, March 17, 2009 3:34 AM

Rajesh Goel

Good job Dave, this code is marvelous.

referencement auto France

Friday, May 27, 2011 7:06 PM

referencement auto

Top notch ! Actuallyenormously perfect, glad i found it.

expert referencement France

Wednesday, June 08, 2011 10:53 AM

expert referencement

Amazing ! It is usuallyactually sweet, gratitude.

Pandaranol France

Saturday, June 18, 2011 12:44 AM

Pandaranol

Pandaranol will attain statehood in 2009

resultat bts Martinique France

Saturday, June 18, 2011 12:53 AM

resultat bts Martinique

This panel seems like it would be a lot of fun and would help my research. thankfully! for the post.|I have to agree with the above comments.. This site and its content is completely  ideal. I can see myself spending a lot of time here :-)|I have to agree with the above comments thankfully! for the information. It was well written.|thankfully! for taking the time to discuss this, I feel strongly about it and love learning more on this topic. If possible, as you gain expertise, would you mind updating your blog with extra information? It is extremely helpful for me.|completely pleasurable and helpful information has been given in this article. I like the way you explain the things. Keep posting. thankfully!.|Ideal article and one which should be more widely known about in my view. Your level of detail is pleasurable and the clarity of writing is pleasurable too. I have bookmarked it for you so that others will be able to see what you have to say.|That�s just ideal! there is nothing less difficult and I believe that is the key to its success. I completely appreciate what you had to say. Keep going because you completely bring a new voice to this subject. It has information I have been searching for a long time.|pleasurablearticle! thankfully! so much for sharing this post.Your views completely open my mind.|

bali France

Saturday, June 18, 2011 3:46 PM

bali

Hello! I just would like to give a huge thumbs up for the great info you have here on this post. I will be coming back to your blog for more soon.

a quoi correspond la taille 32 France

Friday, June 24, 2011 3:47 PM

a quoi correspond la taille 32

I will right away clutch your rss as I can not find your email subscription link or newsletter service. Do you have any? Please permit me understand so that I may subscribe. Thanks.

Pandanarol France

Friday, June 24, 2011 7:43 PM

Pandanarol

{

Marvyn FORGET France

Monday, June 27, 2011 1:10 PM

Marvyn FORGET

Just where do these trolling bloggers come up with this stuff? And why do you point out something like this?

Kemyl BARBEREAU France

Wednesday, June 29, 2011 11:20 AM

Kemyl BARBEREAU

That post is unexciting. Daily life proceeds.

r�sultats bac 2011 Corse France

Friday, July 01, 2011 2:00 PM

r�sultats bac 2011 Corse

Fine !{It�s amazingly  a very fancy article,I learn so much thing from it, thankyou.You are amazingly  a fancy  person.|I agree with your point, fancy article, thankyou. I will continue to read your articles.|I am very thank you to share this article, it�s fancy , I hope you can share more, and I will continue to read, thankyou!|thankyou! for sharing this information.|

badge personnalis France

Wednesday, July 13, 2011 6:09 AM

badge personnalis

Thank you for this interesting article. I'll bookmark it.

badge personnalis France

Wednesday, July 13, 2011 8:40 AM

badge personnalis

Thank you for this interesting article. I'll bookmark it.

Pandanarol R. France

Saturday, July 16, 2011 8:13 PM

Pandanarol R.

I wished to drop you a fast note to express my many thanks as I have loved the way you�ve structured your site which can be extremely great one and offers in depth data. I believe it�ll be beneficial for me as well

Panda Narol France

Saturday, July 16, 2011 9:23 PM

Panda Narol

This genuinely is your brain on journey. We showcase the essence of place, what exactly is distinctive and genuine, and what locals cherish most about specifically wherever they reside.

Pandanarol France

Thursday, July 28, 2011 5:22 PM

Pandanarol

Why is it that everyone is so interested in making money online? Whatever the reason, I think I found a great way to get er done. There is a system and software called Auto Wealth Maker and it automatically sends visitors to sites that automatically made for you. How does that sound? There are 12 tutorial modules that come with this software and they each have their very own, easy to understand video tutorials. If you have been looking for a residual passive income that is easy to set up then look no further. Just point and click your way to a residual income. The visitors will come from the traffic generating machine that pulls visitors from forum, blogs and web 2.0 sites. The software is really something special. It can work in any niche market. The system comes complete with real education and software that produces real results. It comes complete with the education, tools, hosting, support, softwares, monetizations and basically any elements that are required in order to set up an income on autopilot. It is easy to see how you could even make as much as $30,000 per month, or as little as $300 per month, with this software. Just set up lots of sites if you want to make lots of money. Just create 10 of these little autopilot websites and now you�ve got a $3,000 per month income.

bali France

Thursday, August 04, 2011 6:00 PM

bali

Thank you for this interesting article. I'll bookmark it.

badges personnalis�s France

Friday, August 05, 2011 11:16 PM

badges personnalis�s

Thank you for this interesting article. I'll bookmark it.

badges personnalise France

Wednesday, August 24, 2011 7:21 PM

badges personnalise

Thank you for this interesting article. I'll bookmark it.

seofever France

Thursday, September 01, 2011 12:22 AM

seofever

Yeah man thx for post. I 'm gonna share it!

location corse du sud France

Thursday, September 01, 2011 10:57 PM

location corse du sud

I do love the manner in which you have presented this specific situation plus it does indeed present us a lot of fodder for consideration. On the other hand, because of everything that I have personally seen, I really trust when other feed-back pack on that people today continue to be on issue and don't get started upon a soap box involving some other news of the day. Anyway, thank you for this fantastic piece and whilst I can not necessarily go along with the idea in totality, I value the standpoint.

annuaire international France

Friday, September 02, 2011 4:48 PM

annuaire international

Good information here. I have read many other posts in your blog and many of them are really great to read! Simply, admirable what you may have accomplished here.

maths-equation France

Thursday, September 08, 2011 11:51 AM

maths-equation

Thanks a lot for taking the time to post this. Your opinion has got me thinking a bit more about my earlier experiance with this. I really also like your blog.. very nice colors & theme. Great blog !

location riad Marrakech France

Thursday, September 15, 2011 1:14 AM

location riad Marrakech

I like what you males are up too. Such nimble process furthermore reporting! Reserve up the peerless processs males I�ve incorporated you males to my blogroll. I repute it desire garnish the significance of my locale Sourire . �A yard is a seat where what was mistaken already suits also unpaid than forever.� by Henry Waldorf Francis.

riads Marrakech France

Thursday, September 15, 2011 1:18 AM

riads Marrakech

Cours particuliers France

Friday, September 16, 2011 11:08 AM

Cours particuliers

Thank you for blogging that. It was unbelieveably informative and showed me a ton. Your post has verified beneficial to me.  It is quite informative and you're clearly extremely knowledgeable in this area.  You've opened my eyes to varying views on this topic with interesting and solid content. Thanks once again !

Be math student France

Sunday, September 18, 2011 10:35 PM

Be math student

An impressive share, I just with all this onto a colleague who was just performing a small analysis on this. And then he the truth is bought me breakfast because I ran across it for him.. smile. So allow me to reword that: Thnx for that treat! But yeah Thnkx for spending a lot of time to discuss this, I believe strongly about it and enjoy reading significantly more about this topic. If possible, as you grow expertise, would you mind updating your website with an increase of details? It is extremely ideal for me. Huge thumb up in this writing!

myth cloth collection review France

Monday, September 19, 2011 5:34 AM

myth cloth collection review

One care for this page. I savor everyone own blog related to St . Seiya.

free scrapbooking tutorials psp France

Tuesday, September 20, 2011 1:16 AM

free scrapbooking tutorials psp

Probably the the majority of satisfying kind of scrapbooking you possibly can make is a which you plan to offer like a gift. Scrapbooks make special gifts for nearly each and every celebration, as there handmade touches display that most people plan about the individual. When somebody gets your scrapbook as a gift, he or she may possibly be inspired to form a scrapbook as well, plus using this method you possibly can distributed the particular scrapbooking design annoy for you to friends.

Jasper Bittel France

Wednesday, September 21, 2011 6:36 PM

Jasper Bittel

Prestige to report maker , several grand eclectic report . �When you pause to aspiration you pause to subsist.� by Malcolm Stevenson Forbes.

regroupement France

Friday, September 23, 2011 10:52 AM

regroupement

I absolutely love your blog and find nearly all of your post's to be just what I am looking for. Does one offer guest writers to write content for you? I wouldn't mind composing a post or elaborating on a lot of the subjects you write in relation to here. Again, amazing web site!

japanese culture video France

Sunday, September 25, 2011 2:28 PM

japanese culture video

Probably the many satisfying kind of japon you can create is a which you want to offer like a reward. japon projects help to make carefully selected presents for nearly each and every celebration, for the reason that right now there hand crafted details display which most people attention with regards to this student. Any time people obtains the japon while any present, this individual or perhaps the girl may well always be driven for you to produce a new japon design also, as well as in in this way it is possible to distribute the japon irritate to be able to family and friends.

Elouise Boruff France

Wednesday, October 05, 2011 11:35 AM

Elouise Boruff

I think that is midst the most critical info for me. Also i’m cheerful reading your thing. But wanna see on part leader beings, The website tone is spectacular, the things is in barb of reality comely Souriant . Righteous prerogative chore, consoles.

aikidofr France

Wednesday, October 05, 2011 12:20 PM

aikidofr

Thanks for the small information that ipicked up!

riads Marrakech France

Wednesday, October 05, 2011 8:24 PM

riads Marrakech

Rattling charming architecture besides propitious field matter , precise diminutive more we lack : D.

riad France

Tuesday, November 01, 2011 6:52 AM

riad

I like this web site very much so much fantastic info . “Fate chooses your relations, you choose your friends.” by Jacques Delille.

Tout Marrakech France

Monday, November 07, 2011 4:42 AM

Tout Marrakech

Hey There. I discovered your weblog using msn. This is a truly well written paper. I devise effect ineluctable to bookmark it moreover occur abet to show special of your valuable news. Acknowledge you for the notify. I devise definitely revival.

louer riad France

Tuesday, November 08, 2011 11:20 PM

louer riad

You receive brought up a quite fantastic sites , thankyou for the notify. “The renowned purpose is, that each male be armed. … Each unique who is talented might acquire a weapon.” by Patrick Henry.

riad France

Wednesday, November 09, 2011 2:39 AM

riad

Only wanna speak that this is very neighborly, Acknowledges for taking your second to scrawl this. “We can’t many be heroes therefore celebrity has to roost on the tame moreover peal as they go by.” by Devise Rogers.

Marrakech France

Sunday, November 13, 2011 3:47 AM

Marrakech

Quality decipher, I ethical passed this onto a ally who was doing quantity inquiry on that. Plus he ethical bought me lunch as I establish it for him grin Thus permit me rephrase that: Thank you for lunch! “They may disregard what you said, still they inclination never disregard how you made them experience.” by Carl W. Buechner.

annonces immobilieres marocaines France

Tuesday, November 15, 2011 6:10 PM

annonces immobilieres marocaines

I possess recently started a blog, the report you endow on this website has helped me greatly. Blesss for total of your epoch & process. “It is no employ motto, ‘We are doing our cream.’ You contain got to arrive in doing what is important.” by Sir Winston Churchill.

Marrakech France

Thursday, November 17, 2011 3:48 PM

Marrakech

Thanks for the auspicious writeup. It really was earlier a delight rate it. Blush elaborate to considerably delivered congenial from you! Still, how can we celebrate up a correspondence?

La cigarette electronique France

Sunday, November 20, 2011 9:03 PM

La cigarette electronique

I like the helpful info you provide in your articles. I�ll bookmark your weblog and check again here regularly. I�m quite sure I will learn a lot of new stuff right here! Best of luck for the next!

Joseph Bohlken France

Friday, November 25, 2011 9:57 PM

Joseph Bohlken

hermes Kelly bags for Sale Www.HermesKingBag.Com hermes Birkin handbags,Most effective price,No cost shipping!|

Laverne Deloge France

Saturday, November 26, 2011 2:28 AM

Laverne Deloge

Your site is very good. I found the information that I need and I will come back.|

Lesley Halsted France

Thursday, December 15, 2011 4:01 AM

Lesley Halsted

La franchise une franchise conseiller pour finaliser votre pas de celui de site de la choralis des deux types d'assurances mutuelles existantes et choisir probl�me de sant�.

Ignacio Zaibel France

Wednesday, December 21, 2011 8:10 PM

Ignacio Zaibel

In for her web of an honored tradition that moves with the nighthaddinner meeting with representatives direct message them on orstore window orproduct on is worth more than way thoughdo havecouple of they�re offering opinions based given the ignominy of come to your opening of powers decisions of time to update but and no context.

Derick Fallen France

Thursday, December 22, 2011 6:46 PM

Derick Fallen

This article is written in, I was looking for the information. Thank you and your share the following articl at here.

Acheter de l'or France

Friday, January 27, 2012 11:13 AM

Acheter de l&#39;or

Thanks for the nice blog. It was very useful for me. Keep sharing such ideas in the future as well. This was actually what I was looking for, and I am glad to came here! Thanks for sharing the such information with us

URL United States

Tuesday, January 31, 2012 7:14 PM

URL

An extremely intriguing examine, I could possibly not concur entirely, but you do make some quite valid points. 383654

drum and bass france France

Sunday, February 05, 2012 7:59 PM

drum and bass france

I got what you purpose, increase it for putting up.Woh I am grateful to treasure this website ended google. �The ogle of a mortal organism is a microscope, which composes the planet appear bigger than it truly is.� by Kahlil Gibran.

3ds France

Sunday, March 11, 2012 4:46 AM

3ds

If you could e mail me with a few ideas on just how you made your website look this great, I would be grateful.

R�g�n�ration de filtre France

Thursday, March 22, 2012 1:00 PM

R�g�n�ration de filtre

Besides a smiling visitant here to deal the romance (:, btw famous pattern . “Forget regret, or life is yours to miss.” by Jonathan Larson.

code de reduction 01net telecharger com France

Friday, April 20, 2012 11:46 AM

code de reduction 01net telecharger com

Sp�cialiste reconnu de la faire le point sur th�me code de reduction de themes flux texte du communiqu� issu des de leur montant.

poker � besan�on France

Sunday, April 22, 2012 3:44 PM

poker � besan�on

I discovered your paper, and I learned something thanks to you! Everybody loves consume a paper like yours because everyone deepening of the elements exciting.

winamax poker France

Monday, April 23, 2012 8:25 AM

winamax poker

beaucoup parmis les chercheurs de liste site de poker agreer arjel estiment cette salle de poker en ligne. La salle de poker en ligne Winamax est comme un site de poker en Francais. Wina max a commercialise son chouette logiciel de pocker en ligne a peu pres en mars 2007.  

poker France

Monday, April 23, 2012 7:07 PM

poker

Dans les moyens �-c�t�s du tennis c'est que quand vous mod�rez un identifiant sur une salle de poker sur internet vous capter fr�quemment un superbe  bonus de bienvenue avec notre site.

Abbott United States

Thursday, April 26, 2012 11:43 PM

Abbott

Have you considered about putting some social bookmarking buttons to these blog posts. At least  for twitter.

site France

Tuesday, May 08, 2012 11:08 PM

site

Recevez-mes f�licitations sur cette histoire.

Add comment




  Country flag
biuquote
  • Comment
  • Preview
Loading