]> Sergey Matveev's repositories - public-inbox.git/commitdiff
learn: support for v2 repos
authorEric Wong <e@80x24.org>
Wed, 16 May 2018 05:33:32 +0000 (05:33 +0000)
committerEric Wong <e@80x24.org>
Thu, 17 May 2018 02:52:35 +0000 (02:52 +0000)
Oops, I mainly rely on public-inbox-watch for spam training
and completely forgot this tool existed :x

script/public-inbox-learn

index c51f95856a137d7f0f4dac7c855e3cf741a732cd..74534705580d8976731d500d23ee1f03266d936b 100755 (executable)
@@ -8,8 +8,7 @@ my $usage = "$0 (spam|ham) < /path/to/message";
 use strict;
 use warnings;
 use PublicInbox::Config;
-use PublicInbox::Git;
-use PublicInbox::Import;
+use PublicInbox::InboxWritable;
 use PublicInbox::MIME;
 use PublicInbox::Address;
 use PublicInbox::Spamcheck::Spamc;
@@ -52,10 +51,8 @@ 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);
+               $ibx = PublicInbox::InboxWritable->new($ibx);
+               my $im = $ibx->importer(0);
                $im->remove($mime, 'spam');
                $im->done;
        });
@@ -66,13 +63,12 @@ require PublicInbox::MDA if $train eq "ham";
 # n.b. message may be cross-posted to multiple public-inboxes
 foreach my $recipient (keys %dests) {
        my $dst = $pi_config->lookup($recipient) or next;
-       my $git_dir = $dst->{mainrepo} or next;
-       my $git = PublicInbox::Git->new($git_dir);
        # We do not touch GIT_COMMITTER_* env here so we can track
        # who trained the message.
-       my $name = $ENV{GIT_COMMITTER_NAME} || $dst->{name};
-       my $email = $ENV{GIT_COMMITTER_EMAIL} || $recipient;
-       my $im = PublicInbox::Import->new($git, $name, $email);
+       $dst->{name} = $ENV{GIT_COMMITTER_NAME} || $dst->{name};
+       $dst->{-primary_address} = $ENV{GIT_COMMITTER_EMAIL} || $recipient;
+       $dst = PublicInbox::InboxWritable->new($dst);
+       my $im = $dst->importer(0);
 
        if ($train eq "spam" || $train eq "rm") {
                # This needs to be idempotent, as my inotify trainer