mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-12-25 17:50:13 +01:00
Fixed the gui mime parser
Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
parent
4ea1213d3d
commit
60b61ba225
@ -123,6 +123,17 @@ class Piler_Mime_Decode {
|
|||||||
self::splitMessageRaw($msg, $headers, $j, $body);
|
self::splitMessageRaw($msg, $headers, $j, $body);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// If the message has a single binary attachment, then drop the body part
|
||||||
|
if(isset($headers_array['content-type']['type'])) {
|
||||||
|
foreach(['application/', 'image/'] as $type) {
|
||||||
|
if(strstr($headers_array['content-type']['type'], $type)) {
|
||||||
|
$body = '';
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$headers = $message;
|
$headers = $message;
|
||||||
|
Loading…
Reference in New Issue
Block a user