Subject: | incorrectly formatted warn command used |
In snapback2 in the send_mail subroutine, the following error message format is used:
warn("Unable to send mail using %s\nTo: %s\nSubject: %s\n\n%s",
$using,
$opt->{to},
$opt->{subject},
$body,
);
Unfortunately, the warn() routine does not interpret the %s, so the error message reported will be scrambled.