Courier::Filter::Module::SendCopy(3pm) | User Contributed Perl Documentation | Courier::Filter::Module::SendCopy(3pm) |
Courier::Filter::Module::SendCopy - Pseudo-filter for the Courier::Filter framework that sends a copy of certain messages to additional recipients
use Courier::Filter::Module::SendCopy; my $module = Courier::Filter::Module::SendCopy->new( # One or more of the following criteria: match_sender => qr/\@office\.example\.net$/, match_recipients => qr/\@customer\.example\.com$/, match_authenticated_user => 'my-smtp-user-name', # One or several copy recipients: copy_recipients => [ 'el-cheffe@office.example.net', 'archives@customer.example.com', ], # Send a copy to the sender? (always/never/indifferent) copy_to_sender => TRUE, # TRUE/FALSE/undef ) my $filter = Courier::Filter->new( ... modules => [ $module ], ... );
This class is a filter module for use with Courier::Filter. If a message matches a given set of criteria, a blind carbon copy of the message is sent to a configured list of additional recipients by adding them to the message's control file. This module never matches.
The following constructor is provided:
%options is a list of key/value pairs representing any of the following options:
Patterns may either be simple strings (for exact, case-sensitive matches) or regular expression objects created by the "qr//" operator (for partial matches).
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, Courier::Filter::Overview.
For AVAILABILITY, SUPPORT and LICENSE information, see Courier::Filter::Overview.
Michael Buschbeck <michael@buschbeck.net>
2022-10-21 | perl v5.34.0 |