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 2006/05/01 23:19:41 UTC

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

Author: jm
Date: Mon May  1 14:19:38 2006
New Revision: 398692

URL: http://svn.apache.org/viewcvs?rev=398692&view=rev
Log:
remove obsolete code

Modified:
    spamassassin/trunk/build/mkupdates/listpromotable

Modified: spamassassin/trunk/build/mkupdates/listpromotable
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/build/mkupdates/listpromotable?rev=398692&r1=398691&r2=398692&view=diff
==============================================================================
--- spamassassin/trunk/build/mkupdates/listpromotable (original)
+++ spamassassin/trunk/build/mkupdates/listpromotable Mon May  1 14:19:38 2006
@@ -150,7 +150,7 @@
   # now that it's ok to have sandbox rules without a T_ prefix,
   # "T_" prefix implies "tflags nopublish"
   next if ($name =~ /^T_/);
-
+  
   # ignore rules that don't exist (if they have a desc or score,
   # they exist according to the Conf parser)
   next unless ($mailsa->{conf}->{descriptions}->{$name}
@@ -202,18 +202,4 @@
 
   print "\n# $notes\n$name\n";
 }
-
-
-## # now write that to a tmp file so 'mkrules' can use it
-## my $tmp = new File::Temp( UNLINK => 1, SUFFIX => '.pl' );
-## print $tmp $dump;
-## 
-## my $perl = $^X;
-## if (!$perl) {
-## die "no perl path found in ARGV!";
-## }
-## 
-## # and exec that script
-## exec $perl, "build/mkrules", "--listpromotable=$tmp";
-## die "exec failed";