Courier::Filter::Module::Envelope(3pm) | User Contributed Perl Documentation | Courier::Filter::Module::Envelope(3pm) |
Courier::Filter::Module::Envelope - Message envelope filter module for the Courier::Filter framework
use Courier::Filter::Module::Envelope; my $module = Courier::Filter::Module::Envelope->new( fields => { # One or more of the following fields: sender => 'paul.greenfield@unisys.com', recipient => 'julian@mehnle.net', remote_host => '216.250.130.2', remote_host_name => qr/(^|\.)php\.net$/, remote_host_helo => qr/^[^.]*$/ }, # Optionally the following: response => $response_text, 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 one of the message's envelope fields matches the configured criteria.
The following constructor is provided:
%options is a list of key/value pairs representing any of the following options:
The following envelope fields are supported:
So for instance, to match any message with a sender of "paul.greenfield@unisys.com", directed at "julian@mehnle.net" (possibly among other recipients), you could set the "fields" option as follows:
fields => { sender => 'paul.greenfield@unisys.com', recipient => 'julian@mehnle.net' }
All options of the Courier::Filter::Module constructor are also supported. Please see "new()" in Courier::Filter::Module for their descriptions.
See "Instance methods" in Courier::Filter::Module for a description of the provided instance methods.
Courier::Filter::Module::Header, Courier::Filter::Module, Courier::Filter::Overview.
For AVAILABILITY, SUPPORT, and LICENSE information, see Courier::Filter::Overview.
Julian Mehnle <julian@mehnle.net>
2022-10-21 | perl v5.34.0 |