You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2005/12/16 03:29:49 UTC

svn commit: r357107 - /spamassassin/trunk/build/listpromotable

Author: jm
Date: Thu Dec 15 18:29:46 2005
New Revision: 357107

URL: http://svn.apache.org/viewcvs?rev=357107&view=rev
Log:
add 'tflags learn' to the force-publish set

Modified:
    spamassassin/trunk/build/listpromotable

Modified: spamassassin/trunk/build/listpromotable
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/build/listpromotable?rev=357107&r1=357106&r2=357107&view=diff
==============================================================================
--- spamassassin/trunk/build/listpromotable (original)
+++ spamassassin/trunk/build/listpromotable Thu Dec 15 18:29:46 2005
@@ -117,12 +117,9 @@
   if ($tfs) {
     next if ($tfs =~ /\bnopublish\b/);
 
-    if ($tfs =~ /\bpublish\b/) {
-      $notes = "tflags publish";
-      goto publish;
-    }
-    if ($tfs =~ /\buserconf\b/) {
-      $notes = "tflags userconf";
+    # all of these tflags force publication
+    if ($tfs =~ /\b(publish|userconf|learn)\b/) {
+      $notes = "tflags ".$1;
       goto publish;
     }
   }