about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2019-06-10 18:09:27 +0000
committerEric Wong (Contractor, The Linux Foundation) <e@80x24.org>2019-06-10 18:15:40 +0000
commitd377a9d2f972f85edf759a6c152ca49078baba38 (patch)
treef83132370d608745f31b72482a379c11c8fbbc3f
parent6e507c8cb41b0d48963503a88034348d74506211 (diff)
downloadpublic-inbox-d377a9d2f972f85edf759a6c152ca49078baba38.tar.gz
mutt will set Content-Length, Lines, and Status headers
unconditionally, so we need to account for that before
doing header comparisons to avoid making expensive changes
when noop edits are made.
-rwxr-xr-xscript/public-inbox-edit6
-rw-r--r--t/edit.t18
2 files changed, 24 insertions, 0 deletions
diff --git a/script/public-inbox-edit b/script/public-inbox-edit
index 7a534cc2..16d78529 100755
--- a/script/public-inbox-edit
+++ b/script/public-inbox-edit
@@ -14,6 +14,7 @@ use PublicInbox::MID qw(mid_clean mids);
 PublicInbox::Admin::check_require('-index');
 require PublicInbox::MIME;
 require PublicInbox::InboxWritable;
+require PublicInbox::Import;
 
 my $usage = "$0 -m MESSAGE_ID [--all] [INBOX_DIRS]";
 my $opt = { verbose => 1, all => 0, -min_inbox_version => 2, raw => 0 };
@@ -197,6 +198,11 @@ W: possible message boundary splitting error
         my $new_mime = PublicInbox::MIME->new(\$new_raw);
         my $old_mime = PublicInbox::MIME->new($old_raw);
 
+        # make sure we don't compare unwanted headers, since mutt adds
+        # Content-Length, Status, and Lines headers:
+        PublicInbox::Import::drop_unwanted_headers($new_mime);
+        PublicInbox::Import::drop_unwanted_headers($old_mime);
+
         # allow changing Received: and maybe other headers which can
         # contain sensitive info.
         my $nhdr = $new_mime->header_obj;
diff --git a/t/edit.t b/t/edit.t
index 61e90f2f..6b4e35c3 100644
--- a/t/edit.t
+++ b/t/edit.t
@@ -79,6 +79,24 @@ $t = 'no-op -m MESSAGE_ID'; {
         is($after, $before, 'git head unchanged');
 }
 
+$t = 'no-op -m MESSAGE_ID w/Status: header'; { # because mutt does it
+        $in = $out = $err = '';
+        my $before = `git $__git_dir rev-parse HEAD`;
+        local $ENV{MAIL_EDITOR} =
+                        "$^X -i -p -e 's/^Subject:.*/Status: RO\\n\$&/'";
+        $cmd = [ "$cmd_pfx-edit", "-m$mid", $mainrepo ];
+        ok(run($cmd, \$in, \$out, \$err), "$t succeeds");
+        my $prev = $cur;
+        $cur = PublicInbox::MIME->new($ibx->msg_by_mid($mid));
+        is_deeply($cur, $prev, "$t makes no change");
+        like($cur->header('Subject'), qr/boolean prefix/,
+                "$t does not change message");
+        is($cur->header('Status'), undef, 'Status header not added');
+        like($out, qr/NONE/, 'noop shows NONE');
+        my $after = `git $__git_dir rev-parse HEAD`;
+        is($after, $before, 'git head unchanged');
+}
+
 $t = '-m MESSAGE_ID can change Received: headers'; {
         $in = $out = $err = '';
         my $before = `git $__git_dir rev-parse HEAD`;