public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob c87ca1b2bb5e49ca38d47b3481f28047c61b8eed 1546 bytes (raw)
$ git show repobrowse:scripts/import_maildir	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
 
#!/usr/bin/perl -w
# Copyright (C) 2014, Eric Wong <e@80x24.org> and all contributors
# License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
#
# Script to import a Maildir into a public-inbox
=begin usage
	mkdir -p $HOME/.public-inbox
	MAINREPO=/path/to/your/repo.git
	export ORIGINAL_RECIPIENT='list@example.com'
	git init --bare $MAINREPO
	export GIT_CONFIG=$HOME/.public-inbox/config
	git config publicinbox.$INBOX.address $ORIGINAL_RECIPIENT
	git config publicinbox.$INBOX.mainrepo $MAINREPO
	unset GIT_CONFIG
	./import_maildir /path/to/maildir/
=cut
use strict;
use warnings;
use Email::Filter;
use Date::Parse qw/str2time/;
use IPC::Run qw/run/;
sub usage { "Usage:\n".join('', grep(/\t/, `head -n 24 $0`)) }
my $dir = shift @ARGV or die usage();
defined $ENV{ORIGINAL_RECIPIENT} or die usage();
my @mda = qw(public-inbox-mda);
foreach my $sub (qw(cur new tmp)) {
	-d "$dir/$sub" or die "$dir is not a Maildir (missing $sub)\n";
}

my @msgs;
foreach my $sub (qw(cur new)) {
	foreach my $fn (glob("$dir/$sub/*")) {
		open my $fh, '<', $fn or next;
		my $f = Email::Filter->new(data => eval { local $/; <$fh> });
		my $date = $f->simple->header('Date');
		my $t = eval { str2time($date) };
		$f->exit(0);
		$f->ignore;
		defined $t or next;
		my @fn = split(m!/!, $fn);
		push @msgs, [ $t, "$sub/" . pop @fn, $date ];
	}
}

@msgs = sort { $b->[0] <=> $a->[0] } @msgs;
while (my $ary = pop @msgs) {
	my $fn = "$dir/$ary->[1]";
	local $ENV{GIT_COMMITTER_DATE} = $ary->[2]; # this preserves timezone
	run(\@mda, '<', $fn);
}

1;

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git