]> Sergey Matveev's repositories - public-inbox.git/blobdiff - public-inbox-mda
mda: add most RFC 2919 and 2369 headers
[public-inbox.git] / public-inbox-mda
index aabc37ebf3c4b0a2c6ba3ed090c49c775406551b..6e66fa71da63c56ccfcf3cfea5390696ae01e117 100755 (executable)
@@ -41,8 +41,23 @@ if (PublicInbox->precheck($filter, $recipient) &&
        if (PublicInbox::Filter->run($simple)) {
                # run spamc again on the HTML-free message
                if (do_spamc($simple, \$filtered)) {
-                       $filter->simple(Email::Simple->new($filtered));
-                       $filter->pipe(MDA, $main_repo);
+                       $simple = Email::Simple->new($filtered);
+                       set_list_headers($simple, $dst);
+                       $filter->simple($simple);
+
+                       my $from = $filter->from;
+                       my @from = Email::Address->parse($from);
+                       my $name = $from[0]->name;
+                       defined $name or $name = "";
+                       my $email = $from[0]->address;
+                       defined $email or $email = "";
+                       local $ENV{GIT_AUTHOR_NAME} = $name;
+                       local $ENV{GIT_AUTHOR_EMAIL} = $email;
+                       local $ENV{GIT_AUTHOR_DATE} = $simple->header("Date");
+                       local $ENV{GIT_COMMITTER_EMAIL} = $recipient;
+                       local $ENV{GIT_COMMITTER_NAME} = $dst->{listname};
+
+                       $filter->pipe(MDA, '-1', $main_repo);
                }
        }
 }
@@ -60,3 +75,17 @@ sub do_spamc {
 
        return ($@ || $? || !defined($$out) || length($$out) == 0) ? 0 : 1;
 }
+
+# RFC2919 and RFC2369
+sub set_list_headers {
+       my ($simple, $dst) = @_;
+       my $pa = "<$dst->{-primary_address}>";
+       $simple->header_set("List-Id", $pa);
+       $simple->header_set("List-Post", $pa);
+
+       my $url = $dst->{url};
+       if (defined $url) {
+               $simple->header_set("List-Archive", "<$url>");
+               $simple->header_set("List-Help", "<${url}help>");
+       }
+}