diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2010-04-23 18:01:40 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2010-04-23 18:01:40 +0200 |
commit | b7fbcf61cf1267564edaf343833fa15f1a806430 (patch) | |
tree | 0820431407868760ccf7f48d7f24a6c573d00a2e /Bugzilla | |
parent | 5bb84b3c6efc503652a14e59efbe2b7c548608dd (diff) | |
download | bugzilla-b7fbcf61cf1267564edaf343833fa15f1a806430.tar.gz bugzilla-b7fbcf61cf1267564edaf343833fa15f1a806430.tar.xz |
Bug 561362: Remove the 'sendmailnow' parameter
r=justdave a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Config/MTA.pm | 6 | ||||
-rw-r--r-- | Bugzilla/Mailer.pm | 2 |
2 files changed, 0 insertions, 8 deletions
diff --git a/Bugzilla/Config/MTA.pm b/Bugzilla/Config/MTA.pm index b1e3ab1a4..c90e5dc76 100644 --- a/Bugzilla/Config/MTA.pm +++ b/Bugzilla/Config/MTA.pm @@ -65,12 +65,6 @@ sub get_param_list { }, { - name => 'sendmailnow', - type => 'b', - default => 1 - }, - - { name => 'smtpserver', type => 't', default => 'localhost' diff --git a/Bugzilla/Mailer.pm b/Bugzilla/Mailer.pm index fb9c5a7ca..596e8ab65 100644 --- a/Bugzilla/Mailer.pm +++ b/Bugzilla/Mailer.pm @@ -145,8 +145,6 @@ sub MessageToMTA { push(@args, "-f$from_email") if $from_email; } } - push(@args, "-ODeliveryMode=deferred") - if !Bugzilla->params->{"sendmailnow"}; } else { # Sendmail will automatically append our hostname to the From |