Re: [SAtalk] Forged yahoo.com in recieved

2002-06-05 Thread reader
Craig R Hughes <[EMAIL PROTECTED]> writes: > There's a rule for that now in CVS. Any repeated word in all caps which is 3 or > more letter long will trigger. That particular one turned out to be problematic and is being debugged still I think. But I get the idea, none the less. __

Re: [SAtalk] Forged yahoo.com in recieved

2002-06-05 Thread reader
Craig R Hughes <[EMAIL PROTECTED]> writes: Thanks, but at the moment it seems cvs distro is having a problem or either something on my end? cd spamassassin make [...] --- t/spamd_stop.t21 50.00% 2

Re: [SAtalk] Debug output

2002-06-05 Thread reader
Craig R Hughes <[EMAIL PROTECTED]> writes: > Harry Putnam wrote: > > HP> Duncan Findlay <[EMAIL PROTECTED]> writes: > HP> > HP> [...] > HP> > HP> >> Going to the debug output, how can I find the output that pertains to > HP> >> that message? No date no msgid. > HP> >> I don't see why its being o

[SAtalk] About debug info and procmail or -D flag

2002-06-05 Thread reader
[Slaughtered Subject line ALERT: Not sure what this belongs under, it showed up on my system sort of buggered up] Bryan Hoover <[EMAIL PROTECTED]> writes: [...] >> STDOUT. If you specify -D and -d together, then spamd should >> definitely install >> a $SIG{__WARN__} handler which redirects t

Re: [SAtalk] Re: [SAdev] [Bug 390] New: Spamassassin does not use whitelist entries

2002-06-05 Thread reader
Craig R Hughes <[EMAIL PROTECTED]> writes: > BH> Just seems to me that if a program's logging, e.g., SA, is set to go to > BH> the screen, then, unless it offers some sort of config. or switch, > BH> there's no need for another program to alter its behavior - though, as > BH> you mentioned, procm

Re: [SAtalk] Cool release name for 2.30

2002-06-11 Thread reader
[EMAIL PROTECTED] writes: > or famous martial aritists > Bruce Lee, Chuck Norris, Jackie Chan, etc. How about famous "real" martial artists as against media hyped ones? Mas Oyama Gichin Funikoshi Chojun Miyagi Sensei Oneisi Claude Von Damme ... <= Wait, how'd he get on this list... hehe. _

[SAtalk] [Q perl regex] X-Spam-Status:

2002-06-12 Thread reader
I've been working on some perl scripting that grabs the rules listed at X-Spam-Status:. I used a simple regex that looks for that line and the presence of rules: if (/^X-Spam-Status:.*test=\n/ && ! /tests=(\s|[Nn]one)/) { Or really lack of rules. Then it splits them out and finds the scores b

Re: [SAtalk] Re: [Q perl regex] X-Spam-Status:

2002-06-12 Thread reader
"Derrick 'dman' Hudson" <[EMAIL PROTECTED]> writes: > Does perl have a MULTILINE mode like python's p-c implementation has? Yes, it has something similar. That is what I was asking about. ___ Sponsored by: ThinkGeek at http://www.Thi

Re: [SAtalk] [Q perl regex] X-Spam-Status:

2002-06-12 Thread reader
"Tony L. Svanstrom" <[EMAIL PROTECTED]> writes: > On Wed, 12 Jun 2002 the voices made [EMAIL PROTECTED] write: > >> My perl is very weak, so I wondered if someone could coach me a bit >> on how to id the presence of `X-Spam-Status:' line including any >> newlines that may be involved, and whether

Re: [SAtalk] [Q perl regex] X-Spam-Status:

2002-06-12 Thread reader
Good clues posters, thanks. Plenty posted here to work with. ___ Sponsored by: ThinkGeek at http://www.ThinkGeek.com/ ___ Spamassassin-talk mailing list [EMAIL PROTECTED] https://lists.source

[SAtalk] A way to view scoring in the message itself.

2002-06-14 Thread reader
need adjustment. Anyone interested can look here http://home.jtan.com/~reader/spama/ for details and download files if desired. Please feel free to comment, but be warned it is barely tried out and is very amatuerish. Suggestions

[SAtalk] [perl Q] As regards grabbing folded Header lines

2002-06-14 Thread reader
If this is OT, someone holler, it does apply to spamassassin directly but is actually more perl questions. Theo posted an answer[1] to this query already, but it largely flew over my thick skull. (Sorry Theo). See this message for the above reference[1]: From: Theo Van Dinter <[EMAIL PROTEC

Re: [SAtalk] [perl Q] As regards grabbing folded Header lines

2002-06-14 Thread reader
Bart Schaefer <[EMAIL PROTECTED]> writes: > use Mail::Header; > > foreach my $message (@files) { > open(FILE, "<$dir/$message") or next; What is the significance of the * preceding file_handle? Or is it something being handed into a function? Does it just hand each file in... > my $header =