public class NESSpamCheck extends GenericRegexMatcher
This is based on a sample filter.cfg for a Netscape Mail Server to stop
spam.
Fields Summary
protected Object[]
NESPatterns
Constructors Summary
Methods Summary
public void
init()
//No condition passed... just compile a bunch of regular expressions
try {
compile(NESPatterns);
} catch(MalformedPatternException mp) {
throw new MessagingException("Could not initialize NES patterns", mp);
}