Spamassassin message filter module for the courier::filter framework
use Courier::Filter::Module::SpamAssassin;
my $module = Courier::Filter::Module::SpamAssassin->new(
prefs_file => '/etc/courier/filters/courier-filter-spamassassin.cf',
sa_options => {
# any Mail::SpamAssassin options
},
logger => $logger,
inverse => 0,
trusting => 0,
testing => 0,
debugging => 0
);
my $filter = Courier::Filter->new(
...
modules => [ $module ],
...
);
This class is a filter module class for use with Courier::Filter. It matches a message if its SpamAssassin spam score exceeds the configured threshold.
The following constructor is provided:
Creates a new SpamAssassin filter module. %options is a list of key/value pairs representing any of the following options:
The path of a SpamAssassin preferences file. If this option is specified, its value is passed to the Mail::SpamAssassin constructor's \*(C`userprefs_filename\*(C' option . If undef, SpamAssassin is instructed not to read any preferences besides its default configuration files. Defaults to undef.
A hash-ref specifying options for the Mail::SpamAssassin object used by this filter module. See \*(L"new\*(R" in Mail::SpamAssassin for the supported options.
All options of the Courier::Filter::Module constructor are also supported. Please see \*(L"new\*(R" in Courier::Filter::Module for their descriptions.
See \*(L"Instance methods\*(R" in Courier::Filter::Module for a description of the provided instance methods.
Courier::Filter::Module, Courier::Filter::Overview.
For \s-1AVAILABILITY\s0, \s-1SUPPORT\s0, \s-1COPYRIGHT\s0, and \s-1LICENSE\s0 information, see Courier::Filter::Overview.
Julian Mehnle <[email protected]>