File: SPF_XS.pm

package info (click to toggle)
libspf2 1.2.10-9
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 2,708 kB
  • sloc: sh: 11,504; ansic: 11,396; makefile: 169; perl: 18
file content (53 lines) | stat: -rw-r--r-- 946 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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;