/usr/share/perl5/Mail/MtPolicyd/Connection.pm is in mtpolicyd 2.02-3.
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::MtPolicyd::Connection;
use Moose;
our $VERSION = '2.02'; # VERSION
# ABSTRACT: base class for mtpolicyd connection modules
has 'name' => ( is => 'ro', isa => 'Str', required => 1 );
sub init {
my $self = shift;
return;
}
sub reconnect {
my $self = shift;
return;
}
sub shutdown {
my $self = shift;
return;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Mail::MtPolicyd::Connection - base class for mtpolicyd connection modules
=head1 VERSION
version 2.02
=head1 AUTHOR
Markus Benning <ich@markusbenning.de>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2014 by Markus Benning <ich@markusbenning.de>.
This is free software, licensed under:
The GNU General Public License, Version 2, June 1991
=cut
|