diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2014-09-20 14:17:14 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2014-09-20 14:17:14 +0200 |
commit | 5d96fa703d3d9a17b39c910f3f00c6bf60b0363c (patch) | |
tree | 18a01c00aac67c08902cb823435e50db173af25a /Bugzilla/Install | |
parent | 917ede930a27180b6e6adeb16a46efc8156d36cc (diff) | |
download | bugs-5d96fa703d3d9a17b39c910f3f00c6bf60b0363c.tar bugs-5d96fa703d3d9a17b39c910f3f00c6bf60b0363c.tar.gz bugs-5d96fa703d3d9a17b39c910f3f00c6bf60b0363c.tar.bz2 bugs-5d96fa703d3d9a17b39c910f3f00c6bf60b0363c.tar.xz bugs-5d96fa703d3d9a17b39c910f3f00c6bf60b0363c.zip |
Bug 502625: Replace Email::Send with Email::Sender
r=dylan a=glob
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 16 |
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', |