diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2012-11-17 17:44:34 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2012-11-17 17:44:34 +0000 |
commit | 68a9f79722313357c397762da226b281e107f968 (patch) | |
tree | ed761453aba6a1ba968e64a526a8f9a35ff927f6 /mail/Makefile | |
parent | Update to 0.7.5 (diff) |
Add the extra charset decoders from SquirrelMail.
This package contains extra decoding functions.
SquirrelMail decoding functions are used to display and convert messages
encoded in different character sets. Extra decoding library provides support
of some complex Eastern character sets and some rarely used Apple character
sets. Current release supports Big5, Windows-874 (cp874, Thai), Windows-949
(UHC, Korean), EUC-CN, EUC-JP, EUC-KR, EUC-TW, GB18030, GB2312, ISO-2022-CN,
ISO-2022-JP, ISO-2022-JP-2, ISO-2022-KR, Shift_JIS and various x-mac-*
character sets.
Extra decoding library can be used in SquirrelMail 1.4.4 or newer. It depends
on sq_is8bit() function. In order to optimize decoding of Eastern character
sets, PHP installation needs recode (http://www.php.net/recode) or iconv
(http://www.php.net/iconv) support. Some decoding functions can use mbstring
functions present in php 4.3.0. Mbstring decoding needs sq_mb_list_encodings()
function from SquirrelMail 1.5.1 or 1.4.6.
Some decoding code that be activated only when $aggressive_decoding variable
is set to true. This variable should be enabled only on smaller systems, that
don't call aggressive decoding functions very often. Turning on
$aggressive_decoding variable by default in packaged SquirrelMail versions is
not recommended.
WWW: http://www.squirrelmail.org/
Feature safe: yes
Notes
Notes:
svn path=/head/; revision=307522
Diffstat (limited to 'mail/Makefile')
-rw-r--r-- | mail/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile index 89e7a384e207..97bf0edc27c8 100644 --- a/mail/Makefile +++ b/mail/Makefile @@ -672,6 +672,7 @@ SUBDIR += squirrelmail-change_sqlpass-plugin SUBDIR += squirrelmail-check_quota-plugin SUBDIR += squirrelmail-compatibility-plugin + SUBDIR += squirrelmail-decode SUBDIR += squirrelmail-email_footer-plugin SUBDIR += squirrelmail-login_auth-plugin SUBDIR += squirrelmail-login_notes-plugin |