Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Mail-Audit CPAN distribution.

Report information
The Basics
Id: 24991
Status: resolved
Priority: 0/
Queue: Mail-Audit

People
Owner: Nobody in particular
Requestors:
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Request: add optional reason to sub ignore
Could you please add this feature because it can be useful to log a reason for calling ignore()? # Original code: sub ignore { my $self = shift; $self->_log(1, "Ignoring"); # New code: sub ignore { my $self = shift; my $reason = shift; $self->_log(1, "Ignoring" . (defined($reason) ? ": $reason" : ''));
added in svn -- rjbs