table of contents
Debbugs::Recipients(3pm) | User Contributed Perl Documentation | Debbugs::Recipients(3pm) |
NAME¶
Debbugs::Recipients -- Determine recipients of messages from the bts
SYNOPSIS¶
DESCRIPTION¶
BUGS¶
None known.
add_recipients¶
add_recipients(data => $data, recipients => \%recipients; );
Given data (from read_bug or similar) (or an arrayref of data), calculates the addresses which need to receive mail involving this bug.
determine_recipients¶
my @recipients = determine_recipients(recipients => \%recipients, bcc => 1, ); my %recipients => determine_recipients(recipients => \%recipients,); # or a crazy example: send_mail_message(message => $message, recipients => [make_list( values %{{determine_recipients( recipients => \%recipients) }}) ], );
Using the recipient hashref, determines the set of recipients.
If you specify one of "bcc", "cc", or "to", you will receive only a LIST of recipients which the main should be Bcc'ed, Cc'ed, or To'ed respectively. By default, a LIST with keys bcc, cc, and to is returned with ARRAYREF values corresponding to the users to whom a message should be sent.
Passing more than one of bcc, cc or to is a fatal error.
PRIVATE FUNCTIONS¶
_add_address¶
_add_address(recipients => $param{recipients}, address => $addmaint, reason => $param{data}{package}, bug_num => $param{data}{bug_num}, type => 'cc', );
2024-11-12 | perl v5.40.0 |