Click here to Skip to main content
15,889,838 members
Articles / Programming Languages / C#

Advanced MIME Parser/Creator/Editor

Rate me:
Please Sign up or sign in to vote.
4.91/5 (66 votes)
5 Oct 2005 1M   7.7K   116  
An advanced MIME parser/creator/editor application.
using System;

namespace LumiSoft.Net.SMTP.Server
{
	/// <summary>
	/// SMTP command order validator.
	/// </summary>
	internal class SMTP_Cmd_Validator
	{
		private bool m_Helo_ok       = false;
		private bool m_Authenticated = false;
		private bool m_MailFrom_ok   = false;
		private bool m_RcptTo_ok     = false;
		private bool m_BdatLast_ok   = false;

		/// <summary>
		/// Default constructor.
		/// </summary>
		public SMTP_Cmd_Validator()
		{			
		}


		#region function Reset

		/// <summary>
		/// Resets state.
		/// </summary>
		public void Reset()
		{
			m_Helo_ok       = false;
			m_Authenticated = false;
			m_MailFrom_ok   = false;
			m_RcptTo_ok     = false;
			m_BdatLast_ok   = false;
		}

		#endregion


		#region Properties Implementation

		/// <summary>
		/// Gets if may handle MAIL command.
		/// </summary>
		public bool MayHandle_MAIL
		{
			get{ return m_Helo_ok && !MailFrom_ok; }
		}

		/// <summary>
		/// Gets if may handle RCPT command.
		/// </summary>
		public bool MayHandle_RCPT
		{
			get{ return MailFrom_ok; }
		}

		/// <summary>
		/// Gets if may handle DATA command.
		/// </summary>
		public bool MayHandle_DATA
		{
			get{ return RcptTo_ok; }
		}

		/// <summary>
		/// Gets if may handle BDAT command.
		/// </summary>
		public bool MayHandle_BDAT
		{
			get{ return RcptTo_ok && !m_BdatLast_ok; }
		}

		/// <summary>
		/// Gets if may handle AUTH command.
		/// </summary>
		public bool MayHandle_AUTH
		{
			get{ return !m_Authenticated; }
		}

		/// <summary>
		/// Gest or sets if HELO command handled.
		/// </summary>
		public bool Helo_ok
		{
			get{ return m_Helo_ok; }

			set{ m_Helo_ok = value; }
		}

		/// <summary>
		/// Gest or sets if AUTH command handled.
		/// </summary>
		public bool Authenticated
		{
			get{ return m_Authenticated; }

			set{ m_Authenticated = value; }
		}

		/// <summary>
		/// Gest or sets if MAIL command handled.
		/// </summary>
		public bool MailFrom_ok
		{
			get{ return m_MailFrom_ok; }

			set{ m_MailFrom_ok = value; }
		}

		/// <summary>
		/// Gest or sets if RCPT command handled.
		/// </summary>
		public bool RcptTo_ok
		{
			get{ return m_RcptTo_ok; }

			set{ m_RcptTo_ok = value; }
		}

		/// <summary>
		/// Gest or sets if BinaryMime.
		/// </summary>
		public bool BDAT_Last_ok
		{
			get{ return m_BdatLast_ok; }

			set{ m_BdatLast_ok = value; }
		}

		#endregion

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Estonia Estonia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions