mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 00:43:20 +01:00
* Mail: display messages containing just a PDF (and no body part)
This commit is contained in:
parent
1fe985cad5
commit
356a23e8a9
@ -4963,6 +4963,14 @@ class Mail
|
||||
//_debug_array($_structure->getMimeId()); exit;
|
||||
}
|
||||
|
||||
// if message is just a pdf, return it to browser to display
|
||||
if ($_structure->getType() === 'application/pdf')
|
||||
{
|
||||
header('Content-Type: application/pdf');
|
||||
echo $this->getAttachment($_uid, $_partID ?? '1', 0, true, $_folder)->getContents();
|
||||
exit();
|
||||
}
|
||||
|
||||
switch($_structure->getPrimaryType())
|
||||
{
|
||||
case 'application':
|
||||
@ -6194,7 +6202,9 @@ class Mail
|
||||
// we need to set content on structure to decode transfer encoding
|
||||
$part->setContents(
|
||||
$this->getBodyPart($_uid, $part->getMimeId(), null, $_preserveSeen, $_stream, $encoding, $fetchAsBinary),
|
||||
array('encoding' => (!$fetchAsBinary&&!$encoding?'8bit':$encoding)));
|
||||
// some mailer e.g. "SAP NetWeaver 750" set not transfer-encoding for pdf --> use base64 when fetching as binary
|
||||
array('encoding' => $fetchAsBinary && $part->getType() === 'application/pdf' ? 'base64' :
|
||||
(!$fetchAsBinary&&!$encoding?'8bit':$encoding)));
|
||||
|
||||
return $part;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user