On Tuesday 30 April 2002 02:30 pm, Jesus Climent wrote:
> On Tue, Apr 30, 2002 at 01:58:01PM -0700, Jeff Shepherd wrote:
> > I'm not a PERL programmer and not familiar with unix expressions, but
> > to show I'm willing to do some footwork, I think I need to add
> > something like the following li
On Tue, Apr 30, 2002 at 01:58:01PM -0700, Jeff Shepherd wrote:
>
> I'm not a PERL programmer and not familiar with unix expressions, but
> to show I'm willing to do some footwork, I think I need to add
> something like the following lines to
> /usr/share/spamassassin/20_head_tests.cf
>
> hea
Perl regular expressions are a little different from DOS-style file globbing
patterns. The perl way of saying "match anything" is /.*/ not /*/ -- the "*"
means "repeat the previous thing 0 to infinity times" and the "." means "any
character". So /*/ by itself is meaningless and will actually gen
The majority of the mailing lists I'm on (such as SpamAssassin Talk)
have a List-Unsubscribe: line in the headers. How can I add a rule
that if there is a List-Unsubscribe: line in the headers, it lowers
the score?
I'm not a PERL programmer and not familiar with unix expressions, but
to show