From 394a014b635238518511e1c86ecdbdbe70593c5c Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Fri, 3 Nov 2006 07:31:59 +0000 Subject: Bug 353711: Move to Email:: modules for email sending Patch By Max Kanat-Alexander r=glob, a=myk --- Bugzilla/Install/Requirements.pm | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) (limited to 'Bugzilla/Install/Requirements.pm') diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 153149a08..2ecbc9e3c 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -78,11 +78,6 @@ sub REQUIRED_MODULES { module => 'Template', version => '2.12' }, - { - package => 'MailTools', - module => 'Mail::Mailer', - version => '1.67' - }, { package => 'MIME-Base64', module => 'MIME::Base64', @@ -94,6 +89,17 @@ sub REQUIRED_MODULES { module => ON_WINDOWS ? 'MIME::Tools' : 'MIME::Parser', version => '5.406' }, + { + package => 'Email-Send', + module => 'Email::Send', + version => ON_WINDOWS ? '2.16' : '2.00' + }, + { + # This will pull in Email::MIME for us, also. + package => 'Email-MIME-Modifier', + module => 'Email::MIME::Modifier', + version => 0 + }, ); my $all_modules = _get_extension_requirements( @@ -186,15 +192,6 @@ sub OPTIONAL_MODULES { }, # Inbound Email - { - # Email::MIME::Attachment::Stripper can throw an error with - # earlier versions. - # This also pulls in Email::MIME and Email::Address for us. - package => 'Email-MIME-Modifier', - module => 'Email::MIME::Modifier', - version => '1.43', - feature => 'Inbound Email' - }, { package => 'Email-MIME-Attachment-Stripper', module => 'Email::MIME::Attachment::Stripper', -- cgit v1.2.3-24-g4f1b