]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/Import.pm
import: cat_blob drops leading 'From ' lines like Inbox
[public-inbox.git] / lib / PublicInbox / Import.pm
1 # Copyright (C) 2016-2018 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3 #
4 # git fast-import-based ssoma-mda MDA replacement
5 # This is only ever run by public-inbox-mda and public-inbox-learn,
6 # not the WWW or NNTP code which only requires read-only access.
7 package PublicInbox::Import;
8 use strict;
9 use warnings;
10 use base qw(PublicInbox::Lock);
11 use PublicInbox::Spawn qw(spawn);
12 use PublicInbox::MID qw(mids mid_mime mid2path);
13 use PublicInbox::Address;
14 use PublicInbox::MsgTime qw(msg_timestamp msg_datestamp);
15 use PublicInbox::ContentId qw(content_digest);
16 use PublicInbox::MDA;
17 use POSIX qw(strftime);
18
19 sub new {
20         my ($class, $git, $name, $email, $ibx) = @_;
21         my $ref = 'refs/heads/master';
22         if ($ibx) {
23                 $ref = $ibx->{ref_head} || 'refs/heads/master';
24                 $name ||= $ibx->{name};
25                 $email ||= $ibx->{-primary_address};
26         }
27         bless {
28                 git => $git,
29                 ident => "$name <$email>",
30                 mark => 1,
31                 ref => $ref,
32                 inbox => $ibx,
33                 path_type => '2/38', # or 'v2'
34                 lock_path => "$git->{git_dir}/ssoma.lock", # v2 changes this
35                 bytes_added => 0,
36         }, $class
37 }
38
39 # idempotent start function
40 sub gfi_start {
41         my ($self) = @_;
42
43         return ($self->{in}, $self->{out}) if $self->{pid};
44
45         my ($in_r, $in_w, $out_r, $out_w);
46         pipe($in_r, $in_w) or die "pipe failed: $!";
47         pipe($out_r, $out_w) or die "pipe failed: $!";
48         my $git = $self->{git};
49
50         $self->lock_acquire;
51
52         local $/ = "\n";
53         my $ref = $self->{ref};
54         chomp($self->{tip} = $git->qx(qw(rev-parse --revs-only), $ref));
55         if ($self->{path_type} ne '2/38' && $self->{tip}) {
56                 local $/ = "\0";
57                 my @tree = $git->qx(qw(ls-tree -r -z --name-only), $ref);
58                 chomp @tree;
59                 $self->{-tree} = { map { $_ => 1 } @tree };
60         }
61
62         my $git_dir = $git->{git_dir};
63         my @cmd = ('git', "--git-dir=$git_dir", qw(fast-import
64                         --quiet --done --date-format=raw));
65         my $rdr = { 0 => fileno($out_r), 1 => fileno($in_w) };
66         my $pid = spawn(\@cmd, undef, $rdr);
67         die "spawn fast-import failed: $!" unless defined $pid;
68         $out_w->autoflush(1);
69         $self->{in} = $in_r;
70         $self->{out} = $out_w;
71         $self->{pid} = $pid;
72         $self->{nchg} = 0;
73         binmode $out_w, ':raw' or die "binmode :raw failed: $!";
74         binmode $in_r, ':raw' or die "binmode :raw failed: $!";
75         ($in_r, $out_w);
76 }
77
78 sub wfail () { die "write to fast-import failed: $!" }
79
80 sub now_raw () { time . ' +0000' }
81
82 sub norm_body ($) {
83         my ($mime) = @_;
84         my $b = $mime->body_raw;
85         $b =~ s/(\r?\n)+\z//s;
86         $b
87 }
88
89 # only used for v1 (ssoma) inboxes
90 sub _check_path ($$$$) {
91         my ($r, $w, $tip, $path) = @_;
92         return if $tip eq '';
93         print $w "ls $tip $path\n" or wfail;
94         local $/ = "\n";
95         defined(my $info = <$r>) or die "EOF from fast-import: $!";
96         $info =~ /\Amissing / ? undef : $info;
97 }
98
99 sub _cat_blob ($$$) {
100         my ($r, $w, $oid) = @_;
101         print $w "cat-blob $oid\n" or wfail;
102         local $/ = "\n";
103         my $info = <$r>;
104         defined $info or die "EOF from fast-import / cat-blob: $!";
105         $info =~ /\A[a-f0-9]{40} blob (\d+)\n\z/ or return;
106         my $left = $1;
107         my $offset = 0;
108         my $buf = '';
109         my $n;
110         while ($left > 0) {
111                 $n = read($r, $buf, $left, $offset);
112                 defined($n) or die "read cat-blob failed: $!";
113                 $n == 0 and die 'fast-export (cat-blob) died';
114                 $left -= $n;
115                 $offset += $n;
116         }
117         $n = read($r, my $lf, 1);
118         defined($n) or die "read final byte of cat-blob failed: $!";
119         die "bad read on final byte: <$lf>" if $lf ne "\n";
120
121         # fixup some bugginess in old versions:
122         $buf =~ s/\A[\r\n]*From [^\r\n]*\r?\n//s;
123         \$buf;
124 }
125
126 sub cat_blob {
127         my ($self, $oid) = @_;
128         my ($r, $w) = $self->gfi_start;
129         _cat_blob($r, $w, $oid);
130 }
131
132 sub check_remove_v1 {
133         my ($r, $w, $tip, $path, $mime) = @_;
134
135         my $info = _check_path($r, $w, $tip, $path) or return ('MISSING',undef);
136         $info =~ m!\A100644 blob ([a-f0-9]{40})\t!s or die "not blob: $info";
137         my $oid = $1;
138         my $msg = _cat_blob($r, $w, $oid) or die "BUG: cat-blob $1 failed";
139         my $cur = PublicInbox::MIME->new($msg);
140         my $cur_s = $cur->header('Subject');
141         $cur_s = '' unless defined $cur_s;
142         my $cur_m = $mime->header('Subject');
143         $cur_m = '' unless defined $cur_m;
144         if ($cur_s ne $cur_m || norm_body($cur) ne norm_body($mime)) {
145                 return ('MISMATCH', $cur);
146         }
147         (undef, $cur);
148 }
149
150 sub checkpoint {
151         my ($self) = @_;
152         return unless $self->{pid};
153         print { $self->{out} } "checkpoint\n" or wfail;
154         undef;
155 }
156
157 sub progress {
158         my ($self, $msg) = @_;
159         return unless $self->{pid};
160         print { $self->{out} } "progress $msg\n" or wfail;
161         $self->{in}->getline eq "progress $msg\n" or die
162                 "progress $msg not received\n";
163         undef;
164 }
165
166 sub _update_git_info ($$) {
167         my ($self, $do_gc) = @_;
168         # for compatibility with existing ssoma installations
169         # we can probably remove this entirely by 2020
170         my $git_dir = $self->{git}->{git_dir};
171         my @cmd = ('git', "--git-dir=$git_dir");
172         my $index = "$git_dir/ssoma.index";
173         if (-e $index && !$ENV{FAST}) {
174                 my $env = { GIT_INDEX_FILE => $index };
175                 run_die([@cmd, qw(read-tree -m -v -i), $self->{ref}], $env);
176         }
177         run_die([@cmd, 'update-server-info'], undef);
178         ($self->{path_type} eq '2/38') and eval {
179                 require PublicInbox::SearchIdx;
180                 my $inbox = $self->{inbox} || $git_dir;
181                 my $s = PublicInbox::SearchIdx->new($inbox);
182                 $s->index_sync({ ref => $self->{ref} });
183         };
184         eval { run_die([@cmd, qw(gc --auto)], undef) } if $do_gc;
185 }
186
187 sub barrier {
188         my ($self) = @_;
189
190         # For safety, we ensure git checkpoint is complete before because
191         # the data in git is still more important than what is in Xapian
192         # in v2.  Performance may be gained by delaying the ->progress
193         # call but we lose safety
194         if ($self->{nchg}) {
195                 $self->checkpoint;
196                 $self->progress('checkpoint');
197                 _update_git_info($self, 0);
198                 $self->{nchg} = 0;
199         }
200 }
201
202 # used for v2
203 sub get_mark {
204         my ($self, $mark) = @_;
205         die "not active\n" unless $self->{pid};
206         my ($r, $w) = $self->gfi_start;
207         print $w "get-mark $mark\n" or wfail;
208         defined(my $oid = <$r>) or die "get-mark failed, need git 2.6.0+\n";
209         chomp($oid);
210         $oid;
211 }
212
213 # returns undef on non-existent
214 # ('MISMATCH', Email::MIME) on mismatch
215 # (:MARK, Email::MIME) on success
216 #
217 # v2 callers should check with Xapian before calling this as
218 # it is not idempotent.
219 sub remove {
220         my ($self, $mime, $msg) = @_; # mime = Email::MIME
221
222         my $path_type = $self->{path_type};
223         my ($path, $err, $cur, $blob);
224
225         my ($r, $w) = $self->gfi_start;
226         my $tip = $self->{tip};
227         if ($path_type eq '2/38') {
228                 $path = mid2path(v1_mid0($mime));
229                 ($err, $cur) = check_remove_v1($r, $w, $tip, $path, $mime);
230                 return ($err, $cur) if $err;
231         } else {
232                 my $sref;
233                 if (ref($mime) eq 'SCALAR') { # optimization used by V2Writable
234                         $sref = $mime;
235                 } else { # XXX should not be necessary:
236                         my $str = $mime->as_string;
237                         $sref = \$str;
238                 }
239                 my $len = length($$sref);
240                 $blob = $self->{mark}++;
241                 print $w "blob\nmark :$blob\ndata $len\n",
242                         $$sref, "\n" or wfail;
243         }
244
245         my $ref = $self->{ref};
246         my $commit = $self->{mark}++;
247         my $parent = $tip =~ /\A:/ ? $tip : undef;
248         unless ($parent) {
249                 print $w "reset $ref\n" or wfail;
250         }
251         my $ident = $self->{ident};
252         my $now = now_raw();
253         $msg ||= 'rm';
254         my $len = length($msg) + 1;
255         print $w "commit $ref\nmark :$commit\n",
256                 "author $ident $now\n",
257                 "committer $ident $now\n",
258                 "data $len\n$msg\n\n",
259                 'from ', ($parent ? $parent : $tip), "\n" or wfail;
260         if (defined $path) {
261                 print $w "D $path\n\n" or wfail;
262         } else {
263                 clean_tree_v2($self, $w, 'd');
264                 print $w "M 100644 :$blob d\n\n" or wfail;
265         }
266         $self->{nchg}++;
267         (($self->{tip} = ":$commit"), $cur);
268 }
269
270 sub git_timestamp {
271         my ($ts, $zone) = @_;
272         $ts = 0 if $ts < 0; # git uses unsigned times
273         "$ts $zone";
274 }
275
276 sub extract_author_info ($) {
277         my ($mime) = @_;
278
279         my $sender = '';
280         my $from = $mime->header('From');
281         my ($email) = PublicInbox::Address::emails($from);
282         my ($name) = PublicInbox::Address::names($from);
283         if (!defined($name) || !defined($email)) {
284                 $sender = $mime->header('Sender');
285                 if (!defined($name)) {
286                         ($name) = PublicInbox::Address::names($sender);
287                 }
288                 if (!defined($email)) {
289                         ($email) = PublicInbox::Address::emails($sender);
290                 }
291         }
292         if (defined $email) {
293                 # quiet down wide character warnings with utf8::encode
294                 utf8::encode($email);
295         } else {
296                 $email = '';
297                 warn "no email in From: $from or Sender: $sender\n";
298         }
299
300         # git gets confused with:
301         #  "'A U Thor <u@example.com>' via foo" <foo@example.com>
302         # ref:
303         # <CAD0k6qSUYANxbjjbE4jTW4EeVwOYgBD=bXkSu=akiYC_CB7Ffw@mail.gmail.com>
304         if (defined $name) {
305                 $name =~ tr/<>//d;
306                 utf8::encode($name);
307         } else {
308                 $name = '';
309                 warn "no name in From: $from or Sender: $sender\n";
310         }
311         ($name, $email);
312 }
313
314 # kill potentially confusing/misleading headers
315 sub drop_unwanted_headers ($) {
316         my ($mime) = @_;
317
318         $mime->header_set($_) for qw(bytes lines content-length status);
319         $mime->header_set($_) for @PublicInbox::MDA::BAD_HEADERS;
320 }
321
322 # used by V2Writable, too
323 sub append_mid ($$) {
324         my ($hdr, $mid0) = @_;
325         # @cur is likely empty if we need to call this sub, but it could
326         # have random unparseable crap which we'll preserve, too.
327         my @cur = $hdr->header_raw('Message-ID');
328         $hdr->header_set('Message-ID', @cur, "<$mid0>");
329 }
330
331 sub v1_mid0 ($) {
332         my ($mime) = @_;
333         my $hdr = $mime->header_obj;
334         my $mids = mids($hdr);
335
336         if (!scalar(@$mids)) { # spam often has no Message-Id
337                 my $mid0 = digest2mid(content_digest($mime), $hdr);
338                 append_mid($hdr, $mid0);
339                 return $mid0;
340         }
341         $mids->[0];
342 }
343 sub clean_tree_v2 ($$$) {
344         my ($self, $w, $keep) = @_;
345         my $tree = $self->{-tree} or return; #v2 only
346         delete $tree->{$keep};
347         foreach (keys %$tree) {
348                 print $w "D $_\n" or wfail;
349         }
350         %$tree = ($keep => 1);
351 }
352
353 # returns undef on duplicate
354 # returns the :MARK of the most recent commit
355 sub add {
356         my ($self, $mime, $check_cb) = @_; # mime = Email::MIME
357
358         my ($name, $email) = extract_author_info($mime);
359         my $hdr = $mime->header_obj;
360         my @at = msg_datestamp($hdr);
361         my @ct = msg_timestamp($hdr);
362         my $author_time_raw = git_timestamp(@at);
363         my $commit_time_raw = git_timestamp(@ct);
364         my $subject = $mime->header('Subject');
365         $subject = '(no subject)' unless defined $subject;
366         my $path_type = $self->{path_type};
367
368         my $path;
369         if ($path_type eq '2/38') {
370                 $path = mid2path(v1_mid0($mime));
371         } else { # v2 layout, one file:
372                 $path = 'm';
373         }
374
375         my ($r, $w) = $self->gfi_start;
376         my $tip = $self->{tip};
377         if ($path_type eq '2/38') {
378                 _check_path($r, $w, $tip, $path) and return;
379         }
380
381         drop_unwanted_headers($mime);
382
383         # spam check:
384         if ($check_cb) {
385                 $mime = $check_cb->($mime) or return;
386         }
387
388         my $blob = $self->{mark}++;
389         my $str = $mime->as_string;
390         my $n = length($str);
391         $self->{bytes_added} += $n;
392         print $w "blob\nmark :$blob\ndata ", $n, "\n" or wfail;
393         print $w $str, "\n" or wfail;
394
395         # v2: we need this for Xapian
396         if ($self->{want_object_info}) {
397                 my $oid = $self->get_mark(":$blob");
398                 $self->{last_object} = [ $oid, $n, \$str ];
399         }
400         my $ref = $self->{ref};
401         my $commit = $self->{mark}++;
402         my $parent = $tip =~ /\A:/ ? $tip : undef;
403
404         unless ($parent) {
405                 print $w "reset $ref\n" or wfail;
406         }
407
408         utf8::encode($subject);
409         print $w "commit $ref\nmark :$commit\n",
410                 "author $name <$email> $author_time_raw\n",
411                 "committer $self->{ident} $commit_time_raw\n" or wfail;
412         print $w "data ", (length($subject) + 1), "\n",
413                 $subject, "\n\n" or wfail;
414         if ($tip ne '') {
415                 print $w 'from ', ($parent ? $parent : $tip), "\n" or wfail;
416         }
417         clean_tree_v2($self, $w, $path);
418         print $w "M 100644 :$blob $path\n\n" or wfail;
419         $self->{nchg}++;
420         $self->{tip} = ":$commit";
421 }
422
423 sub run_die ($;$$) {
424         my ($cmd, $env, $rdr) = @_;
425         my $pid = spawn($cmd, $env, $rdr);
426         defined $pid or die "spawning ".join(' ', @$cmd)." failed: $!";
427         waitpid($pid, 0) == $pid or die join(' ', @$cmd) .' did not finish';
428         $? == 0 or die join(' ', @$cmd) . " failed: $?\n";
429 }
430
431 sub done {
432         my ($self) = @_;
433         my $w = delete $self->{out} or return;
434         my $r = delete $self->{in} or die 'BUG: missing {in} when done';
435         print $w "done\n" or wfail;
436         my $pid = delete $self->{pid} or die 'BUG: missing {pid} when done';
437         waitpid($pid, 0) == $pid or die 'fast-import did not finish';
438         $? == 0 or die "fast-import failed: $?";
439
440         _update_git_info($self, 1) if delete $self->{nchg};
441
442         $self->lock_release;
443 }
444
445 sub atfork_child {
446         my ($self) = @_;
447         foreach my $f (qw(in out)) {
448                 close $self->{$f} or die "failed to close import[$f]: $!\n";
449         }
450 }
451
452 sub digest2mid ($$) {
453         my ($dig, $hdr) = @_;
454         my $b64 = $dig->clone->b64digest;
455         # Make our own URLs nicer:
456         # See "Base 64 Encoding with URL and Filename Safe Alphabet" in RFC4648
457         $b64 =~ tr!+/=!-_!d;
458
459         # Add a date prefix to prevent a leading '-' in case that trips
460         # up some tools (e.g. if a Message-ID were a expected as a
461         # command-line arg)
462         my $dt = msg_datestamp($hdr);
463         $dt = POSIX::strftime('%Y%m%d%H%M%S', gmtime($dt));
464         "$dt.$b64" . '@z';
465 }
466
467 sub clean_purge_buffer {
468         my ($oids, $buf) = @_;
469         my $cmt_msg = 'purged '.join(' ',@$oids)."\n";
470         @$oids = ();
471
472         foreach my $i (0..$#$buf) {
473                 my $l = $buf->[$i];
474                 if ($l =~ /^author .* (\d+ [\+-]?\d+)$/) {
475                         $buf->[$i] = "author <> $1\n";
476                 } elsif ($l =~ /^data (\d+)/) {
477                         $buf->[$i++] = "data " . length($cmt_msg) . "\n";
478                         $buf->[$i] = $cmt_msg;
479                         last;
480                 }
481         }
482 }
483
484 sub purge_oids {
485         my ($self, $purge) = @_;
486         my $tmp = "refs/heads/purge-".((keys %$purge)[0]);
487         my $old = $self->{'ref'};
488         my $git = $self->{git};
489         my @export = (qw(fast-export --no-data --use-done-feature), $old);
490         my ($rd, $pid) = $git->popen(@export);
491         my ($r, $w) = $self->gfi_start;
492         my @buf;
493         my $npurge = 0;
494         my @oids;
495         my ($done, $mark);
496         my $tree = $self->{-tree};
497         while (<$rd>) {
498                 if (/^reset (?:.+)/) {
499                         push @buf, "reset $tmp\n";
500                 } elsif (/^commit (?:.+)/) {
501                         if (@buf) {
502                                 $w->print(@buf) or wfail;
503                                 @buf = ();
504                         }
505                         push @buf, "commit $tmp\n";
506                 } elsif (/^data (\d+)/) {
507                         # only commit message, so $len is small:
508                         my $len = $1; # + 1 for trailing "\n"
509                         push @buf, $_;
510                         my $n = read($rd, my $buf, $len) or die "read: $!";
511                         $len == $n or die "short read ($n < $len)";
512                         push @buf, $buf;
513                 } elsif (/^M 100644 ([a-f0-9]+) (\w+)/) {
514                         my ($oid, $path) = ($1, $2);
515                         if ($purge->{$oid}) {
516                                 push @oids, $oid;
517                                 delete $tree->{$path};
518                         } else {
519                                 $tree->{$path} = 1;
520                                 push @buf, $_;
521                         }
522                 } elsif (/^D (\w+)/) {
523                         my $path = $1;
524                         push @buf, $_ if $tree->{$path};
525                 } elsif ($_ eq "\n") {
526                         if (@oids) {
527                                 my $out = join('', @buf);
528                                 $out =~ s/^/# /sgm;
529                                 warn "purge rewriting\n", $out, "\n";
530                                 clean_purge_buffer(\@oids, \@buf);
531                                 $npurge++;
532                         }
533                         $w->print(@buf, "\n") or wfail;
534                         @buf = ();
535                 } elsif ($_ eq "done\n") {
536                         $done = 1;
537                 } elsif (/^mark :(\d+)$/) {
538                         push @buf, $_;
539                         $mark = $1;
540                 } else {
541                         push @buf, $_;
542                 }
543         }
544         if (@buf) {
545                 $w->print(@buf) or wfail;
546         }
547         die 'done\n not seen from fast-export' unless $done;
548         chomp(my $cmt = $self->get_mark(":$mark")) if $npurge;
549         $self->{nchg} = 0; # prevent _update_git_info until update-ref:
550         $self->done;
551         my @git = ('git', "--git-dir=$git->{git_dir}");
552
553         run_die([@git, qw(update-ref), $old, $tmp]) if $npurge;
554
555         run_die([@git, qw(update-ref -d), $tmp]);
556
557         return if $npurge == 0;
558
559         run_die([@git, qw(-c gc.reflogExpire=now gc --prune=all)]);
560         my $err = 0;
561         foreach my $oid (keys %$purge) {
562                 my @info = $git->check($oid);
563                 if (@info) {
564                         warn "$oid not purged\n";
565                         $err++;
566                 }
567         }
568         _update_git_info($self, 0);
569         die "Failed to purge $err object(s)\n" if $err;
570         $cmt;
571 }
572
573 1;
574 __END__
575 =pod
576
577 =head1 NAME
578
579 PublicInbox::Import - message importer for public-inbox
580
581 =head1 VERSION
582
583 version 1.0
584
585 =head1 SYNOPSYS
586
587         use Email::MIME;
588         use PublicInbox::Git;
589         use PublicInbox::Import;
590
591         chomp(my $git_dir = `git rev-parse --git-dir`);
592         $git_dir or die "GIT_DIR= must be specified\n";
593         my $git = PublicInbox::Git->new($git_dir);
594         my @committer = ('inbox', 'inbox@example.org');
595         my $im = PublicInbox::Import->new($git, @committer);
596
597         # to add a message:
598         my $message = "From: <u\@example.org>\n".
599                 "Subject: test message \n" .
600                 "Date: Thu, 01 Jan 1970 00:00:00 +0000\n" .
601                 "Message-ID: <m\@example.org>\n".
602                 "\ntest message";
603         my $parsed = Email::MIME->new($message);
604         my $ret = $im->add($parsed);
605         if (!defined $ret) {
606                 warn "duplicate: ",
607                         $parsed->header_obj->header_raw('Message-ID'), "\n";
608         } else {
609                 print "imported at mark $ret\n";
610         }
611         $im->done;
612
613         # to remove a message
614         my $junk = Email::MIME->new($message);
615         my ($mark, $orig) = $im->remove($junk);
616         if ($mark eq 'MISSING') {
617                 print "not found\n";
618         } elsif ($mark eq 'MISMATCH') {
619                 print "Message exists but does not match\n\n",
620                         $orig->as_string, "\n",;
621         } else {
622                 print "removed at mark $mark\n\n",
623                         $orig->as_string, "\n";
624         }
625         $im->done;
626
627 =head1 DESCRIPTION
628
629 An importer and remover for public-inboxes which takes L<Email::MIME>
630 messages as input and stores them in a ssoma repository as
631 documented in L<https://ssoma.public-inbox.org/ssoma_repository.txt>,
632 except it does not allow duplicate Message-IDs.
633
634 It requires L<git(1)> and L<git-fast-import(1)> to be installed.
635
636 =head1 METHODS
637
638 =cut
639
640 =head2 new
641
642         my $im = PublicInbox::Import->new($git, @committer);
643
644 Initialize a new PublicInbox::Import object.
645
646 =head2 add
647
648         my $parsed = Email::MIME->new($message);
649         $im->add($parsed);
650
651 Adds a message to to the git repository.  This will acquire
652 C<$GIT_DIR/ssoma.lock> and start L<git-fast-import(1)> if necessary.
653
654 Messages added will not be visible to other processes until L</done>
655 is called, but L</remove> may be called on them.
656
657 =head2 remove
658
659         my $junk = Email::MIME->new($message);
660         my ($code, $orig) = $im->remove($junk);
661
662 Removes a message from the repository.  On success, it returns
663 a ':'-prefixed numeric code representing the git-fast-import
664 mark and the original messages as an Email::MIME object.
665 If the message could not be found, the code is "MISSING"
666 and the original message is undef.  If there is a mismatch where
667 the "Message-ID" is matched but the subject and body do not match,
668 the returned code is "MISMATCH" and the conflicting message
669 is returned as orig.
670
671 =head2 done
672
673 Finalizes the L<git-fast-import(1)> and unlocks the repository.
674 Calling this is required to finalize changes to a repository.
675
676 =head1 SEE ALSO
677
678 L<Email::MIME>
679
680 =head1 CONTACT
681
682 All feedback welcome via plain-text mail to L<mailto:meta@public-inbox.org>
683
684 The mail archives are hosted at L<https://public-inbox.org/meta/>
685
686 =head1 COPYRIGHT
687
688 Copyright (C) 2016 all contributors L<mailto:meta@public-inbox.org>
689
690 License: AGPL-3.0+ L<http://www.gnu.org/licenses/agpl-3.0.txt>
691
692 =cut