| Server IP : 170.10.161.225 / Your IP : 216.73.216.78 Web Server : Apache System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : calvet ( 273824) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : ON Directory : /lib64/perl5/vendor_perl/Mail/ |
Upload File : |
package Mail::SPF_XS; use strict; use warnings; use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS); use Exporter; require DynaLoader; $VERSION = "0.01"; @ISA = qw(DynaLoader Exporter); @EXPORT_OK = (); %EXPORT_TAGS = ( all => \@EXPORT_OK, ); bootstrap Mail::SPF_XS; =head1 NAME Mail::SPF_XS - An XS implementation of Mail::SPF =head1 DESCRIPTION This is an interface to the C library libspf2 for the purpose of testing. While it can be used as an SPF implementation, you can also use L<Mail::SPF>, available from CPAN, which is a little more perlish. =head1 SUPPORT Mail the author at <cpan@anarres.org> =head1 AUTHOR Shevek CPAN ID: SHEVEK cpan@anarres.org http://www.anarres.org/projects/ =head1 COPYRIGHT Copyright (c) 2008 Shevek. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO Mail::SPF, Mail::SRS, perl(1). =cut 1;