diff options
author | travis%sedsystems.ca <> | 2005-02-04 02:05:56 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-02-04 02:05:56 +0100 |
commit | 5a017c4d6d75553d8128b626c3d9acc8e00adbe7 (patch) | |
tree | d481dbe5bd8dd5c4c8b6279279b024271faaf86d | |
parent | a062bd423cbf2828d644c53c2b21fd16a3ecc907 (diff) | |
download | bugzilla-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
-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") { |