You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@spamassassin.apache.org by Jerry Malcolm <te...@malcolms.com> on 2017/07/08 01:45:45 UTC

sa-learn won't read db created via MSTOR

My client mail repository is in a sql db and is not an option for 
sa-learn to read directly.  That's fine.  I wrote a utility that reads 
all the mail out of the uncaught-spam folder from my db and creates an 
mbox folder using the mstor java package.  The mbox file gets created 
with no problem.  When I run sa-learn, it says 0 messages were 
examined.  The mbox folder has about 2500 spam messages in it.  I've 
seen lots of discussion on the forums about whether or not sa-learn will 
'process' a message based on whether it's processed it before, etc.  I 
understand that.   But this is the very first time I've ever tried to 
run sa-learn.   And this error implies that it is not even finding any 
messages to process.

Here's the command and response: (Win server 2008)

     [C:\Program Files\JAM Software\SpamAssassin in a Box]sa-learn 
--spam --mbox --showdots c:\imaputil\temp\uncaughtspam.mstor\temp

     Learned tokens from 0 message(s) (0 message(s) examined)

I've used the mstor package before and have had zero problems with it.  
So I have no reason to assume it's creating a corrupted mbox folder 
file.  The mbox folder is present and is being found (I tried renaming 
it and got a 'not found' error from sa-learn). I've opened it in an 
editor, and to the extent I can tell, it looks like an mbox file.  There 
is about a 10-15 sec time lapse while sa-learn is 'running' before it 
displays the message.  So it appears that it's reading the mbox file.  
But for some reason it thinks there are no messages inside it.

I'm at a loss right now.  Is there anyway to get additional information 
on why it thinks there are no messages in the mbox file?  I can post the 
mbox file if necessary.  If there are any debug flags that will help me 
figure out what is wrong, I can do debug as well.

Thanks.

Jerry


Re: sa-learn won't read db created via MSTOR

Posted by Antony Stone <An...@spamassassin.open.source.it>.
On Saturday 08 July 2017 at 22:55:36, RW wrote:

> I had a spillage and most of the punctuation characters
> on my keyboard aren't working at the moment.

Oh dear, my sympathies - but what a splendid quote on a mailing list :)


Antony.

-- 
Salad is what food eats.

                                                   Please reply to the list;
                                                         please *don't* CC me.

Re: sa-learn won't read db created via MSTOR

Posted by RW <rw...@googlemail.com>.
On Sat, 8 Jul 2017 21:55:36 +0100
RW wrote:

> On Sat, 8 Jul 2017 14:14:42 -0500
> Jerry Malcolm wrote:

> As a proof of concept try a small mbox file with
> 
> mbox_format_from_regex /^From\s/

and if it works try this instead:


/^From \S+  ?(\S\S\S \S\S\S .?\d .?\d:\d\d:\d\d \d{4})/


Re: sa-learn won't read db created via MSTOR

Posted by RW <rw...@googlemail.com>.
On Sat, 8 Jul 2017 14:14:42 -0500
Jerry Malcolm wrote:

> Thanks for the info.  Unfortunately, I don't have a clue how to 
> interpret a regex expression.  I couldn't find any reference to 
> mbox_format_from_regex in the 3.1.x Mail::SpamAssassin::Conf that
> came up when I googled it.

I hope you aren't actually running 3.1.x because that's ten years old.
 
> The separators in my mbox file are:
> 
>  From - Sat Jul 8 01:02:28 2017

That looks to be the problem.

As a proof of concept try a small mbox file with

mbox_format_from_regex /^From\s/

This is actually all you need if the mbox files are properly formatted
and lines that start "From " are escaped. I would give you a fuller
replacement but I had a spillage and most of the punctuation characters
on my keyboard aren't working at the moment.

Re: sa-learn won't read db created via MSTOR

Posted by Jerry Malcolm <te...@malcolms.com>.
Upon further investigation, I don't think sa-learn is even attempting to 
open the file.   I get the exact same message whether I give it a real 
file or just a string of characters for a file name:

[C:\Program Files\JAM Software\SpamAssassin in a Box]sa-learn.exe --spam 
--mbox c:\IMAPUtil\temp\uncaughtSpam.mstor\temp
Learned tokens from 0 message(s) (0 message(s) examined)

[C:\Program Files\JAM Software\SpamAssassin in a Box]sa-learn.exe --spam 
--mbox xxxxxxxxxxxxxxxx
Learned tokens from 0 message(s) (0 message(s) examined)

This can't be right.  How can I tell if it's really reading the file?


On 7/8/2017 2:14 PM, Jerry Malcolm wrote:
> Thanks for the info.  Unfortunately, I don't have a clue how to 
> interpret a regex expression.  I couldn't find any reference to 
> mbox_format_from_regex in the 3.1.x Mail::SpamAssassin::Conf that came 
> up when I googled it.
>
> The separators in my mbox file are:
>
> From - Sat Jul 8 01:02:28 2017
>
> Can someone who speaks regex tell me if this syntax is my problem, and 
> if so, point me to where I can find the correct regex that matches 
> this that I can copy/paste?
>
> Thanks.
>
> Jerry
>
>
> On 7/8/2017 8:45 AM, RW wrote:
>> On Sat, 8 Jul 2017 01:57:47 -0500
>> Jerry Malcolm wrote:
>>
>>> Below is a complete log dump from the -D option on sa-learn.
>> ...
>>
>>> _set_default_message_selection_opts After: Scanprob[1], want_date[0],
>>> cache[0], from_regex[^From \S+ ?(\S\S\S \S\S\S .\d .\d:\d\d:\d\d
>>> \d{4}|.\d-\d\d-\d{4}_\d\d:\d\d:\d\d_)]
>> Check that this default regex matches your mbox separator, you may need
>> to set mbox_format_from_regex. See the Mail::SpamAssassin::Conf
>> documentation
>
>
> ---
> This email has been checked for viruses by AVG.
> http://www.avg.com
>


Re: sa-learn won't read db created via MSTOR

Posted by Jerry Malcolm <te...@malcolms.com>.
Thanks for the info.  Unfortunately, I don't have a clue how to 
interpret a regex expression.  I couldn't find any reference to 
mbox_format_from_regex in the 3.1.x Mail::SpamAssassin::Conf that came 
up when I googled it.

The separators in my mbox file are:

 From - Sat Jul 8 01:02:28 2017

Can someone who speaks regex tell me if this syntax is my problem, and 
if so, point me to where I can find the correct regex that matches this 
that I can copy/paste?

Thanks.

Jerry


On 7/8/2017 8:45 AM, RW wrote:
> On Sat, 8 Jul 2017 01:57:47 -0500
> Jerry Malcolm wrote:
>
>> Below is a complete log dump from the -D option on sa-learn.
> ...
>
>> _set_default_message_selection_opts After: Scanprob[1], want_date[0],
>> cache[0], from_regex[^From \S+ ?(\S\S\S \S\S\S .\d .\d:\d\d:\d\d
>> \d{4}|.\d-\d\d-\d{4}_\d\d:\d\d:\d\d_)]
> Check that this default regex matches your mbox separator, you may need
> to set mbox_format_from_regex. See the Mail::SpamAssassin::Conf
> documentation


Re: sa-learn won't read db created via MSTOR

Posted by RW <rw...@googlemail.com>.
On Sat, 8 Jul 2017 01:57:47 -0500
Jerry Malcolm wrote:

