* Mail/API: some servers do report capabilities that they do not fully support; thus relying on those results in failure; use hordes capability_ignore to avoid the problems;map charset ks_c_5601-1987 to CP949 as the former is not supported by php(s) conversion functions and should be mapped to the latter

This commit is contained in:
Klaus Leithoff 2015-10-22 11:15:26 +00:00
parent 7e5873eefa
commit 23fdf1c46e

View File

@ -825,6 +825,9 @@ class translation
*/ */
switch($from) switch($from)
{ {
case 'ks_c_5601-1987':
$from = 'CP949';
break;
case 'gb2312': case 'gb2312':
case 'gb18030': case 'gb18030':
$from = 'EUC-CN'; $from = 'EUC-CN';