line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Mail::TLSRPT; |
2
|
|
|
|
|
|
|
# ABSTRACT: TLSRPT object |
3
|
|
|
|
|
|
|
our $VERSION = '1.20200306.1'; # VERSION |
4
|
8
|
|
|
8
|
|
813065
|
use 5.20.0; |
|
8
|
|
|
|
|
36
|
|
5
|
8
|
|
|
8
|
|
4319
|
use Moo; |
|
8
|
|
|
|
|
71668
|
|
|
8
|
|
|
|
|
100
|
|
6
|
8
|
|
|
8
|
|
12411
|
use Carp; |
|
8
|
|
|
|
|
19
|
|
|
8
|
|
|
|
|
460
|
|
7
|
8
|
|
|
8
|
|
644
|
use Types::Standard qw{Str HashRef ArrayRef}; |
|
8
|
|
|
|
|
77258
|
|
|
8
|
|
|
|
|
90
|
|
8
|
8
|
|
|
8
|
|
7531
|
use Type::Utils qw{class_type}; |
|
8
|
|
|
|
|
5012
|
|
|
8
|
|
|
|
|
60
|
|
9
|
8
|
|
|
8
|
|
5035
|
use Mail::TLSRPT::Pragmas; |
|
8
|
|
|
|
|
19
|
|
|
8
|
|
|
|
|
59
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
__END__ |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=pod |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
=encoding UTF-8 |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 NAME |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
Mail::TLSRPT - TLSRPT object |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
=head1 VERSION |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
version 1.20200306.1 |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=head1 AUTHOR |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
Marc Bradshaw <marc@marcbradshaw.net> |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
This software is copyright (c) 2020 by Marc Bradshaw. |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
36
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=cut |