Any idea (example) of spam filter implementation in C#? I would like to use a database to store unwanted words, to train my spam filter.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Patterns are more important than words (barring “#FF0000”, you can be pretty much 100% confident that anything sent as an HTML mail will “#FF0000” in it is not worth reading). Take a look at http://en.wikipedia.org/wiki/Bayesian_spam_filtering and the references it has for one approach (IIRC, one of the first experiments with technique found that after training the filter, “#FF0000” was the expression most likely to indicate Spam, see I told you so).