From 1f89e15a29cd63335f40902f1de7944e2efe91fa Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 12 May 2016 09:06:28 +0000 Subject: import: normalize body by stripping trailing newlines Mbox formatters may add extra newlines at the end of the message, and that's not relevant for comparing messages for deletion. --- lib/PublicInbox/Import.pm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/PublicInbox/Import.pm b/lib/PublicInbox/Import.pm index 5a3c5851..1f52a0cc 100644 --- a/lib/PublicInbox/Import.pm +++ b/lib/PublicInbox/Import.pm @@ -65,6 +65,13 @@ sub now2822 () { $day, $t[3], $mon, $t[5] + 1900, $t[2], $t[1], $t[0]); } +sub norm_body ($) { + my ($mime) = @_; + my $b = $mime->body_raw; + $b =~ s/(\r?\n)+\z//s; + $b +} + # returns undef on non-existent # ('MISMATCH', msg) on mismatch # (:MARK, msg) on success @@ -106,7 +113,7 @@ sub remove { die "bad read on final byte: <$lf>" if $lf ne "\n"; my $cur = Email::MIME->new($buf); if ($cur->header('Subject') ne $mime->header('Subject') || - $cur->body ne $mime->body) { + norm_body($cur) ne norm_body($mime)) { return ('MISMATCH', $cur); } -- cgit v1.2.3-24-ge0c7