This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.26/Mail/SPF_XS.pm is in libmail-spf-xs-perl 1.2.10-7build2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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;