Courier::Filter::Logger - An abstract Perl base class for loggers used by the Courier::Filter framework


NAME

Courier::Filter::Logger - An abstract Perl base class for loggers used by the Courier::Filter framework

Back to Top


VERSION

0.17

Back to Top


SYNOPSIS

Courier::Filter logging

    use Courier::Filter::Logger::My;  # Need to use a non-abstract sub-class.
    
    my $logger = Courier::Filter::Logger::My->new(%options);
    
    # 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,
        ...
    );

Deriving new logger classes

    package Courier::Filter::Logger::My;
    use base qw(Courier::Filter::Logger);

Back to Top


DESCRIPTION

Sub-classes of Courier::Filter::Logger are used by the Courier::Filter mail filtering framework and its filter modules for the logging of errors and message rejections to arbitrary targets, like file handles or databases.

When overriding a method in a derived class, do not forget calling the inherited method from your overridden method.

Constructor

The following constructor is provided and may be overridden:

new(%options): RETURNS Courier::Filter::Logger (or derivative)

Creates a new logger using the %options given as a list of key/value pairs. Initializes the logger, by creating/opening I/O handles, connecting to databases, etc..

Courier::Filter::Logger::new() creates a hashref as an object of the invoked class, and stores the %options in it, but does nothing else.

Destructor

The following destructor is provided and may be overridden:

destroy

Uninitializes the logger, by closing I/O handles, disconnecting from databases, etc..

Courier::Filter::Logger::destroy() does nothing.

Instance methods

The following instance methods are provided and may be overridden:

log_error($text)

Logs the error message given as $text (a string which may contain newlines).

Courier::Filter::Logger::log_error() does nothing and should be overridden.

log_rejected_message($message, $reason)

Logs the Courier::Message given as $message as having been rejected due to $reason (a string which may contain newlines).

Courier::Filter::Logger::log_rejected_message() does nothing and should be overridden.

Back to Top


SEE ALSO

the Courier::Filter manpage, the Courier::Filter::Module manpage.

For a list of prepared loggers that come with Courier::Filter, see Bundled Courier::Filter loggers in the Courier::Filter::Overview manpage.

For AVAILABILITY, SUPPORT, and LICENSE information, see the Courier::Filter::Overview manpage.

Back to Top


AUTHOR

Julian Mehnle <julian@mehnle.net>

Back to Top

 Courier::Filter::Logger - An abstract Perl base class for loggers used by the Courier::Filter framework