Re: different results when using --debug

2014-12-09 Thread btb
On 2014.12.09 06.46, Mark Martinec wrote: On Dec 08, 2014, at 19.28, Mark Martinec wrote: Actually, looking at a diff of DBM.pm between 3.4.0 and 3.4.1 I can see the taint bug has already been fixed by r1608413: @@ -814,3 +816,3 @@ my @vars = $self->get_storage_variables(); - dbg("bayes: DB

Re: different results when using --debug

2014-12-09 Thread Mark Martinec
On Dec 08, 2014, at 19.28, Mark Martinec wrote: Actually, looking at a diff of DBM.pm between 3.4.0 and 3.4.1 I can see the taint bug has already been fixed by r1608413: @@ -814,3 +816,3 @@ my @vars = $self->get_storage_variables(); - dbg("bayes: DB journal sync: last sync: ".$vars[7],'bayes

Re: different results when using --debug

2014-12-08 Thread listsb-spamassassin
> On Dec 08, 2014, at 19.28, Mark Martinec wrote: > > Actually, looking at a diff of DBM.pm between 3.4.0 and 3.4.1 > I can see the taint bug has already been fixed by r1608413: > > @@ -814,3 +816,3 @@ > my @vars = $self->get_storage_variables(); > - dbg("bayes: DB journal sync: last sync: "

Re: different results when using --debug

2014-12-08 Thread Mark Martinec
Does the following patch help? --- lib/Mail/SpamAssassin/BayesStore/DBM.pm (revision 1643879) +++ lib/Mail/SpamAssassin/BayesStore/DBM.pm (working copy) @@ -1348,7 +1348,7 @@ if ($opts->{verbose}) { print $msg,"\n"; } else { - dbg($msg); + dbg("%s", $msg);

Re: different results when using --debug

2014-12-08 Thread btb
On 2014.12.08 13.44, Mark Martinec wrote: Ben wrote: On 2014.12.08 10.13, Mark Martinec wrote: btb wrote: i hope it's not too soon to ask about this again. i'm not quite sure how to debug something like this when when it's --debug that is what behaves differently :) i've put the commands and

Re: different results when using --debug

2014-12-08 Thread Mark Martinec
Ben wrote: On 2014.12.08 10.13, Mark Martinec wrote: btb wrote: i hope it's not too soon to ask about this again. i'm not quite sure how to debug something like this when when it's --debug that is what behaves differently :) i've put the commands and output into a pastebin this time. Pleas

Re: different results when using --debug

2014-12-08 Thread btb
On 2014.12.08 10.13, Mark Martinec wrote: btb wrote: i hope it's not too soon to ask about this again. i'm not quite sure how to debug something like this when when it's --debug that is what behaves differently :) i've put the commands and output into a pastebin this time. Please show the d

Re: different results when using --debug

2014-12-08 Thread Mark Martinec
btb wrote: i hope it's not too soon to ask about this again. i'm not quite sure how to debug something like this when when it's --debug that is what behaves differently :) i've put the commands and output into a pastebin this time. Please show the debug output from: spamassassin --test-mode

Re: different results when using --debug

2014-12-08 Thread Mark Martinec
btb wrote: i hope it's not too soon to ask about this again. i'm not quite sure how to debug something like this when when it's --debug that is what behaves differently :) i've put the commands and output into a pastebin this time. Possibly this PR is related: https://issues.apache.org/Spa

Re: different results when using --debug

2014-12-08 Thread Joe Quinn
On 12/8/2014 9:28 AM, btb wrote: Apparently in the first case a score set 1 was chosen, and in the second case a score set 3. Availability of a bayes scanner choses between the two. i'm ignorant here - what is a score set? is there documentation i can read up on? The term "score set" refers t

Re: different results when using --debug

2014-12-08 Thread btb
i hope it's not too soon to ask about this again. i'm not quite sure how to debug something like this when when it's --debug that is what behaves differently :) i've put the commands and output into a pastebin this time. On 2014.12.03 05.45, Mark Martinec wrote: listsb-spamassas...@bitrate.

Re: different results when using --debug

2014-12-04 Thread btb
On 2014.12.03 05.45, Mark Martinec wrote: > listsb-spamassas...@bitrate.net wrote: >> i was testing with a sample message, and noticed that when running >> manually with --debug, there seem to be numerous differences in the >> results, such as scores for the same tests differing, visual ordering >>

Re: different results when using --debug

2014-12-03 Thread Mark Martinec
listsb-spamassas...@bitrate.net wrote: i was testing with a sample message, and noticed that when running manually with --debug, there seem to be numerous differences in the results, such as scores for the same tests differing, visual ordering of results differing [is this significant?], and baye

different results when using --debug

2014-12-02 Thread listsb-spamassassin
i was testing with a sample message, and noticed that when running manually with --debug, there seem to be numerous differences in the results, such as scores for the same tests differing, visual ordering of results differing [is this significant?], and bayes not being listed when using --debug.