Code level email spam filtering in Java

I am writing code to download email from different servers, some of which are beyond my control. I would like to be able to filter out spam at the code level, since I cannot always rely on servers to do this efficiently. What resources in Java are available for this? What is a good approach to minimize the amount of spam I need to skip?

I am currently just using the JavaMail API.

+4
source share
2 answers

From third-party JavaMail products.

jASEN is pure Java Anti Spam ENgine combining Bayesian scanning with intelligent email verification and classification. jASEN is best suited for developers who want to integrate anti-spam services into their existing Java email server application, but can be used for the Application client. Available at: http://www.jasen.org

More JavaMail 3rd Party Products here: http://java.sun.com/products/javamail/Third_Party.html

+3
source

Sounds like Jasen might be helpful.

+2
source

Source: https://habr.com/ru/post/1302534/


All Articles