From 6fce5692ba7ac591d0c2a671503bc517d08591a9 Mon Sep 17 00:00:00 2001 From: Andrew Moore Date: Wed, 9 Jul 2008 11:56:40 -0500 Subject: [PATCH] Bug 2274 [2/5]: adding MIME::Lite to list of required modules formerly, the overdues cronjobs were crafting their own MIME message attachments (poorly). This patch adds a dependency on MIME::Lite, the de facto standard perl module for forming usable emails with MIME attachments. MIME::Lite is pure perl and well supported on numerous platforms: http://testers.cpan.org/show/MIME-Lite.html Signed-off-by: Joshua Ferraro --- Makefile.PL | 1 + about.pl | 1 + 2 files changed, 2 insertions(+) diff --git a/Makefile.PL b/Makefile.PL index bcbc8f9dc3..f04a6d4b4f 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -567,6 +567,7 @@ WriteMakefile( 'MARC::File::XML' => 0.88, 'MARC::Record' => 2.00, 'MIME::Base64' => 3.07, + 'MIME::Lite' => 3.01, 'MIME::QuotedPrint' => 3.07, 'Mail::Sendmail' => 0.79, 'Net::LDAP' => 0.33, # optional diff --git a/about.pl b/about.pl index 5421f953c8..a31b0a0211 100755 --- a/about.pl +++ b/about.pl @@ -97,6 +97,7 @@ MARC::Charset MARC::File::XML MARC::Record MIME::Base64 +MIME::Lite MIME::QuotedPrint Mail::Sendmail Net::LDAP -- 2.39.5