summaryrefslogtreecommitdiffstats
path: root/Bugzilla/BugMail.pm
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-02-04 02:05:56 +0100
committertravis%sedsystems.ca <>2005-02-04 02:05:56 +0100
commit5a017c4d6d75553d8128b626c3d9acc8e00adbe7 (patch)
treed481dbe5bd8dd5c4c8b6279279b024271faaf86d /Bugzilla/BugMail.pm
parenta062bd423cbf2828d644c53c2b21fd16a3ecc907 (diff)
downloadbugzilla-5a017c4d6d75553d8128b626c3d9acc8e00adbe7.tar.gz
bugzilla-5a017c4d6d75553d8128b626c3d9acc8e00adbe7.tar.xz
Bug 280775 : Bug 277437 reversed the meaning of param(sendmailnow)
Patch by byron jones (glob) <bugzilla@glob.com.au> r=vladd a=justdave
Diffstat (limited to 'Bugzilla/BugMail.pm')
-rw-r--r--Bugzilla/BugMail.pm2
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") {