]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/MDA.pm
bcf5358bb6e6d7cd9e450e8f9c32c1db58f03ae1
[public-inbox.git] / lib / PublicInbox / MDA.pm
1 # Copyright (C) 2013-2015 all contributors <meta@public-inbox.org>
2 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
3 #
4 # For the -mda script (mail delivery agent)
5 package PublicInbox::MDA;
6 use strict;
7 use warnings;
8 use Email::Simple;
9 use Date::Parse qw(strptime);
10 use constant MAX_SIZE => 1024 * 500; # same as spamc default, should be tunable
11 use constant MAX_MID_SIZE => 244; # max term size - 1 in Xapian
12
13 our @BAD_HEADERS = (
14         # postfix
15         qw(delivered-to x-original-to), # prevent training loops
16
17         # The rest are taken from Mailman 2.1.15:
18         # could contain passwords:
19         qw(approved approve x-approved x-approve urgent),
20         # could be used phishing:
21         qw(return-receipt-to disposition-notification-to x-confirm-reading-to),
22         # Pegasus mail:
23         qw(x-pmrqc)
24 );
25
26 # drop plus addressing for matching
27 sub __drop_plus {
28         my ($str_addr) = @_;
29         $str_addr =~ s/\+.*\@/\@/;
30         $str_addr;
31 }
32
33 # do not allow Bcc, only Cc and To if recipient is set
34 sub precheck {
35         my ($klass, $simple, $address) = @_;
36         my @mid = $simple->header('Message-ID');
37         return 0 if scalar(@mid) != 1;
38         my $mid = $mid[0];
39         return 0 if (length($mid) > MAX_MID_SIZE);
40         return 0 unless usable_str(length('<m@h>'), $mid) && $mid =~ /\@/;
41         return 0 unless usable_str(length('u@h'), $simple->header("From"));
42         return 0 unless usable_str(length(':o'), $simple->header("Subject"));
43         return 0 unless usable_date($simple->header("Date"));
44         return 0 if length($simple->as_string) > MAX_SIZE;
45         alias_specified($simple, $address);
46 }
47
48 sub usable_str {
49         my ($len, $str) = @_;
50         defined($str) && length($str) >= $len;
51 }
52
53 sub usable_date {
54         my @t = eval { strptime(@_) };
55         scalar @t;
56 }
57
58 sub alias_specified {
59         my ($simple, $address) = @_;
60
61         my @address = ref($address) eq 'ARRAY' ? @$address : ($address);
62         my %ok = map {
63                 lc(__drop_plus($_)) => 1;
64         } @address;
65
66         foreach my $line ($simple->header('Cc'), $simple->header('To')) {
67                 my @addrs = ($line =~ /([^,<\s]+\@[^,>\s]+)/g);
68                 foreach my $addr (@addrs) {
69                         if ($ok{lc(__drop_plus($addr))}) {
70                                 return 1;
71                         }
72                 }
73         }
74         return 0;
75 }
76
77 sub set_list_headers {
78         my ($class, $simple, $dst) = @_;
79         unless (defined $simple->header('List-Id')) {
80                 my $pa = $dst->{-primary_address};
81                 $simple->header_set("List-Id", "<$pa>"); # RFC2919
82         }
83
84         $simple->header_set($_) foreach @BAD_HEADERS;
85 }
86
87 1;