> Below is a complete log dump from the -D option on sa-learn. 
...

> _set_default_message_selection_opts After: Scanprob[1], want_date[0], 
> cache[0], from_regex[^From \S+ ?(\S\S\S \S\S\S .\d .\d:\d\d:\d\d 
> \d{4}|.\d-\d\d-\d{4}_\d\d:\d\d:\d\d_)]

Check that this default regex matches your mbox separator, you may need
to set mbox_format_from_regex. See the Mail::SpamAssassin::Conf
documentation

Re: sa-learn won't read db created via MSTOR

Posted by Jerry Malcolm <te...@malcolms.com>.
Below is a complete log dump from the -D option on sa-learn.  I am 
really curious that the file name I passed in is never even mentioned in 
the log. Is that expected? Do I have some sort of syntax error passing 
the mbox filename in?  Here's the command:

      [C:\Program Files\JAM Software\SpamAssassin in a Box]sa-learn -D 
--spam --showdots --mbox c:\imaputil\temp\uncaughtspam.mstor\temp

Thx,

Jerry

Jul  8 01:47:42.704 [12972] dbg: logger: adding facilities: all
Jul  8 01:47:42.704 [12972] dbg: logger: logging level is DBG
Jul  8 01:47:42.704 [12972] dbg: generic: SpamAssassin version 3.4.1
Jul  8 01:47:42.704 [12972] dbg: generic: Perl 5.022001, 
PREFIX=C:\Program Files\JAM Software\SpamAssassin in a Box\runtime, 
DEF_RULES_DIR=C:\ProgramData\JAM Software\spamdService\sa-rules, 
LOCAL_RULES_DIR=C:\ProgramData\JAM Software\spamdService\sa-config, 
LOCAL_STATE_DIR=..\share
Jul  8 01:47:42.705 [12972] dbg: config: timing enabled
Jul  8 01:47:42.706 [12972] dbg: config: score set 0 chosen.
Jul  8 01:47:42.712 [12972] dbg: util: running in taint mode? no
Jul  8 01:47:42.712 [12972] dbg: util: defining getpwuid() wrapper using 
'unknown' as username
Jul  8 01:47:42.715 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-config" for site rules pre files
Jul  8 01:47:42.715 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/init.pre
Jul  8 01:47:42.716 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/v310.pre
Jul  8 01:47:42.716 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/v312.pre
Jul  8 01:47:42.716 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/v320.pre
Jul  8 01:47:42.716 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/v330.pre
Jul  8 01:47:42.716 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/v340.pre
Jul  8 01:47:42.716 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/v341.pre
Jul  8 01:47:42.717 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules" for sys rules pre files
Jul  8 01:47:42.717 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules" for default rules dir
Jul  8 01:47:42.717 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/sa_zmi_at.cf
Jul  8 01:47:42.718 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/sought_rules_yerp_org.cf
Jul  8 01:47:42.718 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/spamassassin_heinlein-support_de.cf
Jul  8 01:47:42.718 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org.cf
Jul  8 01:47:42.718 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/xsaupdate_jam-software_com.cf
Jul  8 01:47:42.718 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-config" for site rules dir
Jul  8 01:47:42.719 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/20_khop_bl.cf
Jul  8 01:47:42.719 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/contact.cf
Jul  8 01:47:42.720 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/jam.cf
Jul  8 01:47:42.720 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/jam_DNSBL.cf
Jul  8 01:47:42.720 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/jam_example_rules.cf
Jul  8 01:47:42.720 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/jam_virus_bounce_rules.cf
Jul  8 01:47:42.720 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-config/local.cf
Jul  8 01:47:42.721 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::URIDNSBL from @INC
Jul  8 01:47:42.727 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::Hashcash from @INC
Jul  8 01:47:42.733 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::SPF from @INC
Jul  8 01:47:42.738 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::Pyzor from @INC
Jul  8 01:47:42.740 [12972] dbg: pyzor: network tests on, attempting Pyzor
Jul  8 01:47:42.740 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::Razor2 from @INC
Jul  8 01:47:42.806 [12972] dbg: razor2: razor2 is available, version 2.84
Jul  8 01:47:42.806 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::SpamCop from @INC
Jul  8 01:47:45.307 [12972] dbg: reporter: network tests on, attempting 
SpamCop
Jul  8 01:47:45.307 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::AutoLearnThreshold from @INC
Jul  8 01:47:45.309 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::TextCat from @INC
Jul  8 01:47:45.313 [12972] dbg: textcat: loading languages file 
C:\ProgramData\JAM Software\spamdService\sa-rules/languages
Jul  8 01:47:45.350 [12972] dbg: textcat: loaded 73 language models
Jul  8 01:47:45.354 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::WhiteListSubject from @INC
Jul  8 01:47:45.356 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::MIMEHeader from @INC
Jul  8 01:47:45.358 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::ReplaceTags from @INC
Jul  8 01:47:45.361 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::Check from @INC
Jul  8 01:47:45.371 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::HTTPSMismatch from @INC
Jul  8 01:47:45.372 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::URIDetail from @INC
Jul  8 01:47:45.374 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::Shortcircuit from @INC
Jul  8 01:47:45.375 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::Bayes from @INC
Jul  8 01:47:45.387 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::BodyEval from @INC
Jul  8 01:47:45.389 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::DNSEval from @INC
Jul  8 01:47:45.392 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::HTMLEval from @INC
Jul  8 01:47:45.394 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::HeaderEval from @INC
Jul  8 01:47:45.402 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::MIMEEval from @INC
Jul  8 01:47:45.406 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::RelayEval from @INC
Jul  8 01:47:45.409 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::URIEval from @INC
Jul  8 01:47:45.410 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::WLBLEval from @INC
Jul  8 01:47:45.413 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::VBounce from @INC
Jul  8 01:47:45.414 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::Rule2XSBody from @INC
Jul  8 01:47:45.417 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::ImageInfo from @INC
Jul  8 01:47:45.422 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::FreeMail from @INC
Jul  8 01:47:45.428 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::AskDNS from @INC
Jul  8 01:47:45.432 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::TxRep from @INC
Jul  8 01:47:45.439 [12972] dbg: TxRep: new object created
Jul  8 01:47:45.440 [12972] dbg: plugin: loading 
Mail::SpamAssassin::Plugin::PDFInfo from @INC
Jul  8 01:47:45.445 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM Software\spamdService\sa-rules/sa_zmi_at/70_zmi_german.cf
Jul  8 01:47:45.446 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/sa_zmi_at/70_zmi_german.cf" for included file
Jul  8 01:47:45.448 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/sa_zmi_at/70_zmi_german.cf
Jul  8 01:47:45.654 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/sought_rules_yerp_org/20_sought.cf
Jul  8 01:47:45.654 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/sought_rules_yerp_org/20_sought.cf" for 
included file
Jul  8 01:47:45.654 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/sought_rules_yerp_org/20_sought.cf
Jul  8 01:47:45.655 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/sought_rules_yerp_org/20_sought_fraud.cf
Jul  8 01:47:45.655 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/sought_rules_yerp_org/20_sought_fraud.cf" 
for included file
Jul  8 01:47:45.655 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/sought_rules_yerp_org/20_sought_fraud.cf
Jul  8 01:47:45.667 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/spamassassin_heinlein-support_de/20_blatspammer.cf
Jul  8 01:47:45.667 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/spamassassin_heinlein-support_de/20_blatspammer.cf" 
for included file
Jul  8 01:47:45.668 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/spamassassin_heinlein-support_de/20_blatspammer.cf
Jul  8 01:47:45.668 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/spamassassin_heinlein-support_de/70_HS_body.cf
Jul  8 01:47:45.668 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/spamassassin_heinlein-support_de/70_HS_body.cf" 
for included file
Jul  8 01:47:45.669 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/spamassassin_heinlein-support_de/70_HS_body.cf
Jul  8 01:47:45.931 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/spamassassin_heinlein-support_de/70_HS_header.cf
Jul  8 01:47:45.931 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/spamassassin_heinlein-support_de/70_HS_header.cf" 
for included file
Jul  8 01:47:45.932 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/spamassassin_heinlein-support_de/70_HS_header.cf
Jul  8 01:47:46.151 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/10_default_prefs.cf
Jul  8 01:47:46.151 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/10_default_prefs.cf" 
for included file
Jul  8 01:47:46.151 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/10_default_prefs.cf
Jul  8 01:47:46.163 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/10_hasbase.cf
Jul  8 01:47:46.163 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/10_hasbase.cf" 
for included file
Jul  8 01:47:46.163 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/10_hasbase.cf
Jul  8 01:47:46.168 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_advance_fee.cf
Jul  8 01:47:46.168 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_advance_fee.cf" 
for included file
Jul  8 01:47:46.168 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_advance_fee.cf
Jul  8 01:47:46.171 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_aux_tlds.cf
Jul  8 01:47:46.172 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_aux_tlds.cf" 
for included file
Jul  8 01:47:46.172 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_aux_tlds.cf
Jul  8 01:47:46.173 [12972] dbg: config: cleared tld lists
Jul  8 01:47:46.173 [12972] dbg: config: added tld list - xn--11b4c3d 
xn--1qqw23a xn--30rr7y xn--3bst00m xn--3ds443g xn--3e0b707e
Jul  8 01:47:46.173 [12972] dbg: config: added tld list - xn--3pxu8k 
xn--42c2d9a xn--45brj9c xn--45q11c xn--4gbrim xn--55qw42g xn--55qx5d
Jul  8 01:47:46.173 [12972] dbg: config: added tld list - xn--6frz82g 
xn--6qq986b3xl xn--80adxhks xn--80ao21a xn--80asehdb xn--80aswg
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--90a3ac 
xn--90ais xn--9dbq2a xn--9et52u xn--b4w605ferd xn--c1avg xn--c2br7g
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--cg4bki 
xn--clchc0ea0b2g2a9gcd xn--czr694b xn--czrs0t xn--czru2d xn--d1acj3b
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--d1alf 
xn--eckvdtc9d xn--efvy88h xn--estv75g xn--fhbei xn--fiq228c5hs
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--fiq64b 
xn--fiqs8s xn--fiqz9s xn--fjq720a xn--flw351e xn--fpcrj9c3d
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--fzc2c9e2c 
xn--gecrj9c xn--h2brj9c xn--hxt814e xn--i1b6b1a6a2e xn--imr513n
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--io0a7i 
xn--j1aef xn--j1amh xn--j6w193g xn--jlq61u9w7b xn--kcrx77d1x4a
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--kprw13d 
xn--kpry57d xn--kpu716f xn--kput3i xn--l1acc xn--lgbbat1ad8j
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--mgb9awbf 
xn--mgba3a3ejt xn--mgba3a4f16a xn--mgbaam7a8h xn--mgbab2bd
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--mgbayh7gpa 
xn--mgbb9fbpob xn--mgbbh1a71e xn--mgbc0a9azcg xn--mgberp4a5d4ar
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--mgbpl2fh 
xn--mgbt3dhd xn--mgbtx2b xn--mgbx4cd0ab xn--mk1bu44c xn--mxtq1m
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--ngbc5azd 
xn--ngbe9e0a xn--node xn--nqv7f xn--nqv7fs00ema xn--nyqy26a
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--o3cw4h 
xn--ogbpf8fl xn--p1acf xn--p1ai xn--pbt977c xn--pgbs0dh xn--pssy2u
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--q9jyb4c 
xn--qcka1pmc xn--qxam xn--rhqv96g xn--s9brj9c xn--ses554g
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - xn--t60b56a 
xn--tckwe xn--unup4y xn--vermgensberater-ctb
Jul  8 01:47:46.174 [12972] dbg: config: added tld list - 
xn--vermgensberatung-pwb xn--vhquv xn--vuq861b xn--wgbh1c xn--wgbl6a
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - xn--xhq521b 
xn--xkc2al3hye2a xn--xkc2dl3a5ee0h xn--y9a3aq xn--yfro4i67o
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - xn--ygbi2ammx 
xn--zfr164b
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - aaa aarp 
abarth abb abbott abbvie abc able abogado abudhabi ac academy
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - accenture 
accountant accountants aco active actor ad adac ads adult ae aeg aero
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - aetna af 
afamilycompany afl ag agakhan agency ai aig aigo airbus airforce
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - airtel akdn al 
alfaromeo alibaba alipay allfinanz allstate ally alsace alstom
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - am 
americanexpress americanfamily amex amfam amica amsterdam analytics android
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - anquan anz ao 
aol apartments app apple aq aquarelle ar aramco archi army arpa
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - art arte as 
asda asia associates at athleta attorney au auction audi audible
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - audio auspost 
author auto autos avianca aw aws ax axa az azure ba baby baidu
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - banamex 
bananarepublic band bank bar barcelona barclaycard barclays barefoot
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - bargains 
baseball basketball bauhaus bayern bb bbc bbt bbva bcg bcn bd be beats
Jul  8 01:47:46.175 [12972] dbg: config: added tld list - beauty beer 
bentley berlin best bestbuy bet bf bg bh bharti bi bible bid bike
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - bing bingo bio 
biz bj black blackfriday blanco blockbuster blog bloomberg blue
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - bm bms bmw bn 
bnl bnpparibas bo boats boehringer bofa bom bond boo book booking
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - boots bosch 
bostik bot boutique br bradesco bridgestone broadway broker brother
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - brussels bs bt 
budapest bugatti build builders business buy buzz bv bw by bz
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - bzh ca cab 
cafe cal call calvinklein cam camera camp cancerresearch canon
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - capetown 
capital capitalone car caravan cards care career careers cars cartier
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - casa case 
caseih cash casino cat catering cba cbn cbre cbs cc cd ceb center ceo
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - cern cf cfa 
cfd cg ch chanel channel chase chat cheap chintai chloe christmas
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - chrome 
chrysler church ci cipriani circle cisco citadel citi citic city
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - cityeats ck cl 
claims cleaning click clinic clinique clothing cloud club
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - clubmed cm cn 
co coach codes coffee college cologne com comcast commbank
Jul  8 01:47:46.176 [12972] dbg: config: added tld list - community 
company compare computer comsec condos construction consulting
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - contact 
contractors cooking cookingchannel cool coop corsica country coupon
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - coupons 
courses cr credit creditcard creditunion cricket crown crs cruises csc
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - cu cuisinella 
cv cw cx cy cymru cyou cz dabur dad dance date dating datsun day
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - dclk dds de 
deal dealer deals degree delivery dell deloitte delta democrat
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - dental dentist 
desi design dev dhl diamonds diet digital direct directory
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - discount 
discover dish diy dj dk dm dnp do docs doctor dodge dog doha domains
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - dot download 
drive dtv dubai duck dunlop duns dupont durban dvag dvr dz earth
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - eat ec eco 
edeka edu education ee eg email emerck energy engineer engineering
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - enterprises 
epost epson equipment er ericsson erni es esq estate esurance et eu
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - eurovision eus 
events everbank exchange expert exposed express extraspace fage
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - fail fairwinds 
faith family fan fans farm farmers fashion fast fedex feedback
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - ferrari 
ferrero fi fiat fidelity fido film final finance financial fire
Jul  8 01:47:46.177 [12972] dbg: config: added tld list - firestone 
firmdale fish fishing fit fitness fj fk flickr flights flir florist
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - flowers fly fm 
fo foo foodnetwork football ford forex forsale forum foundation
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - fox fr free 
fresenius frl frogans frontdoor frontier ftr fujitsu fujixerox fund
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - furniture 
futbol fyi ga gal gallery gallo gallup game games gap garden gb gbiz
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - gd gdn ge gea 
gent genting george gf gg ggee gh gi gift gifts gives giving gl
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - glade glass 
gle global globo gm gmail gmbh gmo gmx gn godaddy gold goldpoint
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - golf goo 
goodhands goodyear goog google gop got gov gp gq gr grainger graphics
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - gratis green 
gripe group gs gt gu guardian gucci guge guide guitars guru gw gy
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - hamburg 
hangout haus hbo hdfc hdfcbank health healthcare help helsinki here
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - hermes hgtv 
hiphop hisamitsu hitachi hiv hk hkt hm hn hockey holdings holiday
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - homedepot 
homegoods homes homesense honda honeywell horse host hosting hot
Jul  8 01:47:46.178 [12972] dbg: config: added tld list - hoteles 
hotmail house how hr hsbc ht htc hu hughes hyatt hyundai ibm icbc ice
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - icu id ie ieee 
ifm iinet ikano il im imamat imdb immo immobilien in industries
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - infiniti info 
ing ink institute insurance insure int intel international intuit
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - investments io 
ipiranga iq ir irish is iselect ismaili ist istanbul it itau itv
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - iveco iwc 
jaguar java jcb jcp je jeep jetzt jewelry jlc jll jm jmp jnj jo jobs
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - joburg jot joy 
jp jpmorgan jprs juegos juniper kaufen kddi ke kerryhotels
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - kerrylogistics 
kerryproperties kfh kg kh ki kia kim kinder kindle kitchen kiwi
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - km kn koeln 
komatsu kosher kp kpmg kpn kr krd kred kuokgroup kw ky kyoto kz la
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - lacaixa 
ladbrokes lamborghini lamer lancaster lancia lancome land landrover
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - lanxess 
lasalle lat latino latrobe law lawyer lb lc lds lease leclerc lefrak
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - legal lego 
lexus lgbt li liaison lidl life lifeinsurance lifestyle lighting
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - like lilly 
limited limo lincoln linde link lipsy live living lixil lk loan
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - loans locker 
locus loft lol london lotte lotto love lpl lplfinancial lr ls lt
Jul  8 01:47:46.179 [12972] dbg: config: added tld list - ltd ltda lu 
lundbeck lupin luxe luxury lv ly ma macys madrid maif maison makeup
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - man management 
mango market marketing markets marriott marshalls maserati
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - mattel mba mc 
mcd mcdonalds mckinsey md me med media meet melbourne meme
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - memorial men 
menu meo metlife mg mh miami microsoft mil mini mint mit
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - mitsubishi mk 
ml mlb mls mm mma mn mo mobi mobily moda moe moi mom monash money
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - monster 
montblanc mopar mormon mortgage moscow motorcycles mov movie movistar
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - mp mq mr ms 
msd mt mtn mtpc mtr mu museum mutual mutuelle mv mw mx my mz na nab
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - nadex nagoya 
name nationwide natura navy nba nc ne nec net netbank netflix
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - network 
neustar new newholland news next nextdirect nexus nf nfl ng ngo nhk ni
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - nico nike 
nikon ninja nissan nissay nl no nokia northwesternmutual norton now
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - nowruz nowtv 
np nr nra nrw ntt nu nyc nz obi observer off office okinawa olayan
Jul  8 01:47:46.180 [12972] dbg: config: added tld list - olayangroup 
oldnavy ollo om omega one ong onl online onyourside ooo open oracle
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - orange org 
organic orientexpress origins osaka otsuka ott ovh pa page
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - pamperedchef 
panasonic panerai paris pars partners parts party passagens pay
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - pccw pe pet pf 
pfizer pg ph pharmacy philips photo photography photos physio
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - piaget pics 
pictet pictures pid pin ping pink pioneer pizza pk pl place play
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - playstation 
plumbing plus pm pn pnc pohl poker politie porn post pr pramerica
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - praxi press 
prime pro prod productions prof progressive promo properties
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - property 
protection pru prudential ps pt pub pw pwc py qa qpon quebec quest qvc
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - racing radio 
raid re read realestate realtor realty recipes red redstone
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - redumbrella 
rehab reise reisen reit ren rent rentals repair report republican
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - rest 
restaurant review reviews rexroth rich richardli ricoh rightathome rio rip
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - ro rocher 
rocks rodeo rogers room rs rsvp ru ruhr run rw rwe ryukyu sa saarland
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - safe safety 
sakura sale salon samsclub samsung sandvik sandvikcoromant sanofi
Jul  8 01:47:46.181 [12972] dbg: config: added tld list - sap sapo sarl 
sas save saxo sb sbi sbs sc sca scb schaeffler schmidt
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - scholarships 
school schule schwarz science scjohnson scor scot sd se seat
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - secure 
security seek select sener services ses seven sew sex sexy sfr sg sh
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - shangrila 
sharp shaw shell shia shiksha shoes shop shopping shouji show
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - showtime 
shriram si silk sina singles site sj sk ski skin sky skype sl sling sm
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - smart smile sn 
sncf so soccer social softbank software sohu solar solutions
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - song sony soy 
space spiegel spot spreadbetting sr srl srt st stada staples star
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - starhub 
statebank statefarm statoil stc stcgroup stockholm storage store stream
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - studio study 
style su sucks supplies supply support surf surgery suzuki sv
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - swatch 
swiftcover swiss sx sy sydney symantec systems sz tab taipei talk taobao
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - target 
tatamotors tatar tattoo tax taxi tc tci td tdk team tech technology tel
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - telecity 
telefonica temasek tennis teva tf tg th thd theater theatre tiaa
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - tickets tienda 
tiffany tips tires tirol tj tjmaxx tjx tk tkmaxx tl tm tmall tn
Jul  8 01:47:46.182 [12972] dbg: config: added tld list - to today tokyo 
tools top toray toshiba total tours town toyota toys tr trade
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - trading 
training travel travelchannel travelers travelersinsurance trust trv tt
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - tube tui tunes 
tushu tv tvs tw tz ua ubank ubs uconnect ug uk unicom university
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - uno uol ups us 
uy uz va vacations vana vanguard vc ve vegas ventures verisign
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - versicherung 
vet vg vi viajes video vig viking villas vin vip virgin visa
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - vision vista 
vistaprint viva vivo vlaanderen vn vodka volkswagen volvo vote
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - voting voto 
voyage vu vuelos wales walmart walter wang wanggou warman watch
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - watches 
weather weatherchannel webcam weber website wed wedding weibo weir wf
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - whoswho wien 
wiki williamhill win windows wine winners wme wolterskluwer
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - woodside work 
works world wow ws wtc wtf xbox xerox xfinity xihuan xin xperia
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - xxx xyz yachts 
yahoo yamaxun yandex ye yodobashi yoga yokohama you youtube yt
Jul  8 01:47:46.183 [12972] dbg: config: added tld list - yun za zappos 
zara zero zip zippo zm zone zuerich zw
Jul  8 01:47:46.194 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_body_tests.cf
Jul  8 01:47:46.194 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_body_tests.cf" 
for included file
Jul  8 01:47:46.194 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_body_tests.cf
Jul  8 01:47:46.200 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_compensate.cf
Jul  8 01:47:46.200 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_compensate.cf" 
for included file
Jul  8 01:47:46.201 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_compensate.cf
Jul  8 01:47:46.202 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_dnsbl_tests.cf
Jul  8 01:47:46.202 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_dnsbl_tests.cf" 
for included file
Jul  8 01:47:46.202 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_dnsbl_tests.cf
Jul  8 01:47:46.209 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_drugs.cf
Jul  8 01:47:46.209 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_drugs.cf" for 
included file
Jul  8 01:47:46.210 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_drugs.cf
Jul  8 01:47:46.226 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_dynrdns.cf
Jul  8 01:47:46.226 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_dynrdns.cf" 
for included file
Jul  8 01:47:46.227 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_dynrdns.cf
Jul  8 01:47:46.234 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_fake_helo_tests.cf
Jul  8 01:47:46.234 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_fake_helo_tests.cf" 
for included file
Jul  8 01:47:46.234 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_fake_helo_tests.cf
Jul  8 01:47:46.238 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_freemail.cf
Jul  8 01:47:46.238 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_freemail.cf" 
for included file
Jul  8 01:47:46.238 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_freemail.cf
Jul  8 01:47:46.241 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_freemail_domains.cf
Jul  8 01:47:46.241 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_freemail_domains.cf" 
for included file
Jul  8 01:47:46.241 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_freemail_domains.cf
Jul  8 01:47:46.242 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::FreeMail=HASH(0x48d08d8) implements 
'parse_config', priority 0
Jul  8 01:47:46.257 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_freemail_mailcom_domains.cf
Jul  8 01:47:46.257 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_freemail_mailcom_domains.cf" 
for included file
Jul  8 01:47:46.257 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_freemail_mailcom_domains.cf
Jul  8 01:47:46.258 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_head_tests.cf
Jul  8 01:47:46.258 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_head_tests.cf" 
for included file
Jul  8 01:47:46.259 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_head_tests.cf
Jul  8 01:47:46.290 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_html_tests.cf
Jul  8 01:47:46.290 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_html_tests.cf" 
for included file
Jul  8 01:47:46.291 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_html_tests.cf
Jul  8 01:47:46.302 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_imageinfo.cf
Jul  8 01:47:46.302 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_imageinfo.cf" 
for included file
Jul  8 01:47:46.303 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_imageinfo.cf
Jul  8 01:47:46.305 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_mailspike.cf
Jul  8 01:47:46.305 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_mailspike.cf" 
for included file
Jul  8 01:47:46.306 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_mailspike.cf
Jul  8 01:47:46.309 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_meta_tests.cf
Jul  8 01:47:46.309 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_meta_tests.cf" 
for included file
Jul  8 01:47:46.309 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_meta_tests.cf
Jul  8 01:47:46.312 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_net_tests.cf
Jul  8 01:47:46.312 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_net_tests.cf" 
for included file
Jul  8 01:47:46.312 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_net_tests.cf
Jul  8 01:47:46.313 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_pdfinfo.cf
Jul  8 01:47:46.313 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_pdfinfo.cf" 
for included file
Jul  8 01:47:46.313 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_pdfinfo.cf
Jul  8 01:47:46.316 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_phrases.cf
Jul  8 01:47:46.316 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_phrases.cf" 
for included file
Jul  8 01:47:46.317 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_phrases.cf
Jul  8 01:47:46.328 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_porn.cf
Jul  8 01:47:46.328 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_porn.cf" for 
included file
Jul  8 01:47:46.329 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_porn.cf
Jul  8 01:47:46.330 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_ratware.cf
Jul  8 01:47:46.330 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_ratware.cf" 
for included file
Jul  8 01:47:46.330 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_ratware.cf
Jul  8 01:47:46.343 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_uri_tests.cf
Jul  8 01:47:46.344 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_uri_tests.cf" 
for included file
Jul  8 01:47:46.344 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_uri_tests.cf
Jul  8 01:47:46.349 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_vbounce.cf
Jul  8 01:47:46.349 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_vbounce.cf" 
for included file
Jul  8 01:47:46.350 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/20_vbounce.cf
Jul  8 01:47:46.361 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/23_bayes.cf
Jul  8 01:47:46.361 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/23_bayes.cf" for 
included file
Jul  8 01:47:46.361 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/23_bayes.cf
Jul  8 01:47:46.365 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_accessdb.cf
Jul  8 01:47:46.365 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_accessdb.cf" 
for included file
Jul  8 01:47:46.365 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_accessdb.cf
Jul  8 01:47:46.365 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_antivirus.cf
Jul  8 01:47:46.365 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_antivirus.cf" 
for included file
Jul  8 01:47:46.365 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_antivirus.cf
Jul  8 01:47:46.366 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_asn.cf
Jul  8 01:47:46.366 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_asn.cf" for 
included file
Jul  8 01:47:46.366 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_asn.cf
Jul  8 01:47:46.366 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_dcc.cf
Jul  8 01:47:46.366 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_dcc.cf" for 
included file
Jul  8 01:47:46.367 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_dcc.cf
Jul  8 01:47:46.367 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_dkim.cf
Jul  8 01:47:46.367 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_dkim.cf" for 
included file
Jul  8 01:47:46.367 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_dkim.cf
Jul  8 01:47:46.368 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_hashcash.cf
Jul  8 01:47:46.368 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_hashcash.cf" 
for included file
Jul  8 01:47:46.368 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_hashcash.cf
Jul  8 01:47:46.370 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_pyzor.cf
Jul  8 01:47:46.370 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_pyzor.cf" for 
included file
Jul  8 01:47:46.371 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_pyzor.cf
Jul  8 01:47:46.371 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_razor2.cf
Jul  8 01:47:46.371 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_razor2.cf" 
for included file
Jul  8 01:47:46.372 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_razor2.cf
Jul  8 01:47:46.373 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_replace.cf
Jul  8 01:47:46.373 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_replace.cf" 
for included file
Jul  8 01:47:46.373 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_replace.cf
Jul  8 01:47:46.382 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_spf.cf
Jul  8 01:47:46.382 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_spf.cf" for 
included file
Jul  8 01:47:46.383 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_spf.cf
Jul  8 01:47:46.387 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_textcat.cf
Jul  8 01:47:46.387 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_textcat.cf" 
for included file
Jul  8 01:47:46.388 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_textcat.cf
Jul  8 01:47:46.388 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_uribl.cf
Jul  8 01:47:46.388 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_uribl.cf" for 
included file
Jul  8 01:47:46.389 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/25_uribl.cf
Jul  8 01:47:46.396 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_de.cf
Jul  8 01:47:46.396 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_de.cf" 
for included file
Jul  8 01:47:46.397 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_de.cf
Jul  8 01:47:46.400 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_fr.cf
Jul  8 01:47:46.400 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_fr.cf" 
for included file
Jul  8 01:47:46.400 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_fr.cf
Jul  8 01:47:46.402 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_it.cf
Jul  8 01:47:46.402 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_it.cf" 
for included file
Jul  8 01:47:46.403 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_it.cf
Jul  8 01:47:46.403 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_nl.cf
Jul  8 01:47:46.403 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_nl.cf" 
for included file
Jul  8 01:47:46.403 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_nl.cf
Jul  8 01:47:46.405 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_pl.cf
Jul  8 01:47:46.405 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_pl.cf" 
for included file
Jul  8 01:47:46.405 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_pl.cf
Jul  8 01:47:46.407 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_pt_br.cf
Jul  8 01:47:46.407 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_pt_br.cf" 
for included file
Jul  8 01:47:46.408 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/30_text_pt_br.cf
Jul  8 01:47:46.412 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/50_scores.cf
Jul  8 01:47:46.412 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/50_scores.cf" 
for included file
Jul  8 01:47:46.413 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/50_scores.cf
Jul  8 01:47:46.433 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_adsp_override_dkim.cf
Jul  8 01:47:46.433 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_adsp_override_dkim.cf" 
for included file
Jul  8 01:47:46.433 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_adsp_override_dkim.cf
Jul  8 01:47:46.434 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_awl.cf
Jul  8 01:47:46.434 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_awl.cf" for 
included file
Jul  8 01:47:46.435 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_awl.cf
Jul  8 01:47:46.435 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_shortcircuit.cf
Jul  8 01:47:46.435 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_shortcircuit.cf" 
for included file
Jul  8 01:47:46.435 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_shortcircuit.cf
Jul  8 01:47:46.436 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_txrep.cf
Jul  8 01:47:46.436 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_txrep.cf" for 
included file
Jul  8 01:47:46.436 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_txrep.cf
Jul  8 01:47:46.437 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist.cf
Jul  8 01:47:46.437 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist.cf" 
for included file
Jul  8 01:47:46.437 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist.cf
Jul  8 01:47:46.440 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist_dkim.cf
Jul  8 01:47:46.441 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist_dkim.cf" 
for included file
Jul  8 01:47:46.441 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist_dkim.cf
Jul  8 01:47:46.442 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist_spf.cf
Jul  8 01:47:46.442 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist_spf.cf" 
for included file
Jul  8 01:47:46.442 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist_spf.cf
Jul  8 01:47:46.443 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist_subject.cf
Jul  8 01:47:46.443 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist_subject.cf" 
for included file
Jul  8 01:47:46.444 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/60_whitelist_subject.cf
Jul  8 01:47:46.444 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/72_active.cf
Jul  8 01:47:46.444 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/72_active.cf" 
for included file
Jul  8 01:47:46.445 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/72_active.cf
Jul  8 01:47:46.642 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/72_scores.cf
Jul  8 01:47:46.642 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/72_scores.cf" 
for included file
Jul  8 01:47:46.643 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/72_scores.cf
Jul  8 01:47:46.646 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/73_sandbox_manual_scores.cf
Jul  8 01:47:46.647 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/73_sandbox_manual_scores.cf" 
for included file
Jul  8 01:47:46.647 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/73_sandbox_manual_scores.cf
Jul  8 01:47:46.647 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/local.cf
Jul  8 01:47:46.647 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/local.cf" for 
included file
Jul  8 01:47:46.648 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/local.cf
Jul  8 01:47:46.648 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/regression_tests.cf
Jul  8 01:47:46.648 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/regression_tests.cf" 
for included file
Jul  8 01:47:46.648 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/updates_spamassassin_org/regression_tests.cf
Jul  8 01:47:46.649 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/xsaupdate_jam-software_com/jam.cf
Jul  8 01:47:46.649 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/xsaupdate_jam-software_com/jam.cf" for 
included file
Jul  8 01:47:46.649 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/xsaupdate_jam-software_com/jam.cf
Jul  8 01:47:46.695 [12972] dbg: config: fixed relative path: 
C:\ProgramData\JAM 
Software\spamdService\sa-rules/xsaupdate_jam-software_com/x_jam_rescores.cf
Jul  8 01:47:46.695 [12972] dbg: config: using "C:\ProgramData\JAM 
Software\spamdService\sa-rules/xsaupdate_jam-software_com/x_jam_rescores.cf" 
for included file
Jul  8 01:47:46.695 [12972] dbg: config: read file C:\ProgramData\JAM 
Software\spamdService\sa-rules/xsaupdate_jam-software_com/x_jam_rescores.cf
Jul  8 01:47:46.744 [12972] dbg: plugin: did not register 
Mail::SpamAssassin::Plugin::TextCat, already registered
Jul  8 01:47:46.744 [12972] dbg: plugin: did not register 
Mail::SpamAssassin::Plugin::Shortcircuit, already registered
Jul  8 01:47:46.744 [12972] dbg: config: allowing user rules!
Jul  8 01:47:46.763 [12972] dbg: config: warning: no description set for 
VBOUNCE_BODY_DETECT
Jul  8 01:47:46.767 [12972] dbg: config: warning: no description set for 
KB_RATWARE_BOUNDARY
Jul  8 01:47:46.774 [12972] dbg: config: warning: no description set for 
HK_LOTTO
Jul  8 01:47:46.775 [12972] dbg: config: warning: no description set for 
LONG_TERM_PRICE
Jul  8 01:47:46.776 [12972] dbg: config: warning: no description set for 
HK_SCAM_N2
Jul  8 01:47:46.780 [12972] dbg: config: warning: no description set for 
FSL_HELO_NON_FQDN_1
Jul  8 01:47:46.781 [12972] dbg: config: warning: no description set for 
KB_RATWARE_MSGID
Jul  8 01:47:46.782 [12972] dbg: config: warning: no description set for 
MID_DEGREES
Jul  8 01:47:46.784 [12972] dbg: config: warning: no description set for 
IMG_DIRECT_TO_MX
Jul  8 01:47:46.788 [12972] dbg: config: warning: no description set for 
FSL_HELO_BARE_IP_1
Jul  8 01:47:46.794 [12972] dbg: config: warning: no description set for 
HS_HEADER_SPAM_70
Jul  8 01:47:46.795 [12972] dbg: config: warning: no description set for 
KB_RATWARE_OUTLOOK_16
Jul  8 01:47:46.799 [12972] dbg: config: warning: no description set for 
LIVEFILESTORE
Jul  8 01:47:46.801 [12972] dbg: config: warning: no description set for 
HIGH_CODEPAGE_URI
Jul  8 01:47:46.803 [12972] dbg: config: warning: no description set for 
HTML_TITLE_SUBJ_DIFF
Jul  8 01:47:46.806 [12972] dbg: config: warning: no description set for 
ZMIfish_NETBANKING_FS
Jul  8 01:47:46.807 [12972] dbg: config: warning: no description set for 
BASE64_LENGTH_78_79
Jul  8 01:47:46.808 [12972] dbg: config: warning: no description set for 
FAKE_REPLY_C
Jul  8 01:47:46.810 [12972] dbg: config: warning: no description set for 
SB_GIF_AND_NO_URIS
Jul  8 01:47:46.811 [12972] dbg: config: warning: no description set for 
REPLYTO_WITHOUT_TO_CC
Jul  8 01:47:46.811 [12972] dbg: config: warning: no description set for 
LOTTERY_PH_004470
Jul  8 01:47:46.812 [12972] dbg: config: warning: no description set for 
BUG6152_INVALID_DATE_TZ_ABSURD
Jul  8 01:47:46.812 [12972] dbg: config: warning: no description set for 
DOS_STOCK_BAT2
Jul  8 01:47:46.815 [12972] dbg: config: warning: no description set for 
FROM_MISSP_SPF_FAIL
Jul  8 01:47:46.817 [12972] dbg: config: warning: no description set for 
THEBAT_UNREG
Jul  8 01:47:46.817 [12972] dbg: config: warning: no description set for 
JM_TORA_XM
Jul  8 01:47:46.820 [12972] dbg: config: warning: no description set for 
FSL_HELO_BARE_IP_2
Jul  8 01:47:46.821 [12972] dbg: config: warning: no description set for 
STOX_REPLY_TYPE
Jul  8 01:47:46.823 [12972] dbg: config: warning: no description set for 
ZMIfish_NETBANK_chk1
Jul  8 01:47:46.825 [12972] dbg: config: warning: no description set for 
TVD_PP_PHISH
Jul  8 01:47:46.826 [12972] dbg: config: warning: no description set for 
FSL_HELO_DEVICE
Jul  8 01:47:46.827 [12972] dbg: config: warning: no description set for 
TVD_SPACE_RATIO
Jul  8 01:47:46.829 [12972] dbg: config: warning: no description set for 
KB_RATWARE_OUTLOOK_12
Jul  8 01:47:46.838 [12972] dbg: config: warning: no description set for 
KB_FAKED_THE_BAT
Jul  8 01:47:46.844 [12972] dbg: config: warning: no description set for 
HTTPS_HTTP_MISMATCH
Jul  8 01:47:46.845 [12972] dbg: config: warning: no description set for 
CTYPE_001C_B
Jul  8 01:47:46.848 [12972] dbg: config: warning: no description set for 
SHORT_TERM_PRICE
Jul  8 01:47:46.859 [12972] dbg: config: warning: no description set for 
MSGID_DOLLARS_RANDOM
Jul  8 01:47:46.859 [12972] dbg: config: warning: no description set for 
HELO_LH_LD
Jul  8 01:47:46.860 [12972] dbg: config: warning: no description set for 
CTYPE_001C_A
Jul  8 01:47:46.860 [12972] dbg: config: warning: no description set for 
X_MAILER_CME_6543_MSN
Jul  8 01:47:46.864 [12972] dbg: config: warning: no description set for 
KB_RATWARE_OUTLOOK_MID
Jul  8 01:47:46.866 [12972] dbg: config: warning: no description set for 
STOCK_PRICES
Jul  8 01:47:46.867 [12972] dbg: config: warning: no description set for 
LOTTERY_1
Jul  8 01:47:46.868 [12972] dbg: config: warning: no description set for 
TVD_EB_PHISH
Jul  8 01:47:46.875 [12972] dbg: config: warning: no description set for 
MSOE_MID_WRONG_CASE
Jul  8 01:47:46.876 [12972] dbg: config: warning: no description set for 
RCVD_IN_MSPIKE_ZBI
Jul  8 01:47:46.882 [12972] dbg: config: warning: no description set for 
HELO_FRIEND
Jul  8 01:47:46.883 [12972] dbg: config: warning: no description set for 
FSL_HELO_SETUP
Jul  8 01:47:46.885 [12972] dbg: config: warning: no description set for 
FSL_INTERIA_ABUSE
Jul  8 01:47:46.886 [12972] dbg: config: warning: no description set for 
RCVD_IN_BRBL_LASTEXT
Jul  8 01:47:46.887 [12972] dbg: config: warning: no description set for 
FSL_FAKE_HOTMAIL_RVCD
Jul  8 01:47:46.888 [12972] dbg: config: warning: no description set for 
GEO_QUERY_STRING
Jul  8 01:47:46.888 [12972] dbg: config: warning: no description set for 
TVD_FINGER_02
Jul  8 01:47:46.889 [12972] dbg: config: warning: no description set for 
STOX_AND_PRICE
Jul  8 01:47:46.892 [12972] dbg: config: warning: no description set for 
CURR_PRICE
Jul  8 01:47:46.897 [12972] dbg: config: warning: no description set for 
MULTIPART_ALT_NON_TEXT
Jul  8 01:47:46.897 [12972] dbg: config: warning: no description set for 
TVD_RCVD_SPACE_BRACKET
Jul  8 01:47:46.897 [12972] dbg: config: warning: no description set for 
ZMIfish_NETBANK_chk2
Jul  8 01:47:46.900 [12972] dbg: config: warning: no description set for 
KB_RATWARE_OUTLOOK_08
Jul  8 01:47:46.901 [12972] dbg: config: warning: no description set for 
MIME_BOUND_EQ_REL
Jul  8 01:47:46.903 [12972] dbg: config: warning: no description set for 
JM_RCVD_QMAILV1
Jul  8 01:47:46.905 [12972] dbg: config: warning: no description set for 
KB_DATE_CONTAINS_TAB
Jul  8 01:47:46.911 [12972] dbg: config: warning: no description set for 
HELO_LOCALHOST
Jul  8 01:47:46.920 [12972] dbg: config: warning: no description set for 
RCVD_FORGED_WROTE2
Jul  8 01:47:46.923 [12972] dbg: config: warning: no description set for 
HK_SCAM_N15
Jul  8 01:47:46.927 [12972] dbg: config: warning: no description set for 
STOX_REPLY_TYPE_WITHOUT_QUOTES
Jul  8 01:47:46.929 [12972] dbg: config: warning: no description set for 
HELO_OEM
Jul  8 01:47:46.930 [12972] dbg: config: warning: no description set for 
JM_I_FEEL_LUCKY
Jul  8 01:47:46.931 [12972] dbg: config: warning: no description set for 
L_SPAM_TOOL_13
Jul  8 01:47:47.669 [12972] dbg: config: finish parsing
Jul  8 01:47:47.694 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::ReplaceTags=HASH(0x53fea48) implements 
'finish_parsing_end', priority 0
Jul  8 01:47:47.694 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::Rule2XSBody=HASH(0x57607b0) implements 
'finish_parsing_end', priority 0
Jul  8 01:47:47.694 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::FreeMail=HASH(0x48d08d8) implements 
'finish_parsing_end', priority 0
Jul  8 01:47:47.694 [12972] dbg: replacetags: replacing tags
Jul  8 01:47:47.711 [12972] dbg: replacetags: done replacing tags
Jul  8 01:47:47.711 [12972] dbg: zoom: loading compiled ruleset from 
..\share/compiled/5.022/3.004001
Jul  8 01:47:47.714 [12972] dbg: zoom: using compiled ruleset in 
runtime\lib/Mail/SpamAssassin/CompiledRegexps/body_0.pm for 
Mail::SpamAssassin::CompiledRegexps::body_0
Jul  8 01:47:47.720 [12972] dbg: zoom: able to use 341/350 'body_0' 
compiled rules (97.428%)
Jul  8 01:47:47.721 [12972] dbg: FreeMail: loaded freemail_domains 
entries: 2537 normal, 31 wildcard
Jul  8 01:47:47.721 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::Bayes=HASH(0x540d610) implements 
'learner_new', priority 0
Jul  8 01:47:47.721 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::TxRep=HASH(0x48d0d58) implements 
'learner_new', priority 0
Jul  8 01:47:47.721 [12972] dbg: bayes: learner_new 
self=Mail::SpamAssassin::Plugin::Bayes=HASH(0x540d610), 
bayes_store_module=Mail::SpamAssassin::BayesStore::DBM
Jul  8 01:47:47.734 [12972] dbg: bayes: learner_new: got 
store=Mail::SpamAssassin::BayesStore::DBM=HASH(0x6d2e480)
Jul  8 01:47:47.734 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::Bayes=HASH(0x540d610) implements 
'learner_is_scan_available', priority 0
Jul  8 01:47:47.735 [12972] dbg: bayes: tie-ing to DB file R/O 
C:\ProgramData\JAM Software\spamdService\sa-bayes\bayes_toks
Jul  8 01:47:47.735 [12972] dbg: bayes: tie-ing to DB file R/O 
C:\ProgramData\JAM Software\spamdService\sa-bayes\bayes_seen
Jul  8 01:47:47.735 [12972] dbg: bayes: found bayes db version 3
Jul  8 01:47:47.736 [12972] dbg: bayes: DB journal sync: last sync: 
1499496451
Jul  8 01:47:47.736 [12972] dbg: config: score set 3 chosen.
Jul  8 01:47:47.740 [12972] dbg: dns: EDNS, UDP payload size 4096
Jul  8 01:47:47.740 [12972] dbg: dns: servers obtained from Net::DNS : 
[216.187.125.130]:53, [216.187.125.131]:53
Jul  8 01:47:47.740 [12972] dbg: dns: nameservers set to 
216.187.125.130, 216.187.125.131
Jul  8 01:47:47.741 [12972] dbg: dns: using socket module: 
IO::Socket::IP version 0.37
Jul  8 01:47:47.741 [12972] dbg: dns: is Net::DNS::Resolver available? yes
Jul  8 01:47:47.741 [12972] dbg: dns: Net::DNS version: 1.04
Jul  8 01:47:47.741 [12972] dbg: sa-learn: spamtest initialized
Jul  8 01:47:47.741 [12972] dbg: learn: initializing learner
Jul  8 01:47:47.741 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::Bayes=HASH(0x540d610) implements 
'learner_sync', priority 0
Jul  8 01:47:47.741 [12972] dbg: bayes: bayes journal sync starting
Jul  8 01:47:47.741 [12972] dbg: bayes: bayes journal sync completed
Jul  8 01:47:47.741 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::Bayes=HASH(0x540d610) implements 
'learner_expire_old_training', priority 0
Jul  8 01:47:47.741 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::TxRep=HASH(0x48d0d58) implements 
'learner_expire_old_training', priority 0
Jul  8 01:47:47.741 [12972] dbg: bayes: expiry starting
Jul  8 01:47:47.742 [12972] dbg: locker: safe_lock: trying to get lock 
on C:\ProgramData\JAM Software\spamdService\sa-bayes\bayes with 0 retries
Jul  8 01:47:47.742 [12972] dbg: locker: safe_lock: link to 
C:\ProgramData\JAM Software\spamdService\sa-bayes\bayes.lock: sysopen ok
Jul  8 01:47:47.742 [12972] dbg: bayes: tie-ing to DB file R/W 
C:\ProgramData\JAM Software\spamdService\sa-bayes\bayes_toks
Jul  8 01:47:47.743 [12972] dbg: bayes: tie-ing to DB file R/W 
C:\ProgramData\JAM Software\spamdService\sa-bayes\bayes_seen
Jul  8 01:47:47.744 [12972] dbg: bayes: found bayes db version 3
Jul  8 01:47:47.744 [12972] dbg: locker: refresh_lock: refresh 
C:\ProgramData\JAM Software\spamdService\sa-bayes\bayes.lock
Jul  8 01:47:47.744 [12972] dbg: bayes: DB expiry: tokens in DB: 135577, 
Expiry max size: 150000, Oldest atime: 1495119526, Newest atime: 
1499496445, Last expire: 1497151460, Current time: 1499496467
Jul  8 01:47:47.744 [12972] dbg: bayes: expiry completed
Jul  8 01:47:47.744 [12972] dbg: archive-iterator: 
_set_default_message_selection_opts After: Scanprob[1], want_date[0], 
cache[0], from_regex[^From \S+ ?(\S\S\S \S\S\S .\d .\d:\d\d:\d\d 
\d{4}|.\d-\d\d-\d{4}_\d\d:\d\d:\d\d_)]

