summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/Requirements.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2014-09-20 14:17:14 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2014-09-20 14:17:14 +0200
commit5d96fa703d3d9a17b39c910f3f00c6bf60b0363c (patch)
tree18a01c00aac67c08902cb823435e50db173af25a /Bugzilla/Install/Requirements.pm
parent917ede930a27180b6e6adeb16a46efc8156d36cc (diff)
downloadbugzilla-5d96fa703d3d9a17b39c910f3f00c6bf60b0363c.tar.gz
bugzilla-5d96fa703d3d9a17b39c910f3f00c6bf60b0363c.tar.xz
Bug 502625: Replace Email::Send with Email::Sender
r=dylan a=glob
Diffstat (limited to 'Bugzilla/Install/Requirements.pm')
-rw-r--r--Bugzilla/Install/Requirements.pm16
1 files changed, 4 insertions, 12 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm
index bec753830..db3d7b028 100644
--- a/Bugzilla/Install/Requirements.pm
+++ b/Bugzilla/Install/Requirements.pm
@@ -23,13 +23,6 @@ use Bugzilla::Install::Util qw(install_string bin_loc
use List::Util qw(max);
use Term::ANSIColor;
-# Return::Value 1.666002 pollutes the error log with warnings about this
-# deprecated module. We have to set NO_CLUCK = 1 before loading Email::Send
-# in have_vers() to disable these warnings.
-BEGIN {
- $Return::Value::NO_CLUCK = 1;
-}
-
use parent qw(Exporter);
our @EXPORT = qw(
REQUIRED_MODULES
@@ -131,12 +124,11 @@ sub REQUIRED_MODULES {
module => 'Template',
version => '2.24'
},
- # 2.04 implement the "Test" method (to write to data/mailer.testfile).
+ # 1.300011 has a debug mode for SMTP and automatically pass -i to sendmail.
{
- package => 'Email-Send',
- module => 'Email::Send',
- version => ON_WINDOWS ? '2.16' : '2.04',
- blacklist => ['^2\.196$']
+ package => 'Email-Sender',
+ module => 'Email::Sender',
+ version => '1.300011',
},
{
package => 'Email-MIME',