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 /
SPF /
Delete
Unzip
Name
Size
Permission
Date
Action
Mech
[ DIR ]
drwxr-xr-x
2025-02-25 04:07
Mod
[ DIR ]
drwxr-xr-x
2025-02-25 04:07
v1
[ DIR ]
drwxr-xr-x
2025-02-25 04:07
v2
[ DIR ]
drwxr-xr-x
2025-02-25 04:07
Base.pm
3.34
KB
-rw-r--r--
2022-02-16 08:24
Exception.pm
5.35
KB
-rw-r--r--
2022-02-16 08:24
MacroString.pm
13.84
KB
-rw-r--r--
2022-02-16 08:24
Mech.pm
12.83
KB
-rw-r--r--
2022-02-16 08:24
Mod.pm
9.94
KB
-rw-r--r--
2022-02-16 08:24
Record.pm
12.08
KB
-rw-r--r--
2022-02-16 08:24
Request.pm
14.57
KB
-rw-r--r--
2022-02-16 08:24
Result.pm
17.04
KB
-rw-r--r--
2022-02-16 08:24
SenderIPAddrMech.pm
1.94
KB
-rw-r--r--
2022-02-16 08:24
Server.pm
24.43
KB
-rw-r--r--
2022-02-16 08:24
Term.pm
8.85
KB
-rw-r--r--
2022-02-16 08:24
Util.pm
12.05
KB
-rw-r--r--
2022-02-16 08:24
Save
Rename
# # Mail::SPF::SenderIPAddrMech # Abstract base class for SPF record mechanisms that operate on the SMTP # sender's IP address. # # (C) 2005-2012 Julian Mehnle <julian@mehnle.net> # $Id: SenderIPAddrMech.pm 57 2012-01-30 08:15:31Z julian $ # ############################################################################## package Mail::SPF::SenderIPAddrMech; =head1 NAME Mail::SPF::SenderIPAddrMech - Abstract base class for SPF record mechanisms that operate on the SMTP sender's IP address =cut use warnings; use strict; use base 'Mail::SPF::Mech'; use constant TRUE => (0 == 0); use constant FALSE => not TRUE; use constant explanation_templates_by_result_code => { %{__PACKAGE__->SUPER::explanation_templates_by_result_code}, pass => "%{c} is authorized to use '%{s}' in '%{_scope}' identity", fail => "%{c} is not authorized to use '%{s}' in '%{_scope}' identity", softfail => "%{c} is not authorized to use '%{s}' in '%{_scope}' identity, however domain is not currently prepared for false failures", neutral => "Domain does not state whether %{c} is authorized to use '%{s}' in '%{_scope}' identity" }; =head1 DESCRIPTION B<Mail::SPF::SenderIPAddrMech> is an abstract base class for SPF record mechanisms that operate on the SMTP sender's IP address. It cannot be instantiated directly. Create an instance of a concrete sub-class instead. =head2 Constructors See L<Mail::SPF::Mech/Constructors>. =head2 Class methods See L<Mail::SPF::Mech/Class methods>. =head2 Instance methods See L<Mail::SPF::Mech/Instance methods>. =head1 SEE ALSO L<Mail::SPF>, L<Mail::SPF::Record>, L<Mail::SPF::Mech> L<Mail::SPF::Mech::IP4>, L<Mail::SPF::Mech::IP6>, L<Mail::SPF::Mech::A>, L<Mail::SPF::Mech::MX>, L<Mail::SPF::Mech::PTR> L<http://tools.ietf.org/html/rfc4408> For availability, support, and license information, see the README file included with Mail::SPF. =head1 AUTHORS Julian Mehnle <julian@mehnle.net> =cut TRUE;