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

svn commit: r170112 - /spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm

Author: felicity
Date: Fri May 13 17:09:48 2005
New Revision: 170112

URL: http://svn.apache.org/viewcvs?rev=170112&view=rev
Log:
add more POD doc about get_uri_detail_list() for anchor_text ...

Modified:
    spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm

Modified: spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm
URL: http://svn.apache.org/viewcvs/spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm?rev=170112&r1=170111&r2=170112&view=diff
==============================================================================
--- spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm (original)
+++ spamassassin/trunk/lib/Mail/SpamAssassin/PerMsgStatus.pm Fri May 13 17:09:48 2005
@@ -1899,15 +1899,22 @@
 
   raw_uri => {
     types => { a => 1, img => 1, parsed => 1 },
-    cleaned => ( canonified_uri )
+    cleaned => [ canonified_uri ],
+    anchor_text => [ "click here", "no click here" ],
   }
 
 C<raw_uri> is whatever the URI was in the message itself
-(http://spamassassin.apache%2Eorg/).  C<types> is a hash of the HTML
-tags (lowercase) which referenced the raw_uri.  I<parsed> is a faked
-type which specifies that the raw_uri was seen in the rendered text.
+(http://spamassassin.apache%2Eorg/).
+
+C<types> is a hash of the HTML tags (lowercase) which referenced
+the raw_uri.  I<parsed> is a faked type which specifies that the
+raw_uri was seen in the rendered text.
+
 C<cleaned> is an array of the raw and canonified version of the raw_uri
 (http://spamassassin.apache%2Eorg/, http://spamassassin.apache.org/).
+
+C<anchor_text> is an array of the anchor text (text between <a> and
+</a>), if any, which linked to the URI.
 
 =cut