]> Sergey Matveev's repositories - public-inbox.git/blobdiff - public-inbox-mda
view: pre-anchor entries for flat view
[public-inbox.git] / public-inbox-mda
index 4348cb244510113a2cb40d0ca8e5eac0e9be13cb..b1f33af5902195d34cd43c04d03d4039bfc9bbd5 100755 (executable)
@@ -47,6 +47,11 @@ if (PublicInbox::MDA->precheck($filter, $dst->{address}) &&
 
                        my ($name, $email, $date) =
                                        PublicInbox::MDA->author_info($msg);
+
+                       END {
+                               search_index_sync($main_repo) if ($? == 0);
+                       };
+
                        local $ENV{GIT_AUTHOR_NAME} = $name;
                        local $ENV{GIT_AUTHOR_EMAIL} = $email;
                        local $ENV{GIT_AUTHOR_DATE} = $date;
@@ -59,7 +64,7 @@ if (PublicInbox::MDA->precheck($filter, $dst->{address}) &&
 } else {
        # Ensure emergency spam gets spamassassin headers.
        # This makes it easier to prioritize obvious spam from less obvious
-       if (defined($filtered) && length($filtered)) {
+       if (defined($filtered) && $filtered ne '') {
                my $drop = Email::MIME->new(\$filtered);
                $filtered = undef;
                $filter->simple($drop);
@@ -77,5 +82,13 @@ sub do_spamc {
                run([qw/spamc -E --headers/], \$orig, $out);
        };
 
-       return ($@ || $? || !defined($$out) || length($$out) == 0) ? 0 : 1;
+       return ($@ || $? || !defined($$out) || $$out eq '') ? 0 : 1;
+}
+
+sub search_index_sync {
+       my ($git_dir) = @_;
+       eval {
+               require PublicInbox::SearchIdx;
+               PublicInbox::SearchIdx->new($git_dir, 2)->index_sync;
+       };
 }