Jul  8 01:47:49.106 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::Bayes=HASH(0x540d610) implements 
'learner_close', priority 0
Jul  8 01:47:49.107 [12972] dbg: plugin: 
Mail::SpamAssassin::Plugin::TxRep=HASH(0x48d0d58) implements 
'learner_close', priority 0
Jul  8 01:47:49.107 [12972] dbg: bayes: untie-ing
Jul  8 01:47:49.107 [12972] dbg: bayes: files locked, now unlocking lock
Jul  8 01:47:49.107 [12972] dbg: locker: safe_unlock: unlink 
C:\ProgramData\JAM Software\spamdService\sa-bayes\bayes.lock


On 7/7/2017 8:45 PM, Jerry Malcolm wrote:
> My client mail repository is in a sql db and is not an option for 
> sa-learn to read directly.  That's fine.  I wrote a utility that reads 
> all the mail out of the uncaught-spam folder from my db and creates an 
> mbox folder using the mstor java package.  The mbox file gets created 
> with no problem.  When I run sa-learn, it says 0 messages were 
> examined.  The mbox folder has about 2500 spam messages in it.  I've 
> seen lots of discussion on the forums about whether or not sa-learn 
> will 'process' a message based on whether it's processed it before, 
> etc.  I understand that.   But this is the very first time I've ever 
> tried to run sa-learn.   And this error implies that it is not even 
> finding any messages to process.
>
> Here's the command and response: (Win server 2008)
>
>     [C:\Program Files\JAM Software\SpamAssassin in a Box]sa-learn 
> --spam --mbox --showdots c:\imaputil\temp\uncaughtspam.mstor\temp
>
>     Learned tokens from 0 message(s) (0 message(s) examined)
>
> I've used the mstor package before and have had zero problems with 
> it.  So I have no reason to assume it's creating a corrupted mbox 
> folder file.  The mbox folder is present and is being found (I tried 
> renaming it and got a 'not found' error from sa-learn). I've opened it 
> in an editor, and to the extent I can tell, it looks like an mbox 
> file.  There is about a 10-15 sec time lapse while sa-learn is 
> 'running' before it displays the message.  So it appears that it's 
> reading the mbox file.  But for some reason it thinks there are no 
> messages inside it.
>
> I'm at a loss right now.  Is there anyway to get additional 
> information on why it thinks there are no messages in the mbox file?  
> I can post the mbox file if necessary.  If there are any debug flags 
> that will help me figure out what is wrong, I can do debug as well.
>
> Thanks.
>
> Jerry
>
>
> ---
> This email has been checked for viruses by AVG.
> http://www.avg.com
>