diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-09-08 03:36:27 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-09-08 03:36:27 +0200 |
commit | a2a95e44cc2f9754b75614a884d2312da46b9296 (patch) | |
tree | 32212951b30a762e5dd3086a6fac4c51b72bebba /Bugzilla | |
parent | 6fc68f38d82b6bab1313ae320a53b577447c7e60 (diff) | |
download | bugzilla-a2a95e44cc2f9754b75614a884d2312da46b9296.tar.gz bugzilla-a2a95e44cc2f9754b75614a884d2312da46b9296.tar.xz |
Bug 516457: Bump the Email::MIME requirement to avoid a memory leak that
jobqueue.pl was hitting.
r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install/Requirements.pm | 14 | ||||
-rw-r--r-- | Bugzilla/Mailer.pm | 2 |
2 files changed, 2 insertions, 14 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 25dc15665..5ed2d7dcd 100644 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -116,18 +116,8 @@ sub REQUIRED_MODULES { { package => 'Email-MIME', module => 'Email::MIME', - version => '1.861' - }, - { - package => 'Email-MIME-Encodings', - module => 'Email::MIME::Encodings', - # Fixes bug 486206 - version => '1.313', - }, - { - package => 'Email-MIME-Modifier', - module => 'Email::MIME::Modifier', - version => '1.442' + # This fixes a memory leak in walk_parts that affected jobqueue.pl. + version => '1.904' }, { package => 'URI', diff --git a/Bugzilla/Mailer.pm b/Bugzilla/Mailer.pm index c8a99b873..d4a41b763 100644 --- a/Bugzilla/Mailer.pm +++ b/Bugzilla/Mailer.pm @@ -48,8 +48,6 @@ use Encode qw(encode); use Encode::MIME::Header; use Email::Address; use Email::MIME; -# Loading this gives us encoding_set. -use Email::MIME::Modifier; use Email::Send; sub MessageToMTA { |