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

How to Create a Spam Filter or Automatic Category Sort Algorithm with Your Mail Application

Rate me:
Please Sign up or sign in to vote.
5.00/5 (9 votes)
29 Jul 2012MIT3 min read 40.1K   1.2K   19  
This article describes automatic category filters in mail applications.
In this article, you will learn how to create a spam filter on your mail application. You will also see how to filter your mail based on whether the mail tells about a particular topic or not.
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;

namespace HigLabo.Net.Imap
{
    /// <summary>
    /// 
    /// </summary>
    public class SelectResult
    {
        /// <summary>
        /// 
        /// </summary>
        public String FolderName { get; private set; }
        /// <summary>
        /// 
        /// </summary>
        public Int32 Exists { get; private set; }
        /// <summary>
        /// 
        /// </summary>
        public Int32 Recent { get; private set; }
        /// <summary>
        /// 
        /// </summary>
        public ReadOnlyCollection<String> Flags { get; private set; }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="folderName"></param>
        /// <param name="exists"></param>
        /// <param name="recent"></param>
        /// <param name="flags"></param>
        public SelectResult(String folderName, Int32 exists, Int32 recent, params String[] flags)
        {
            this.FolderName = folderName;
            this.Exists = exists;
            this.Recent = recent;
            this.Flags = new ReadOnlyCollection<string>(new List<string>(flags));
        }
    }
}

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, along with any associated source code and files, is licensed under The MIT License


Written By
CEO TinyBetter, Inc
Japan Japan
I'm a CEO of TinyBetter, Inc in Japan.

Comments and Discussions