File Coverage

lib/Mail/DMARC/Report/Send/SMTP.pm
Criterion Covered Total %
statement 87 96 90.6
branch 18 40 45.0
condition 4 11 36.3
subroutine 16 17 94.1
pod 0 9 0.0
total 125 173 72.2


line stmt bran cond sub pod time code
1             package Mail::DMARC::Report::Send::SMTP;
2 11     11   897 use strict;
  11         72  
  11         343  
3 11     11   56 use warnings;
  11         32  
  11         466  
4              
5             our $VERSION = '1.20210927';
6              
7 11     11   68 use Carp;
  11         17  
  11         872  
8 11     11   5828 use English '-no_match_vars';
  11         13751  
  11         69  
9 11     11   10371 use Email::MIME;
  11         300392  
  11         437  
10             #use Mail::Sender; # something to consider
11 11     11   5903 use Sys::Hostname;
  11         12648  
  11         673  
12 11     11   132 use POSIX;
  11         26  
  11         187  
13              
14 11     11   27965 use parent 'Mail::DMARC::Base';
  11         25  
  11         93  
15              
16             sub get_domain_mx {
17 2     2 0 4 my ( $self, $domain ) = @_;
18 2         379 print "getting MX for $domain\n";
19 2         8 my $query;
20 2 50       4 eval {
21 2 50       13 $query = $self->get_resolver->send( $domain, 'MX' ) or return [];
22             } or print $@;
23              
24 2 50       42184 if ( ! $query ) {
25 0         0 print "\terror:\n\t$@";
26 0         0 return [];
27             };
28              
29 2         3 my @mx;
30 2         12 for my $rr ( $query->answer ) {
31 2 50       36 next if $rr->type ne 'MX';
32 2         33 push @mx, { pref => $rr->preference, addr => $rr->exchange };
33 2 50       124 print $rr->exchange if $self->verbose;
34             }
35 2 50       7 if ( $self->verbose ) {
36 0         0 print "found " . scalar @mx . "MX exchanges\n";
37             };
38 2         36 return \@mx;
39             }
40              
41             sub get_smtp_hosts {
42 1     1 0 8 my $self = shift;
43 1 50       4 my $email = shift or croak "missing email!";
44              
45 1         4 my ($domain) = ( split /@/, $email )[-1];
46 1         5 my @mx = map { $_->{addr} }
47 0         0 sort { $a->{pref} <=> $b->{pref} }
48 1         1 @{ $self->get_domain_mx($domain) };
  1         4  
49              
50 1         4 push @mx, $domain;
51 1 50       6 print "\tfound " . scalar @mx . " MX for $email\n" if $self->verbose;
52 1         5 return @mx;
53             }
54              
55             sub get_subject {
56 6     6 0 23 my ( $self, $agg_ref ) = @_;
57              
58              
59 6   33     27 my $rid = $$agg_ref->metadata->report_id || $self->time;
60 6         29 my $id = POSIX::strftime( "%Y.%m.%d.", localtime $self->time ) . $rid;
61 6         32 my $us = $self->config->{organization}{domain};
62 6 50       22 if ($us eq 'example.com') {
63 0         0 die "Please update mail-dmarc.ini";
64             }
65 6         26 my $pol_dom = $$agg_ref->policy_published->domain;
66 6         55 return "Report Domain: $pol_dom Submitter: $us Report-ID:$id";
67             }
68              
69             sub human_summary {
70 6     6 0 16 my ( $self, $agg_ref ) = @_;
71              
72 6         9 my $records = scalar @{ $$agg_ref->{record} };
  6         17  
73 6         30 my $OrgName = $self->config->{organization}{org_name};
74             my $pass = grep { 'pass' eq $_->{row}{policy_evaluated}{dkim}
75 10 50       67 || 'pass' eq $_->{row}{policy_evaluated}{spf} }
76 6         14 @{ $$agg_ref->{record} };
  6         22  
77             my $fail = grep { 'pass' ne $_->{row}{policy_evaluated}{dkim}
78 10 50       53 && 'pass' ne $_->{row}{policy_evaluated}{spf} }
79 6         12 @{ $$agg_ref->{record} };
  6         17  
80 6   50     26 my $ver = $Mail::DMARC::Base::VERSION || ''; # undef in author environ
81 6 50       21 my $from = $$agg_ref->{policy_published}{domain} or croak;
82              
83             return <<"EO_REPORT"
84              
85             This is a DMARC aggregate report for $from
86              
87             $records records.
88             $pass passed.
89             $fail failed.
90              
91             Submitted by $OrgName
92             Generated with Mail::DMARC $ver
93              
94             EO_REPORT
95 6         84 ;
96             }
97              
98             sub get_filename {
99 6     6 0 16 my ( $self, $agg_ref ) = @_;
100              
101             # 2013 DMARC Draft, 12.2.1 Email
102             #
103             # filename = receiver "!" policy-domain "!" begin-timestamp "!"
104             # end-timestamp [ "!" unique-id ] "." extension
105             # filename="mail.receiver.example!example.com!1013662812!1013749130.gz"
106             return join( '!',
107             $self->config->{organization}{domain},
108 6   33     33 $$agg_ref->policy_published->domain,
109             $$agg_ref->metadata->begin,
110             $$agg_ref->metadata->end,
111             $$agg_ref->metadata->report_id || $self->time,
112             ) . '.xml';
113             }
114              
115             sub assemble_too_big_message_object {
116 0     0 0 0 my ( $self, $to, $body ) = @_;
117              
118 0 0       0 my @parts = Email::MIME->create(
119             attributes => {
120             content_type => "text/plain",
121             disposition => "inline",
122             charset => "US-ASCII",
123             },
124             body => $body,
125             ) or croak "unable to add body!";
126              
127             my $email = Email::MIME->create(
128             header_str => [
129             From => $self->config->{organization}{email},
130 0 0       0 To => $to,
131             Date => $self->get_timestamp_rfc2822,
132             Subject => 'DMARC too big report',
133             ],
134             parts => [@parts],
135             ) or croak "unable to assemble message\n";
136              
137 0         0 return $email;
138             }
139              
140             sub assemble_message_object {
141 5     5 0 19 my ( $self, $agg_ref, $to, $shrunk ) = @_;
142              
143 5         20 my $filename = $self->get_filename($agg_ref);
144             # WARNING: changes made here MAY affect Send::compress. Check it!
145             # my $cf = ( time > 1372662000 ) ? 'gzip' : 'zip'; # gz after 7/1/13
146 5         14 my $cf = 'gzip';
147 5 50       25 $filename .= $cf eq 'gzip' ? '.gz' : '.zip';
148              
149 5 50       39 my @parts = Email::MIME->create(
150             attributes => {
151             content_type => "text/plain",
152             disposition => "inline",
153             charset => "US-ASCII",
154             },
155             body => $self->human_summary( $agg_ref ),
156             ) or croak "unable to add body!";
157              
158 5 50       18551 push @parts,
159             Email::MIME->create(
160             attributes => {
161             filename => $filename,
162             content_type => "application/$cf",
163             encoding => "base64",
164             name => $filename,
165             },
166             body => $shrunk,
167             ) or croak "unable to add report!";
168              
169             my $email = Email::MIME->create(
170             header_str => [
171             From => $self->config->{organization}{email},
172 5 50       9586 To => $to,
173             Date => $self->get_timestamp_rfc2822,
174             Subject => $self->get_subject( $agg_ref ),
175             ],
176             parts => [@parts],
177             ) or croak "unable to assemble message\n";
178              
179 5         30483 return $email;
180             }
181              
182             sub get_timestamp_rfc2822 {
183 7     7 0 25 my ($self, @args) = @_;
184 7 50       80 my @ts = scalar @args ? @args : localtime $self->time;
185 7         68 my $locale = setlocale(LC_CTYPE);
186 7         108 setlocale(LC_ALL, 'C');
187 7         252 my $timestamp = POSIX::strftime( '%a, %d %b %Y %H:%M:%S %z', @ts );
188 7         78 setlocale(LC_ALL, $locale);
189 7         46 return $timestamp;
190             }
191              
192             sub get_helo_hostname {
193 1     1 0 3 my $self = shift;
194 1         6 my $host = $self->config->{smtp}{hostname};
195 1 50 33     9 return $host if $host && $host ne 'mail.example.com';
196 1         7 return Sys::Hostname::hostname;
197             };
198              
199             1;
200              
201             __END__