diff options
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/BugMail.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index c682b4d5c..7de3e63cb 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -885,7 +885,7 @@ sub MessageToMTA ($) { return unless $enableSendMail; my @args; - if (Param("maildeliverymethod") eq "sendmail" && Param("sendmailnow")) { + if (Param("maildeliverymethod") eq "sendmail" && !Param("sendmailnow")) { push @args, "-ODeliveryMode=deferred"; } if (Param("maildeliverymethod") eq "smtp") { |