about summary refs log tree commit homepage
path: root/script/public-inbox-learn
diff options
context:
space:
mode:
Diffstat (limited to 'script/public-inbox-learn')
-rw-r--r--[-rwxr-xr-x]script/public-inbox-learn8
1 files changed, 7 insertions, 1 deletions
diff --git a/script/public-inbox-learn b/script/public-inbox-learn
index 56739f88..79f3ead5 100755..100644
--- a/script/public-inbox-learn
+++ b/script/public-inbox-learn
@@ -77,7 +77,7 @@ if ($train eq 'spam') {
                 $im->done;
         });
 } else {
-        require PublicInbox::MDA if $train eq "ham";
+        require PublicInbox::MDA;
 
         # get all recipients
         my %dests; # address => <PublicInbox::Inbox|0(false)>
@@ -89,10 +89,16 @@ if ($train eq 'spam') {
         }
 
         # n.b. message may be cross-posted to multiple public-inboxes
+        my %seen;
         while (my ($addr, $ibx) = each %dests) {
                 next unless ref($ibx); # $ibx may be 0
+                next if $seen{"$ibx"}++;
                 remove_or_add($ibx, $train, $addr);
         }
+        my $ibx = PublicInbox::MDA->inbox_for_list_id($pi_config, $mime);
+        if ($ibx && !$seen{"$ibx"}) {
+                remove_or_add($ibx, $train, $ibx->{-primary_address});
+        }
 }
 
 if ($err) {