diff options
Diffstat (limited to 'whineatnews.pl')
-rwxr-xr-x | whineatnews.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/whineatnews.pl b/whineatnews.pl index ba258ddca..0b5d78eba 100755 --- a/whineatnews.pl +++ b/whineatnews.pl @@ -64,7 +64,7 @@ foreach my $email (sort (keys %bugs)) { } my $sendmailparam = Param('sendmailnow') ? '' : "-ODeliveryMode=deferred"; - open SENDMAIL, "|/usr/lib/sendmail $sendmailparam -t" + open SENDMAIL, "|/usr/lib/sendmail $sendmailparam -ti" or die "Can't open sendmail"; print SENDMAIL $msg; close SENDMAIL; |