diff options
Diffstat (limited to 'processmail')
-rwxr-xr-x | processmail | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/processmail b/processmail index 8c8ad8719..b81398680 100755 --- a/processmail +++ b/processmail @@ -582,7 +582,7 @@ sub NewProcessOnePerson ($$\@\%\%\%$$$$) { my $template = Param("newchangedmail"); my $msg = PerformSubsts($template, \%substs); - open(SENDMAIL, "|/usr/lib/sendmail -t") || + open(SENDMAIL, "|/usr/lib/sendmail -ODeliveryMode=deferred -t") || die "Can't open sendmail"; print SENDMAIL trim($msg) . "\n"; @@ -645,8 +645,9 @@ sub ProcessOneBug { if (!$regenerate) { # Note: fixaddresses may result in a Cc: only. This seems # harmless. - open(SENDMAIL, "|/usr/lib/sendmail -t") || - die "Can't open sendmail"; + open(SENDMAIL, + "|/usr/lib/sendmail -ODeliveryMode=deferred -t") || + die "Can't open sendmail"; print SENDMAIL $msg; close SENDMAIL; |