diff options
author | Byron Jones <bjones@mozilla.com> | 2011-03-09 10:46:02 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2011-03-09 10:46:02 +0100 |
commit | e17bd11ddb9407d5b8cf2a53df5a9ecf514748d4 (patch) | |
tree | 0c50e3fbaa6db66c20d6e54101af5f9a5aecb013 /Bugzilla/Install | |
parent | fd4f9fadbede46895d8c9e9853e04e02fe701662 (diff) | |
download | bugzilla-e17bd11ddb9407d5b8cf2a53df5a9ecf514748d4.tar.gz bugzilla-e17bd11ddb9407d5b8cf2a53df5a9ecf514748d4.tar.xz |
Bug 633776: Automatic charset detection for text attachments
r=mkanat, a=mkanat
Diffstat (limited to 'Bugzilla/Install')
-rwxr-xr-x[-rw-r--r--] | Bugzilla/Install/Requirements.pm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Bugzilla/Install/Requirements.pm b/Bugzilla/Install/Requirements.pm index 047ed36f1..5b8f77e30 100644..100755 --- a/Bugzilla/Install/Requirements.pm +++ b/Bugzilla/Install/Requirements.pm @@ -291,6 +291,19 @@ sub OPTIONAL_MODULES { version => 0, feature => ['html_desc'], }, + { + # we need version 2.21 of Encode for mime_name + package => 'Encode', + module => 'Encode', + version => 2.21, + feature => ['detect_charset'], + }, + { + package => 'Encode-Detect', + module => 'Encode::Detect', + version => 0, + feature => ['detect_charset'], + }, # Inbound Email { |