"Fossies" - the Fresh Open Source Software Archive 
Member "libspf2-1.2.10/perl/SPF_XS.pm" (28 Jan 2012, 946 Bytes) of package /linux/privat/libspf2-1.2.10.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Perl source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "SPF_XS.pm" see the
Fossies "Dox" file reference documentation.
1 package Mail::SPF_XS;
2
3 use strict;
4 use warnings;
5 use vars qw($VERSION @ISA @EXPORT_OK %EXPORT_TAGS);
6 use Exporter;
7
8 require DynaLoader;
9
10 $VERSION = "0.01";
11 @ISA = qw(DynaLoader Exporter);
12 @EXPORT_OK = ();
13 %EXPORT_TAGS = (
14 all => \@EXPORT_OK,
15 );
16
17 bootstrap Mail::SPF_XS;
18
19 =head1 NAME
20
21 Mail::SPF_XS - An XS implementation of Mail::SPF
22
23 =head1 DESCRIPTION
24
25 This is an interface to the C library libspf2 for the purpose of
26 testing. While it can be used as an SPF implementation, you can also
27 use L<Mail::SPF>, available from CPAN, which is a little more perlish.
28
29 =head1 SUPPORT
30
31 Mail the author at <cpan@anarres.org>
32
33 =head1 AUTHOR
34
35 Shevek
36 CPAN ID: SHEVEK
37 cpan@anarres.org
38 http://www.anarres.org/projects/
39
40 =head1 COPYRIGHT
41
42 Copyright (c) 2008 Shevek. All rights reserved.
43
44 This program is free software; you can redistribute it and/or modify
45 it under the same terms as Perl itself.
46
47 =head1 SEE ALSO
48
49 Mail::SPF, Mail::SRS, perl(1).
50
51 =cut
52
53 1;