From 5a017c4d6d75553d8128b626c3d9acc8e00adbe7 Mon Sep 17 00:00:00 2001 From: "travis%sedsystems.ca" <> Date: Fri, 4 Feb 2005 01:05:56 +0000 Subject: Bug 280775 : Bug 277437 reversed the meaning of param(sendmailnow) Patch by byron jones (glob) r=vladd a=justdave --- Bugzilla/BugMail.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/BugMail.pm') 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") { -- cgit v1.2.3-24-g4f1b