From: travis%sedsystems.ca <> Date: Fri, 4 Feb 2005 01:05:56 +0000 (+0000) Subject: Bug 280775 : Bug 277437 reversed the meaning of param(sendmailnow) X-Git-Tag: bugzilla-2.19.3~343 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a017c4d6d75553d8128b626c3d9acc8e00adbe7;p=thirdparty%2Fbugzilla.git Bug 280775 : Bug 277437 reversed the meaning of param(sendmailnow) Patch by byron jones (glob) r=vladd a=justdave --- diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index c682b4d5c2..7de3e63cbf 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") {