Subject: | 'from' option writes to STDERR |
Code says:
if(exists($arg{from})){
print STDERR "using specified envelope sender address:
$arg{from}\n";
}
surely should be:
if(exists($arg{from})){
print STDERR "using specified envelope sender address:
$arg{from}\n" if ($arg{debug} == 1);
}
to avoid STDERR spam?