You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by pd...@apache.org on 2019/06/10 09:36:54 UTC

svn commit: r1860933 - /spamassassin/trunk/build/mkupdates/listpromotable

Author: pds
Date: Mon Jun 10 09:36:53 2019
New Revision: 1860933

URL: http://svn.apache.org/viewvc?rev=1860933&view=rev
Log:
Skip net subrules as these dont need scoring

Modified:
    spamassassin/trunk/build/mkupdates/listpromotable

Modified: spamassassin/trunk/build/mkupdates/listpromotable
URL: http://svn.apache.org/viewvc/spamassassin/trunk/build/mkupdates/listpromotable?rev=1860933&r1=1860932&r2=1860933&view=diff
==============================================================================
--- spamassassin/trunk/build/mkupdates/listpromotable (original)
+++ spamassassin/trunk/build/mkupdates/listpromotable Mon Jun 10 09:36:53 2019
@@ -234,6 +234,8 @@ foreach my $netrule (sort keys %{$netlis
   my $name = $netrule;
   my $notes = '';
 
+  next if ($name =~ /^__/);
+
   my $no_t = $name;
   if ($no_t =~ s/^T_//) {
     if (defined $mailsa->{conf}->{scores}->{$no_t}) {