X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=script%2Fpublic-inbox-learn;h=5cd08d490bf0273bce85ce4d148bdb09035ad288;hb=d77f4a9b5fd0c381ff695749742013aa461f3e67;hp=4c10b68b994506bd4949e197028bd7caa2d8a7f1;hpb=a479b45117ed69d9311770fa39e6676d38f9cab2;p=public-inbox.git diff --git a/script/public-inbox-learn b/script/public-inbox-learn old mode 100644 new mode 100755 index 4c10b68b..5cd08d49 --- a/script/public-inbox-learn +++ b/script/public-inbox-learn @@ -9,18 +9,23 @@ use strict; use warnings; use PublicInbox::Config; use PublicInbox::InboxWritable; -use PublicInbox::MIME; +use PublicInbox::Eml; use PublicInbox::Address; use PublicInbox::Spamcheck::Spamc; +use Getopt::Long qw(:config gnu_getopt no_ignore_case auto_abbrev); +my %opt = (all => 0); +GetOptions(\%opt, 'all') or die "bad command-line args\n"; + my $train = shift or die "usage: $usage\n"; if ($train !~ /\A(?:ham|spam|rm)\z/) { die "`$train' not recognized.\nusage: $usage\n"; } +die "--all only works with `rm'\n" if $opt{all} && $train ne 'rm'; my $spamc = PublicInbox::Spamcheck::Spamc->new; my $pi_config = PublicInbox::Config->new; my $err; -my $mime = PublicInbox::MIME->new(do{ +my $mime = PublicInbox::Eml->new(do{ local $/; my $data = ; $data =~ s/\A[\r\n]*From [^\r\n]*\r?\n//s; @@ -68,12 +73,12 @@ sub remove_or_add ($$$$) { } # spam is removed from all known inboxes since it is often Bcc:-ed -if ($train eq 'spam') { +if ($train eq 'spam' || ($train eq 'rm' && $opt{all})) { $pi_config->each_inbox(sub { my ($ibx) = @_; $ibx = PublicInbox::InboxWritable->new($ibx); my $im = $ibx->importer(0); - $im->remove($mime, 'spam'); + $im->remove($mime, $train); $im->done; }); } else { @@ -97,7 +102,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}); } }