user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
* [PATCH] learn: scan all inboxes when learning spam
@ 2017-04-05  1:44 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2017-04-05  1:44 UTC (permalink / raw)
  To: meta

This matches the behavior of the -watch daemon since
6d534038285ddd760709ba76ea007f9108200097
("watch: watchspam affects all configured inboxes")
---
 script/public-inbox-learn | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/script/public-inbox-learn b/script/public-inbox-learn
index 38c8324..71aa50f 100755
--- a/script/public-inbox-learn
+++ b/script/public-inbox-learn
@@ -51,6 +51,18 @@ foreach my $h (qw(Cc To)) {
 	}
 }
 
+if ($train eq 'spam') {
+	$pi_config->each_inbox(sub {
+		my ($ibx) = @_;
+		my $git = $ibx->git;
+		my $name = $ibx->{name};
+		my $addr = $ibx->{-primary_address};
+		my $im = PublicInbox::Import->new($git, $name, $addr, $ibx);
+		$im->remove($mime);
+		$im->done;
+	});
+}
+
 require PublicInbox::MDA if $train eq "ham";
 
 # n.b. message may be cross-posted to multiple public-inboxes
-- 
EW


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-04-05  1:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-05  1:44 [PATCH] learn: scan all inboxes when learning spam Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).