mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-06-14 12:17:03 +02:00
@ -138,6 +138,10 @@ class Piler_Mime_Decode {
|
|||||||
|
|
||||||
if(!isset($headers['content-type'])) { $headers['content-type'] = 'text/plain'; }
|
if(!isset($headers['content-type'])) { $headers['content-type'] = 'text/plain'; }
|
||||||
|
|
||||||
|
// I saw a dumb email (it was a spam, though) having two Date: lines.
|
||||||
|
// In this case we take the first date, and discard the rest
|
||||||
|
if(is_array($headers[self::HEADER_FIELDS[4]])) { $headers[self::HEADER_FIELDS[4]] = $headers[self::HEADER_FIELDS[4]][0]; }
|
||||||
|
|
||||||
for($i=0; $i<count(self::HEADER_FIELDS); $i++) {
|
for($i=0; $i<count(self::HEADER_FIELDS); $i++) {
|
||||||
if(!isset($headers[self::HEADER_FIELDS[$i]])) { $headers[self::HEADER_FIELDS[$i]] = ''; }
|
if(!isset($headers[self::HEADER_FIELDS[$i]])) { $headers[self::HEADER_FIELDS[$i]] = ''; }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user