Developing a C# POP3 client: Part 03 - Session States, Exception Handling, SSL

In my last post I described how to build a simple POP3 client in C#. We implemented the standard POP3 commands like authenticating, receiving stats, retrieving and deleting messages. In this post I'll update the SimplePop3Client and implement some exception handling and pop3 session states.

POP3 session states

During a POP3 session there are the following different states:

  • Authorization
  • Transaction
  • Update

Authorization state

As soon as the connection to the mail server has been established, the session is in Authorization state. This is the state where the client is authenticating with the commands USER and PASS or APOP.

Transaction state

For all manipulations like retrieving stats, listing and retrieving emails and marking messages for deletion. If you try to use these commands when the session is not in transaction state, the server response will be "-ERR Invalid state".

Update state

As soon as the QUIT command is sent the session state is set to Update. That means that now the messages marked for deletion are really deleted. Afterwards the client is being disconnected from the mail server.

Implementing session states support

First we need a Pop3SessionState enumeration:

public enum Pop3SessionState
{
	undefined = 0
	Disconnected = 1
	Authorization = 2
	Update = 3
} 

There are actually four places where the session state must be updated.

public string Connect()
{
	// connect to the server
	SetSessionState(Pop3SessionState.Authorization);
} 

public string PASS()
{
	//...
	// if PASS was successful update session state
	SetSessionState(Pop3SessionState.Transaction);
} 

public string APOP()
{
	//...
	// if APOP was successful update session state
	SetSessionState(Pop3SessionState.Transaction);
} 

public string QUIT()
{
	SetSessionState(Pop3SessionState.Update);
	// send QUIT command here
	SetSessionState(Pop3SessionState.Disconnected);
} 

For updating the session state I use a function (SetSessionState) thus it's easier to implement session state update events if needed.

As we know each command needs a specific state. So before sending a command we can now test if the current state is adequate. For this purpose we use the function EnsureStateSession:

private bool EnsureSessionState(string command)
{
	switch (command.Substring(0, 4).ToLower())
	{
		case "user":
		case "pass":
		case "apop":
			return (this.State == Pop3SessionState.Authorization);
		default:
			return (this.State == Pop3SessionState.Transaction);
	}
} 

Some other improvements

Exception handling

Dealing with network connection there are pretty much potential for errors. Thus I updated the Pop3Client with some exception handling and the custom exception Pop3Exception.

public class Pop3Exception : Exception
{
	public Pop3Exception() { }
	public Pop3Exception(string message) : base(message) { }
	public Pop3Exception(string message, Exception innerException) : base(message, innerException) { }
} 

SSL connection

Implementing the possibility to use a SSL connection is really easy:

public string Connect()
{
	//...

	client = new TcpClient(this.Host, this.Port);

	// connect to the client
	client = new TcpClient(this.Host, this.Port)
	if (this.UseSSL)
	{
		try
		{
			// get ssl stream
			stream = new SslStream(client.GetStream(), false);

			// authenticate
			((SslStream)stream).AuthenticateAsClient(this.Host);
		}
		catch (Exception e)
		{
			throw new Pop3Exception(String.Concat("Host found but SSL authentication failed. May your mail server does not support SSL.", Environment.NewLine, "Error: ", e.Message), e.InnerException);
		}
	}
	else
	{
		stream = client.GetStream();
	}

	//...
} 

Updated code

