fix for problem describt on the german list: headers from mails send from Outlook, eg:

From: =?Windows-1250?Q?X=F6rg_Brd?= <x_brd@xxx.de> 
get not decoded correct --> php (at least some versions) seems not to understand the charset windows-1250, which is more or less identical to iso-8859-1
This commit is contained in:
Ralf Becker 2006-12-05 19:13:20 +00:00
parent 73f0201a96
commit 9722a08168

View File

@ -417,6 +417,7 @@
break;
case 'us-ascii':
case 'macroman':
case 'windows-1250':
$from = 'iso-8859-1';
break;
}