Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
Mail /
Message /
Convert /
[ HOME SHELL ]
Name
Size
Permission
Action
EmailSimple.pm
1.16
KB
-rw-r--r--
EmailSimple.pod
4.92
KB
-rw-r--r--
Html.pm
4.12
KB
-rw-r--r--
Html.pod
6.5
KB
-rw-r--r--
HtmlFormatPS.pm
1.25
KB
-rw-r--r--
HtmlFormatPS.pod
4.2
KB
-rw-r--r--
HtmlFormatText.pm
1.32
KB
-rw-r--r--
HtmlFormatText.pod
4.53
KB
-rw-r--r--
MailInternet.pm
2.07
KB
-rw-r--r--
MailInternet.pod
4.79
KB
-rw-r--r--
MimeEntity.pm
1.22
KB
-rw-r--r--
MimeEntity.pod
5.2
KB
-rw-r--r--
TextAutoformat.pm
1.02
KB
-rw-r--r--
TextAutoformat.pod
4.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : HtmlFormatText.pm
# Copyrights 2001-2022 by [Mark Overmeer <markov@cpan.org>]. # For other contributors see ChangeLog. # See the manual pages for details on the licensing terms. # Pod stripped from pm file by OODoc 2.03. # This code is part of distribution Mail-Message. Meta-POD processed with # OODoc into POD and HTML manual-pages. See README.md # Copyright Mark Overmeer. Licensed under the same terms as Perl itself. package Mail::Message::Convert::HtmlFormatText; use vars '$VERSION'; $VERSION = '3.012'; use base 'Mail::Message::Convert'; use strict; use warnings; use Mail::Message::Body::String; use HTML::TreeBuilder; use HTML::FormatText; sub init($) { my ($self, $args) = @_; $self->SUPER::init($args); $self->{MMCH_formatter} = HTML::FormatText->new ( leftmargin => $args->{leftmargin} // 3, , rightmargin => $args->{rightmargin} // 72, ); $self; } #------------------------------------------ sub format($) { my ($self, $body) = @_; my $dec = $body->encode(transfer_encoding => 'none'); my $tree = HTML::TreeBuilder->new_from_file($dec->file); (ref $body)->new ( based_on => $body , mime_type => 'text/plain' , charset => 'iso-8859-1' , data => [ $self->{MMCH_formatter}->format($tree) ] ); } #------------------------------------------ 1;
Close