]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/MDA.pm
use raw header for Message-ID
[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 Email::Address;
10 use Date::Parse qw(strptime);
11 use constant MAX_SIZE => 1024 * 500; # same as spamc default, should be tunable
12 use constant MAX_MID_SIZE => 244; # max term size - 1 in Xapian
13 use constant cmd => qw/ssoma-mda -1/;
14
15 # drop plus addressing for matching
16 sub __drop_plus {
17         my ($str_addr) = @_;
18         $str_addr =~ s/\+.*\@/\@/;
19         $str_addr;
20 }
21
22 # do not allow Bcc, only Cc and To if recipient is set
23 sub precheck {
24         my ($klass, $filter, $address) = @_;
25         my Email::Simple $simple = $filter->simple;
26         my $mid = $simple->header("Message-ID");
27         return 0 if (length($mid) > MAX_MID_SIZE);
28         return 0 unless usable_str(length('<m@h>'), $mid) && $mid =~ /\@/;
29         return 0 unless usable_str(length('u@h'), $filter->from);
30         return 0 unless usable_str(length(':o'), $simple->header("Subject"));
31         return 0 unless usable_date($simple->header("Date"));
32         return 0 if length($simple->as_string) > MAX_SIZE;
33         alias_specified($filter, $address);
34 }
35
36 sub usable_str {
37         my ($len, $str) = @_;
38         defined($str) && length($str) >= $len;
39 }
40
41 sub usable_date {
42         my @t = eval { strptime(@_) };
43         scalar @t;
44 }
45
46 sub alias_specified {
47         my ($filter, $address) = @_;
48
49         my @address = ref($address) eq 'ARRAY' ? @$address : ($address);
50         my %ok = map {
51                 my @recip = Email::Address->parse($_);
52                 lc(__drop_plus($recip[0]->address)) => 1;
53         } @address;
54
55         foreach my $line ($filter->cc, $filter->to) {
56                 foreach my $addr (Email::Address->parse($line)) {
57                         if ($ok{lc(__drop_plus($addr->address))}) {
58                                 return 1;
59                         }
60                 }
61         }
62         return 0;
63 }
64
65 sub set_list_headers {
66         my ($class, $simple, $dst) = @_;
67         my $pa = $dst->{-primary_address};
68
69         $simple->header_set("List-Id", "<$pa>"); # RFC2919
70
71         # remove Delivered-To: prevent training loops
72         # The rest are taken from Mailman 2.1.15, some may be used for phishing
73         foreach my $h (qw(delivered-to approved approve x-approved x-approve
74                         urgent return-receipt-to disposition-notification-to
75                         x-confirm-reading-to x-pmrqc)) {
76                 $simple->header_set($h);
77         }
78 }
79
80 # returns a 3-element array: name, email, date
81 sub author_info {
82         my ($class, $mime) = @_;
83
84         my $from = $mime->header('From');
85         my @from = Email::Address->parse($from);
86         my $name = $from[0]->name;
87         my $email = $from[0]->address;
88         ($name, $email, $mime->header('Date'));
89 }
90
91 1;