On Thu, 2011-06-16 at 08:05 -0700, raiden031 wrote: > So I'm trying to understand the spamAssassin rules, and I found a couple of > things that don't make sense about the rules I downloaded. > Everything you're puzzled about are standard Perl regular expression syntax: to understand and write SA rules you really need to know how to write regular expressions using the Perl regex rules.
They are fully described in books like "Programming Perl" by Wall, Christiansen and Orwant (pub. O'Reilly), known as "The Camel Book". Alternatively, you can find online descriptions by searching for "Perl regular expression", "Perl regex" or "pcre". There are several flavours of regular expression in use, so its important to learn about the right one. Martin