Download the Pop3Client Solution: Pop3Client.zip (7.20 kb) (Yes, I renamed it from SimplePop3Client since it's that simple any more ;-)


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

Comments (8) -

forex France

Friday, May 20, 2011 3:09 PM

forex

Forex au forex trading system le forex pour les nuls online trading forex spéculer avec succès sur le forex

nintendo 3ds France

Tuesday, May 24, 2011 1:28 AM

nintendo 3ds

<a href="www.worldofnintendo3ds.com">3ds</a>;

3ds France

Wednesday, May 25, 2011 3:27 AM

3ds

thanks for sharing. you own a great website. what cms you use? wordpress?

am�liorer son r�f�rencement France

Thursday, May 26, 2011 10:52 AM

am�liorer son r�f�rencement

Useful ! Reallytoo hot, best wishes.

resultats BTS France

Saturday, June 18, 2011 5:17 AM

resultats BTS

I am completely pleased sure this post has helped me save many hours of browsing other similar posts just to find what I was looking for. Just I want to say: thankfully!.|Appreciate reading post secrets and i think that your analysis was a pleasurable one.I feel that it

panda France

Saturday, June 18, 2011 11:02 AM

panda

Just a list of creatures Pandaranol has allowed to live

Pandanarol R. France

Friday, June 24, 2011 6:24 PM

Pandanarol R.

Hello, I first would like to congratulate you on making such a great site, I definitely found your information very interesting and useful. I myself have a site that is based on sports World Cup Sports Travel Shop News Videos Soccer Football Rugby Cricket .Please keep up the good work. I will be revisiting your site thanks.

a quoi correspond la taille 116 France

Saturday, June 25, 2011 12:50 AM

a quoi correspond la taille 116

I just couldn't go away your website before suggesting that I actually loved the usual info an individual provide to your guests? Is gonna be again continuously to investigate cross-check new posts

http://academie-caen-bac.blog.mongenie.com France

Friday, July 01, 2011 1:04 PM

http://academie-caen-bac.blog.mongenie.com

is very good for people to be reading some of the informative and new things that can be

Lenie TERNISIEN France

Friday, July 01, 2011 2:15 PM

Lenie TERNISIEN

It is actually taken me a little time to read all the comments, but I truly liked the article. I know it will likely be very beneficial to me. It�s always a good surprise whenever a post is both informative and enjoyable! Thanks

arthur France

Monday, July 04, 2011 6:34 PM

arthur

thanks for this great post

arthur France

Friday, July 08, 2011 10:40 AM

arthur

thanks for this great post

objets anniversaire France

Wednesday, August 24, 2011 7:20 PM

objets anniversaire

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

locatiion appartement corse France

Thursday, September 01, 2011 10:27 PM

locatiion appartement corse

Together with the whole thing which appears to be building throughout this specific area, a significant percentage of opinions are actually very radical. Having said that, I am sorry, because I can not give credence to your whole theory, all be it radical none the less. It would seem to everybody that your opinions are actually not entirely rationalized and in actuality you are generally your self not even wholly certain of your assertion. In any event I did take pleasure in examining it.

maths-equation France

Thursday, September 08, 2011 11:24 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 !

blog start-up France

Tuesday, September 13, 2011 7:22 PM

blog  start-up

Thanks for this report! I wanted to check up and let you know how considerably I cherished discovering your website. Keep up the good work !

riad Marrakech France

Thursday, September 15, 2011 1:30 AM

riad Marrakech

Cours particuliers France

Friday, September 16, 2011 10:42 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 !

Cours particuliers France

Sunday, September 18, 2011 10:22 PM

Cours particuliers

Should tow line this caravan together with van trailer home your entire family quick get exposed to the issues along with reversing create tight placement. awnings

Be math student France

Sunday, September 18, 2011 10:34 PM

Be math student

Hello! I just wanted to ask should you ever have any issues with hackers? My last weblog (wordpress) was hacked and I ended up losing several months of hard function due to no backup. Do you've got any solutions to protect against hackers?

riad Marrakech France

Tuesday, September 20, 2011 2:28 AM

riad Marrakech

I genuinely appreciate looking at on this labyrinth point , it controls magnificent dispatchs .

Bartholomew United States

Wednesday, September 21, 2011 11:56 PM

Bartholomew

Amaze! Thank you! I always aspired to write at my website the like.

Mable Macola France

Wednesday, October 05, 2011 10:04 AM

Mable Macola

Good blog! I actually fancy how it is susceptible on my oculars further the information are well written. I’m wondering how I muscle be notified whenever a unfamiliar advise has been made. I receive subscribed to your RSS which need do the stunt! Receive a monumental time! “Reputation is what else tribe apprehend about you. Kudos is what you apprehend about yourself.” by Lois McMaster Bujold.

location riad Marrakech France

Wednesday, October 05, 2011 8:20 PM

location riad Marrakech

I certainly realize this inform. I’ve been looking many too for this! Acknowledge probity I build it on Bing. You acquire made my lifetime! Acknowledges encore! “All that is nugget does nay spangle nay many those that deviate are astray.” by J. R. R. Tolkien.

riad Marrakech France

Wednesday, October 12, 2011 4:21 PM

riad Marrakech

I think that is between the most weighty info for me. Moreover i’m delighted lesson your stipulation. Yet wanna word on few encyclopedic items, The website vogue is awesome, the stipulations is in topic of truth delightful Souriant . Valid valid errand, yells.

riad France

Tuesday, November 01, 2011 3:02 AM

riad

Yay google is my empress aided me to locate this monumental website ! . “Don’t method absent active accompanying your helps. It does negative prevent using your pate.” by Andy Rooney.

Marrakech France

Monday, November 07, 2011 8:14 AM

Marrakech

Rattling delightful sketch moreover worthy submissive information , truly tiny otherwise we want : D.

reserver riad France

Tuesday, November 08, 2011 10:14 PM

reserver riad

I always was interested in this point plus inert am, cherish it for putting up.

Marrakech France

Sunday, November 13, 2011 7:38 AM

Marrakech

Rattling nice word can be base on blog .

immobilier maroc oujda France

Wednesday, November 16, 2011 12:26 AM

immobilier maroc oujda

I always was attentive in this subject further serene am, treasure it for putting up.

marrakeche France

Thursday, November 17, 2011 3:45 PM

marrakeche

Homage to composition maker , several grand choosy word . “When you stop to fancy you stop to continue.” by Malcolm Stevenson Forbes.

Hermila Naasz France

Saturday, November 26, 2011 1:03 AM

Hermila Naasz

Great writeup!.. I've been searching about for this for a while now. Thank you Bing for bringing me to your page lol. I can often rely on Google to get the very best data. Anyways, I located some related data about |

Blog marketing France

Tuesday, December 06, 2011 6:38 PM

Blog marketing

This is my first time i visit here. I wanted to check up and let you know how considerably I cherished discovering your website. Really anticipating discover more!

Chanell Iafrate France

Wednesday, December 14, 2011 11:07 PM

Chanell Iafrate

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�.

Ivonne Blomstrand France

Thursday, December 22, 2011 12:07 AM

Ivonne Blomstrand

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.

Lakita Wenske France

Thursday, December 22, 2011 11:37 PM

Lakita Wenske

From your article can learn a whole lot of life philosophy.

Pi�ce d'or France

Friday, January 27, 2012 1:41 PM

Pi�ce d&#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 6:57 PM

URL

building websites is not only enjoyable, but it can also produce an income for yourself;; 567577

animation 76 France

Monday, February 13, 2012 5:17 PM

animation 76

Un grand merci pour cet article unique. Je suis un adepte de votre site. N'h�sitez pas � naviguer sur le mien, l'animation pour les anniversaires dans l'Eure, �a me conna�t !

Add comment




  Country flag
biuquote
  • Comment
  • Preview
Loading