[Bug 5574] [review] new setuid code broken under perl 5.6.x and 5.8.x

2007-08-01 Thread bugzilla-daemon
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=5574 --- Additional Comments From [EMAIL PROTECTED] 2007-08-01 02:07 --- (In reply to comment #39) Created an attachment (id=4075) -- (http://issues.apache.org/SpamAssassin/attachment.cgi?id=4075action=view) [edit] fixes, with

[Bug 5574] [review] new setuid code broken under perl 5.6.x and 5.8.x

2007-08-01 Thread bugzilla-daemon
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=5574 [EMAIL PROTECTED] changed: What|Removed |Added Attachment #4062 is|0 |1 obsolete|

[Bug 5574] [review] new setuid code broken under perl 5.6.x and 5.8.x

2007-08-01 Thread bugzilla-daemon
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=5574 --- Additional Comments From [EMAIL PROTECTED] 2007-08-01 02:05 --- (In reply to comment #37) Is t/root_spamd_u_dcc.t supposed to be a test case for this bug? It isn't in any of the attachments here. Yes -- I didn't

Re: plugin hook advice?

2007-08-01 Thread Justin Mason
Dave Brondsema writes: I'm working on a plugin and need some advice for hooks. $plugin-check_post_dnsbl says This is a good place to harvest your own asynchronously-started network lookups. I'm using Mail::SpamAssassin::Plugin::Karmasphere as a reference, and it uses parsed_metadata() and

[Bug 5574] [review] new setuid code broken under perl 5.6.x and 5.8.x

2007-08-01 Thread bugzilla-daemon
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=5574 --- Additional Comments From [EMAIL PROTECTED] 2007-08-01 03:22 --- adding dcc_timeout 30 ? ok, I'll add that to the test case. Oh, that isn't what I meant, but that might explain why I often get a failure in t/dcc.t and

[Bug 5574] [review] new setuid code broken under perl 5.6.x and 5.8.x

2007-08-01 Thread bugzilla-daemon
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=5574 --- Additional Comments From [EMAIL PROTECTED] 2007-08-01 03:30 --- (In reply to comment #41) I was talking about the alarm 10 in for my $try (1 .. 5) { $SIG{ALRM} = sub { stop_spamd(); die timed out; }; alarm 10;

[Bug 5574] [review] new setuid code broken under perl 5.6.x and 5.8.x

2007-08-01 Thread bugzilla-daemon
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=5574 --- Additional Comments From [EMAIL PROTECTED] 2007-08-01 05:28 --- The new patch with the alarm 10 changed to alarm 30 works fine on my FreeBSD 6.2, perl 5.8.8 test machine. I also found that adding dcc_timeout 30 to

[Bug 5376] RFE: generate a SpamAssassin Challenge score-generation test

2007-08-01 Thread bugzilla-daemon
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=5376 --- Additional Comments From [EMAIL PROTECTED] 2007-08-01 04:59 --- here's another machine-learning Challenge -- http://challenge.spock.com/pages/learn_more $50k prize on this one. I doubt we could match that ;)

[EMAIL PROTECTED]: Cron [EMAIL PROTECTED] ulimit -s unlimited ; nice -10 /home/felicity/SA/corpus/run-corpora-cs --server]

2007-08-01 Thread Theo Van Dinter
I was going to go through the AICache patches and make some comments, but I haven't had a chance yet. However, here's a definite comment: it's broken in my environment. I run mass-checks as both felicity and corpus. corpus only has write access to the cache file, and read-only access to the

Re: [EMAIL PROTECTED]: Cron [EMAIL PROTECTED] ulimit -s unlimited ; nice -10 /home/felicity/SA/corpus/run-corpora-cs --server]

2007-08-01 Thread Justin Mason
you could use --cachedir? I'd be ok with reverting that part of the change back to what it was before, but note that it's got a pretty serious race condition; if the process is CTRL-C'd halfway through the loop, it'll write an incomplete file and lose data. --j. Theo Van Dinter writes: I was

[Bug 5580] New: MIME_BOUND_RKFINDY and X_LIBRARY high relative FP's

2007-08-01 Thread bugzilla-daemon
http://issues.apache.org/SpamAssassin/show_bug.cgi?id=5580 Summary: MIME_BOUND_RKFINDY and X_LIBRARY high relative FP's Product: Spamassassin Version: 3.1.9 Platform: All OS/Version: All Status: NEW Severity: minor

Re: [EMAIL PROTECTED]: Cron [EMAIL PROTECTED] ulimit -s unlimited ; nice -10 /home/felicity/SA/corpus/run-corpora-cs --server]

2007-08-01 Thread Theo Van Dinter
On Wed, Aug 01, 2007 at 07:11:28PM +0100, Justin Mason wrote: you could use --cachedir? Sure, if I wanted to spend time re-rigging my entire corpus/mass-check setup/migrating cache information/etc. I'd be ok with reverting that part of the change back to what it was before, but note that it's

Re: plugin hook advice?

2007-08-01 Thread Dave Brondsema
Justin Mason wrote: Dave Brondsema writes: I'm working on a plugin and need some advice for hooks. $plugin-check_post_dnsbl says This is a good place to harvest your own asynchronously-started network lookups. I'm using Mail::SpamAssassin::Plugin::Karmasphere as a reference, and it uses