-
-
23 Mar 2008 02:40:27 UTC
- Distribution: Courier-Filter
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (0)
- Testers
- Kwalitee
Bus factor: 0- 74.60% Coverage
- License: perl_5
- Perl: v5.8.0
- Activity
24 month- Tools
- Download (64.08KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Error
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Courier::Filter::Module::SpamAssassin - SpamAssassin message filter module for the Courier::Filter framework
SYNOPSIS
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 ], ... );
DESCRIPTION
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.
Constructor
The following constructor is provided:
- new(%options): returns Courier::Filter::Module::SpamAssassin
-
Creates a new SpamAssassin filter module.
%options is a list of key/value pairs representing any of the following options:
- prefs_file
-
The path of a SpamAssassin preferences file. If this option is specified, its value is passed to the Mail::SpamAssassin constructor's
userprefs_filename
option . If undef, SpamAssassin is instructed not to read any preferences besides its default configuration files. Defaults to undef. - sa_options
-
A hash-ref specifying options for the Mail::SpamAssassin object used by this filter module. See "new" in Mail::SpamAssassin for the supported options.
All options of the Courier::Filter::Module constructor are also supported. Please see "new" in Courier::Filter::Module for their descriptions.
Instance methods
See "Instance methods" in Courier::Filter::Module for a description of the provided instance methods.
SEE ALSO
Courier::Filter::Module, Courier::Filter::Overview.
For AVAILABILITY, SUPPORT, COPYRIGHT, and LICENSE information, see Courier::Filter::Overview.
AUTHOR
Julian Mehnle <julian@mehnle.net>
Module Install Instructions
To install Courier::Filter, copy and paste the appropriate command in to your terminal.
cpanm Courier::Filter
perl -MCPAN -e shell install Courier::Filter
For more information on module installation, please visit the detailed CPAN module installation guide.