From: Eric Wong Date: Tue, 26 May 2020 09:05:23 +0000 (+0000) Subject: learn: fix buggy typo on List-ID mapping X-Git-Tag: v1.6.0~486 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=e97f478cd6ace58cbbe6287106f45f7809f5e8b1 learn: fix buggy typo on List-ID mapping There is obviously a typo here, so fix it and add a test case to guard against future regressions. Fixes: 74a3206babe0572a ("mda: support multiple List-ID matches") --- diff --git a/script/public-inbox-learn b/script/public-inbox-learn index a33d813a..0cb2c8e9 100644 --- a/script/public-inbox-learn +++ b/script/public-inbox-learn @@ -97,7 +97,7 @@ if ($train eq 'spam') { } my $dests = PublicInbox::MDA->inboxes_for_list_id($pi_config, $mime); for my $ibx (@$dests) { - next if !$seen{"$ibx"}++; + next if $seen{"$ibx"}++; remove_or_add($ibx, $train, $mime, $ibx->{-primary_address}); } } diff --git a/t/mda.t b/t/mda.t index 759c0b02..c7caf3e0 100644 --- a/t/mda.t +++ b/t/mda.t @@ -299,9 +299,17 @@ EOF ok(run_script(['-mda'], undef, $rdr), 'mda OK with multiple List-Id matches'); $cur = $git->qx(qw(diff HEAD~1..HEAD)); - like($cur, qr/Message-ID: <2lids\@example>/, + like($cur, qr/^\+Message-ID: <2lids\@example>/sm, 'multi List-ID match delivered'); like($err, qr/multiple List-ID/, 'warned about multiple List-ID'); + + # ensure -learn rm works after inbox address is updated + ($out, $err) = ('', ''); + xsys(qw(git config --file), $pi_config, "$cfgpfx.address", + 'updated-address@example.com'); + ok(run_script(['-learn', 'rm'], undef, $rdr), 'rm-ed via -learn'); + $cur = $git->qx(qw(diff HEAD~1..HEAD)); + like($cur, qr/^-Message-ID: <2lids\@example>/sm, 'changed in git'); } done_testing();