FileDocCategorySizeDatePackage
NESSpamCheck.javaAPI DocApache James 2.3.14747Fri Jan 12 12:56:32 GMT 2007org.apache.james.transport.matchers

NESSpamCheck

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 voidinit()


         
        //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);
        }