Syslog logger for the courier::filter framework
use Courier::Filter::Logger::Syslog; my $logger = Courier::Filter::Logger::Syslog->new(); # For use in an individual filter module: my $module = Courier::Filter::Module::My->new( ... logger => $logger, ... ); # For use as a global Courier::Filter logger object: my $filter = Courier::Filter->new( ... logger => $logger, ... );
This class is a syslog logger class for use with Courier::Filter and its filter modules. It is derived from Courier::Filter::Logger::IOHandle.
The following constructor is provided:
Creates a new logger that logs messages to syslog.
The following instance methods are provided, as inherited from Courier::Filter::Logger::IOHandle:
Logs the error message given as $text (a string which may contain newlines). Logs the Courier::Message given as $message as having been rejected due to $reason (a string which may contain newlines).
Courier::Filter::Logger::IOHandle, Courier::Filter::Logger, Courier::Filter::Overview.
For \s-1AVAILABILITY\s0, \s-1SUPPORT\s0, and \s-1LICENSE\s0 information, see Courier::Filter::Overview.
Julian Mehnle <[email protected]>