Click here to Skip to main content
15,896,606 members
Articles / Programming Languages / C#

SpamAssassin Rule Analyzer

Rate me:
Please Sign up or sign in to vote.
1.30/5 (4 votes)
2 Aug 20064 min read 34.6K   588   11  
Imports SpamAssassin rule files to xml format and simulates the rules.
using System;
using System.Collections;

namespace UnearSpamParserLib
{
	/// <summary>
	/// Summary description for SpamRuleList.
	/// </summary>
	[Serializable]
	public class SpamRuleList: BaseCollection
	{
		#region Constructor

		public SpamRuleList()
		{
			this.spamRules = new ArrayList();
			this.InnerCollection = this.spamRules;
		}

		#endregion

		#region Public Properties

		public SpamRule this[int index]
		{
			get 
			{ 
				return (SpamRule)this.InnerCollection[index]; 
			}
		}

		#endregion

		#region Public Methods

		public void Add(SpamRule spamRule)
		{
			this.spamRules.Add(spamRule);
		}

		public bool Contains(SpamRule spamRule)
		{
			foreach(object item in this.spamRules)
			{
				SpamRule existRule = (SpamRule) item;
				if(spamRule.Name.Equals(existRule.Name))
					return true;		
			}
			return false;
		}

		public void Clear()
		{
			this.spamRules.Clear();
		}

		public void AddSpamRule(SpamRule spamRule)
		{
			this.spamRules.Add(spamRule);
		}

		public void RemoveSpamRule(SpamRule spamRule)
		{
			this.spamRules.Remove(spamRule);
		}

		#endregion

		#region Fields

		private ArrayList spamRules;

		#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
Software Developer (Senior)
Brazil Brazil
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions