2 # Copyright (C) 2013-2018 all contributors <meta@public-inbox.org>
3 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
5 # Mail delivery agent for public-inbox, run from your MTA upon mail delivery
8 my $usage = 'public-inbox-mda < rfc2822_message';
13 $emm = $ems = undef; # trigger DESTROY
19 use Email::MIME::ContentType;
20 $Email::MIME::ContentType::STRICT_PARAMS = 0; # user input is imperfect
22 use PublicInbox::Config;
23 use PublicInbox::Import;
25 use PublicInbox::Emergency;
26 use PublicInbox::Filter::Base;
27 use PublicInbox::Spamcheck::Spamc;
29 # n.b: hopefully we can setup the emergency path without bailing due to
30 # user error, we really want to setup the emergency destination ASAP
31 # in case there's bugs in our code or user error.
32 my $emergency = $ENV{PI_EMERGENCY} || "$ENV{HOME}/.public-inbox/emergency/";
33 $ems = PublicInbox::Emergency->new($emergency);
34 my $str = eval { local $/; <STDIN> };
35 $str =~ s/\A[\r\n]*From [^\r\n]*\r?\n//s;
37 my $simple = Email::Simple->new(\$str);
38 my $config = PublicInbox::Config->new;
40 my $recipient = $ENV{ORIGINAL_RECIPIENT};
41 defined $recipient or die "ORIGINAL_RECIPIENT not defined in ENV\n";
42 my $dst = $config->lookup($recipient); # first check
43 defined $dst or do_exit(1);
44 my $main_repo = $dst->{mainrepo} or do_exit(1);
46 # pre-check, MDA has stricter rules than an importer might;
47 do_exit(0) unless PublicInbox::MDA->precheck($simple, $dst->{address});
48 my $spamc = PublicInbox::Spamcheck::Spamc->new;
50 my $spam_ok = $spamc->spamcheck($ems->fh, \$str);
52 $emm = PublicInbox::Emergency->new($emergency);
55 my $mime = PublicInbox::MIME->new(\$str);
57 do_exit(0) unless $spam_ok;
59 my $fcfg = $dst->{filter} || '';
65 } elsif ($fcfg eq 'scrub') { # TODO:
66 require PublicInbox::Filter::Mirror;
67 $filter = PublicInbox::Filter::Mirror->new;
69 $filter = PublicInbox::Filter::Base->new;
72 my $ret = $filter->delivery($mime);
73 if (ref($ret) && $ret->isa('Email::MIME')) { # filter altered message
75 } elsif ($ret == PublicInbox::Filter::Base::IGNORE) {
76 do_exit(0); # chuck it to emergency
77 } elsif ($ret == PublicInbox::Filter::Base::REJECT) {
79 die $filter->err, "\n";
82 PublicInbox::MDA->set_list_headers($mime, $dst);
83 my $git = PublicInbox::Git->new($main_repo);
84 my $im = PublicInbox::Import->new($git, $dst->{name}, $recipient);
85 if (defined $im->add($mime)) {
88 # this message is similar to what ssoma-mda shows:
89 print STDERR "CONFLICT: Message-ID: ",
90 $mime->header_obj->header_raw('Message-ID'),