]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/Import.pm
Import: Don't copy nulls from emails into git
[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         # Mime decoding can create nulls replace them with spaces to protect git
409         $subject =~ tr/\0/ /;
410         utf8::encode($subject);
411         print $w "commit $ref\nmark :$commit\n",
412                 "author $name <$email> $author_time_raw\n",
413                 "committer $self->{ident} $commit_time_raw\n" or wfail;
414         print $w "data ", (length($subject) + 1), "\n",
415                 $subject, "\n\n" or wfail;
416         if ($tip ne '') {
417                 print $w 'from ', ($parent ? $parent : $tip), "\n" or wfail;
418         }
419         clean_tree_v2($self, $w, $path);
420         print $w "M 100644 :$blob $path\n\n" or wfail;
421         $self->{nchg}++;
422         $self->{tip} = ":$commit";
423 }
424
425 sub run_die ($;$$) {
426         my ($cmd, $env, $rdr) = @_;
427         my $pid = spawn($cmd, $env, $rdr);
428         defined $pid or die "spawning ".join(' ', @$cmd)." failed: $!";
429         waitpid($pid, 0) == $pid or die join(' ', @$cmd) .' did not finish';
430         $? == 0 or die join(' ', @$cmd) . " failed: $?\n";
431 }
432
433 sub done {
434         my ($self) = @_;
435         my $w = delete $self->{out} or return;
436         my $r = delete $self->{in} or die 'BUG: missing {in} when done';
437         print $w "done\n" or wfail;
438         my $pid = delete $self->{pid} or die 'BUG: missing {pid} when done';
439         waitpid($pid, 0) == $pid or die 'fast-import did not finish';
440         $? == 0 or die "fast-import failed: $?";
441
442         _update_git_info($self, 1) if delete $self->{nchg};
443
444         $self->lock_release;
445
446         $self->{git}->cleanup;
447 }
448
449 sub atfork_child {
450         my ($self) = @_;
451         foreach my $f (qw(in out)) {
452                 close $self->{$f} or die "failed to close import[$f]: $!\n";
453         }
454 }
455
456 sub digest2mid ($$) {
457         my ($dig, $hdr) = @_;
458         my $b64 = $dig->clone->b64digest;
459         # Make our own URLs nicer:
460         # See "Base 64 Encoding with URL and Filename Safe Alphabet" in RFC4648
461         $b64 =~ tr!+/=!-_!d;
462
463         # Add a date prefix to prevent a leading '-' in case that trips
464         # up some tools (e.g. if a Message-ID were a expected as a
465         # command-line arg)
466         my $dt = msg_datestamp($hdr);
467         $dt = POSIX::strftime('%Y%m%d%H%M%S', gmtime($dt));
468         "$dt.$b64" . '@z';
469 }
470
471 sub clean_purge_buffer {
472         my ($oids, $buf) = @_;
473         my $cmt_msg = 'purged '.join(' ',@$oids)."\n";
474         @$oids = ();
475
476         foreach my $i (0..$#$buf) {
477                 my $l = $buf->[$i];
478                 if ($l =~ /^author .* (\d+ [\+-]?\d+)$/) {
479                         $buf->[$i] = "author <> $1\n";
480                 } elsif ($l =~ /^data (\d+)/) {
481                         $buf->[$i++] = "data " . length($cmt_msg) . "\n";
482                         $buf->[$i] = $cmt_msg;
483                         last;
484                 }
485         }
486 }
487
488 sub purge_oids {
489         my ($self, $purge) = @_;
490         my $tmp = "refs/heads/purge-".((keys %$purge)[0]);
491         my $old = $self->{'ref'};
492         my $git = $self->{git};
493         my @export = (qw(fast-export --no-data --use-done-feature), $old);
494         my ($rd, $pid) = $git->popen(@export);
495         my ($r, $w) = $self->gfi_start;
496         my @buf;
497         my $npurge = 0;
498         my @oids;
499         my ($done, $mark);
500         my $tree = $self->{-tree};
501         while (<$rd>) {
502                 if (/^reset (?:.+)/) {
503                         push @buf, "reset $tmp\n";
504                 } elsif (/^commit (?:.+)/) {
505                         if (@buf) {
506                                 $w->print(@buf) or wfail;
507                                 @buf = ();
508                         }
509                         push @buf, "commit $tmp\n";
510                 } elsif (/^data (\d+)/) {
511                         # only commit message, so $len is small:
512                         my $len = $1; # + 1 for trailing "\n"
513                         push @buf, $_;
514                         my $n = read($rd, my $buf, $len) or die "read: $!";
515                         $len == $n or die "short read ($n < $len)";
516                         push @buf, $buf;
517                 } elsif (/^M 100644 ([a-f0-9]+) (\w+)/) {
518                         my ($oid, $path) = ($1, $2);
519                         if ($purge->{$oid}) {
520                                 push @oids, $oid;
521                                 delete $tree->{$path};
522                         } else {
523                                 $tree->{$path} = 1;
524                                 push @buf, $_;
525                         }
526                 } elsif (/^D (\w+)/) {
527                         my $path = $1;
528                         push @buf, $_ if $tree->{$path};
529                 } elsif ($_ eq "\n") {
530                         if (@oids) {
531                                 my $out = join('', @buf);
532                                 $out =~ s/^/# /sgm;
533                                 warn "purge rewriting\n", $out, "\n";
534                                 clean_purge_buffer(\@oids, \@buf);
535                                 $npurge++;
536                         }
537                         $w->print(@buf, "\n") or wfail;
538                         @buf = ();
539                 } elsif ($_ eq "done\n") {
540                         $done = 1;
541                 } elsif (/^mark :(\d+)$/) {
542                         push @buf, $_;
543                         $mark = $1;
544                 } else {
545                         push @buf, $_;
546                 }
547         }
548         if (@buf) {
549                 $w->print(@buf) or wfail;
550         }
551         die 'done\n not seen from fast-export' unless $done;
552         chomp(my $cmt = $self->get_mark(":$mark")) if $npurge;
553         $self->{nchg} = 0; # prevent _update_git_info until update-ref:
554         $self->done;
555         my @git = ('git', "--git-dir=$git->{git_dir}");
556
557         run_die([@git, qw(update-ref), $old, $tmp]) if $npurge;
558
559         run_die([@git, qw(update-ref -d), $tmp]);
560
561         return if $npurge == 0;
562
563         run_die([@git, qw(-c gc.reflogExpire=now gc --prune=all)]);
564         my $err = 0;
565         foreach my $oid (keys %$purge) {
566                 my @info = $git->check($oid);
567                 if (@info) {
568                         warn "$oid not purged\n";
569                         $err++;
570                 }
571         }
572         _update_git_info($self, 0);
573         die "Failed to purge $err object(s)\n" if $err;
574         $cmt;
575 }
576
577 1;
578 __END__
579 =pod
580
581 =head1 NAME
582
583 PublicInbox::Import - message importer for public-inbox
584
585 =head1 VERSION
586
587 version 1.0
588
589 =head1 SYNOPSYS
590
591         use Email::MIME;
592         use PublicInbox::Git;
593         use PublicInbox::Import;
594
595         chomp(my $git_dir = `git rev-parse --git-dir`);
596         $git_dir or die "GIT_DIR= must be specified\n";
597         my $git = PublicInbox::Git->new($git_dir);
598         my @committer = ('inbox', 'inbox@example.org');
599         my $im = PublicInbox::Import->new($git, @committer);
600
601         # to add a message:
602         my $message = "From: <u\@example.org>\n".
603                 "Subject: test message \n" .
604                 "Date: Thu, 01 Jan 1970 00:00:00 +0000\n" .
605                 "Message-ID: <m\@example.org>\n".
606                 "\ntest message";
607         my $parsed = Email::MIME->new($message);
608         my $ret = $im->add($parsed);
609         if (!defined $ret) {
610                 warn "duplicate: ",
611                         $parsed->header_obj->header_raw('Message-ID'), "\n";
612         } else {
613                 print "imported at mark $ret\n";
614         }
615         $im->done;
616
617         # to remove a message
618         my $junk = Email::MIME->new($message);
619         my ($mark, $orig) = $im->remove($junk);
620         if ($mark eq 'MISSING') {
621                 print "not found\n";
622         } elsif ($mark eq 'MISMATCH') {
623                 print "Message exists but does not match\n\n",
624                         $orig->as_string, "\n",;
625         } else {
626                 print "removed at mark $mark\n\n",
627                         $orig->as_string, "\n";
628         }
629         $im->done;
630
631 =head1 DESCRIPTION
632
633 An importer and remover for public-inboxes which takes L<Email::MIME>
634 messages as input and stores them in a ssoma repository as
635 documented in L<https://ssoma.public-inbox.org/ssoma_repository.txt>,
636 except it does not allow duplicate Message-IDs.
637
638 It requires L<git(1)> and L<git-fast-import(1)> to be installed.
639
640 =head1 METHODS
641
642 =cut
643
644 =head2 new
645
646         my $im = PublicInbox::Import->new($git, @committer);
647
648 Initialize a new PublicInbox::Import object.
649
650 =head2 add
651
652         my $parsed = Email::MIME->new($message);
653         $im->add($parsed);
654
655 Adds a message to to the git repository.  This will acquire
656 C<$GIT_DIR/ssoma.lock> and start L<git-fast-import(1)> if necessary.
657
658 Messages added will not be visible to other processes until L</done>
659 is called, but L</remove> may be called on them.
660
661 =head2 remove
662
663         my $junk = Email::MIME->new($message);
664         my ($code, $orig) = $im->remove($junk);
665
666 Removes a message from the repository.  On success, it returns
667 a ':'-prefixed numeric code representing the git-fast-import
668 mark and the original messages as an Email::MIME object.
669 If the message could not be found, the code is "MISSING"
670 and the original message is undef.  If there is a mismatch where
671 the "Message-ID" is matched but the subject and body do not match,
672 the returned code is "MISMATCH" and the conflicting message
673 is returned as orig.
674
675 =head2 done
676
677 Finalizes the L<git-fast-import(1)> and unlocks the repository.
678 Calling this is required to finalize changes to a repository.
679
680 =head1 SEE ALSO
681
682 L<Email::MIME>
683
684 =head1 CONTACT
685
686 All feedback welcome via plain-text mail to L<mailto:meta@public-inbox.org>
687
688 The mail archives are hosted at L<https://public-inbox.org/meta/>
689
690 =head1 COPYRIGHT
691
692 Copyright (C) 2016 all contributors L<mailto:meta@public-inbox.org>
693
694 License: AGPL-3.0+ L<http://www.gnu.org/licenses/agpl-3.0.txt>
695
696 =cut