Commit 69aa4d37 authored by gerv%gerv.net's avatar gerv%gerv.net

Bug 52782 - whineatnews.pl email should use the 'sendmailnow' Param. Patch by…

Bug 52782 - whineatnews.pl email should use the 'sendmailnow' Param. Patch by e.maryniak@pobox.com, r=gerv.
parent 732514db
...@@ -62,7 +62,10 @@ foreach my $email (sort (keys %bugs)) { ...@@ -62,7 +62,10 @@ foreach my $email (sort (keys %bugs)) {
foreach my $i (@{$bugs{$email}}) { foreach my $i (@{$bugs{$email}}) {
$msg .= " ${urlbase}show_bug.cgi?id=$i\n" $msg .= " ${urlbase}show_bug.cgi?id=$i\n"
} }
open(SENDMAIL, "|/usr/lib/sendmail -t") || die "Can't open sendmail";
my $sendmailparam = Param('sendmailnow') ? '' : "-ODeliveryMode=deferred";
open SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t"
or die "Can't open sendmail";
print SENDMAIL $msg; print SENDMAIL $msg;
close SENDMAIL; close SENDMAIL;
print "$email " . join(" ", @{$bugs{$email}}) . "\n"; print "$email " . join(" ", @{$bugs{$email}}) . "\n";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment