6 our $VERSION = "1.02 - 2016-06-07";
9 my $err = shift and select STDERR
;
10 say "usage: $0 file ...";
17 "help|?" => sub { usage
(0); },
18 "V|version" => sub { say $0 =~ s{.*/}{}r, " [$VERSION]"; exit 0; },
23 foreach my $fn (@ARGV) {
25 open my $fh, "<", $fn or die "$fn: $!\n";
26 my ($hdr, $body) = split m/(?<=\n)(?=\r?\n)/ => do { local $/; <$fh> }, 2;
31 my ($mid) = $hdr =~ m{^Message-Id: (.*)}mi;
32 my ($dte) = $hdr =~ m{^Date: (.*)}mi;
33 my ($irt) = $hdr =~ m{^In-Reply-To: (.*)}mi;
34 my ($ref) = $hdr =~ m{^References: (.*)}mi;
36 my $stamp = str2time
($dte) or next;
51 $stamp < $f{$p}{stamp
} and $p = $fn;
54 # All but the oldest will refer to the oldest as parent
57 my $pid = $f{$p}{msg_id
};
59 foreach my $fn (sort keys %f) {
67 unless ($f->{refs
} eq $pid) {
69 $f->{hdr
} =~ s{^(?=References:)}{References: $pid\nX-}mi;
74 $f->{hdr
} =~ s{^(?=Message-Id:)}{References: $pid\n}mi;
77 unless ($f->{irt
} eq $pid) {
79 $f->{hdr
} =~ s{^(?=In-Reply-To:)}{In-Reply-To: $pid\nX-}mi;
84 $f->{hdr
} =~ s{^(?=Message-Id:)}{In-Reply-To: $pid\n}mi;
87 $c or next; # No changes required
89 say "$f->{msg_id} => $pid";
91 open my $fh, ">", $fn or die "$fn: $!\n";
92 print $fh $f->{hdr
}, $f->{body
};
93 close $fh or die "$fn: $!\n";
100 cm-reparent.pl - fix mail threading
104 cm-reparent.pl ~/Mail/inbox/23 ~/Mail/inbox/45 ...
108 This script should be called from within Claws-Mail as an action
112 Menu name: Reparent (fix threading)
113 Command: cm-reparent.pl %F
115 Then select from the message list all files that should be re-parented
117 Then invoke the action
119 All but the oldest of those mails will be modified (if needed) to
120 reflect that the oldest mail is the parent of all other mails by
121 adding or altering the header lines C<In-Reply-To:> and C<References:>
123 Given 4 files A, B, C, and D like
126 A 123AC_12 2016-06-01 12:13:14
127 B aFFde2993 2016-06-01 13:14:15
128 C 0000_1234 2016-06-02 10:18:04
129 D foo_bar_12 2016-06-03 04:00:00
131 The new tree will be like
133 A 123AC_12 2016-06-01 12:13:14
134 +- B aFFde2993 2016-06-01 13:14:15
135 +- C 0000_1234 2016-06-02 10:18:04
136 +- D foo_bar_12 2016-06-03 04:00:00
140 A 123AC_12 2016-06-01 12:13:14
141 +- B aFFde2993 2016-06-01 13:14:15
142 +- C 0000_1234 2016-06-02 10:18:04
143 +- D foo_bar_12 2016-06-03 04:00:00
145 Existing entries of C<References:> and C<In-Reply-To:> in the header
146 of any of B, C, or D will be preserved as C<X-References:> or
147 C<X-In-Reply-To:> respectively.
151 L<Date::Parse>, L<Claws Mail|http://www.claws-mail.org>
155 H.Merijn Brand <h.m.brand@xs4all.nl>
157 =head1 COPYRIGHT AND LICENSE
159 Copyright (C) 2016-2016 H.Merijn Brand. All rights reserved.
161 This library is free software; you can redistribute and/or modify it under
162 the same terms as Perl itself.
163 See the L<Artistic license|http://dev.perl.org/licenses/artistic.html>.