You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by qu...@apache.org on 2005/02/22 09:46:46 UTC

svn commit: r154819 - spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/ReplaceTags.pm

Author: quinlan
Date: Tue Feb 22 00:46:41 2005
New Revision: 154819

URL: http://svn.apache.org/viewcvs?view=rev&rev=154819
Log:
add a note of warning

Modified:
    spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/ReplaceTags.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/ReplaceTags.pm
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/ReplaceTags.pm?view=diff&r1=154818&r2=154819
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/ReplaceTags.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/Plugin/ReplaceTags.pm Tue Feb 22 00:46:41 2005
@@ -22,6 +22,9 @@
 regular expression rules.  The tags make it much easier to maintain
 complicated rules.
 
+Warning: This plugin replies on data structures specific to this version of
+SpamAssasin; it is not guaranteed to work with other versions of SpamAssassin.
+
 =head1 SYNOPSIS
 
   loadplugin	Mail::SpamAssassin::Plugin::ReplaceTags
@@ -80,6 +83,7 @@
   my $start = $opts->{conf}->{replace_start};
   my $end = $opts->{conf}->{replace_end};
 
+  # this is the version-specific code
   for my $type (qw|body_tests rawbody_tests head_tests full_tests uri_tests|) {
     for my $priority (keys %{$opts->{conf}->{$type}}) {
       while (my ($rule, $re) = each %{$opts->{conf}->{$type}->{$priority}}) {