Rewrite SpamAssassin Rules, sa-learn

JohnyByk

Verified User
Joined
Mar 7, 2012
Messages
251
Hi.

I want change default score for rules. How can i do that?
I make /etc/mailspamassasin/myrules.pre:
Code:
score T_DKIM_INVALID 5
score RP_MATCHES_RCVD -2.5
score RCVD_IN_SORBS_SPAM 2
score LOCAL_LARGE_SIZE_FONT 0.5


Part of email header. What i'm doing wrong? Why rules are not overridden?
Code:
  0.5 RCVD_IN_SORBS_SPAM     RBL: SORBS: sender is a spam source [188.68.251.130 listed in dnsbl.sorbs.net]
 -3.2 RP_MATCHES_RCVD        Envelope sender domain matches handover relay domain
  0.3 LOCAL_LARGE_SIZE_FONT  RAW: Fonts 20+px
  0.0 T_DKIM_INVALID         DKIM-Signature header exists but is not valid
SpamTally: Final spam score: 0

Next question.
Command sa-learn --spam learn global SpamAssasin database? All rules are used by server? This command learn SpamAssasin new rules (leaving old rules) or delete old and adding new?

Sorry for my english.

Regards
 
Last edited:
Hello,

Make sure it's just a typo in your post and you modify scores in /etc/mail/spamassassin/ and make sure to restart SpamAssassin.

Or try and update scores in /etc/mail/spamassassin/local.cf
 
I'm sure that my configuration is in /etc/mail/spamassassin/ and is OK. I have custom rules there (custom not overriding) and they work's OK.

I think so custom score settings dosen't works global. I checked custom score settings for one user (/home/user/.spamassassin/user_prefs) and work's OK. It's not good solution because when i want change settings i must do this for all users and users can override this settings.

Maybe anyone have custom score and know how override default settings?

Regards
 
I have custom rules in /etc/mail/spamassassin/local.cf and they work fine.

Just tried and overwrote the default value for:

Code:
[/COLOR]score USER_IN_WHITELIST -200

in /etc/mail/spamassassin/local.cf
 
I have not idea why dosen't work on my server. Dosen't work in local.cf and in custom file (pre).
How do you restart SpamAssassin? Maybe here is the problem.

Regards
 
service exim restart

Run spamassassin in cli in a debug mode, you might be missing some requirements.
 
I'm give up.

I can't see nothing wrong in my actual configuration:

Code:
==> /etc/mail/spamassassin/customrules.pre <==
score T_DKIM_INVALID 5
score RP_MATCHES_RCVD -2.5
score RCVD_IN_SORBS_SPAM 2
score T_REMOTE_IMAGE 0.2
score LOCAL_LARGE_SIZE_FONT 0.5

==> /etc/mail/spamassassin/init.pre <==
# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# This file contains plugin activation commands for plugins included
# in SpamAssassin 3.0.x releases.  It will not be installed if you
# already have a file in place called "init.pre".
#
# There are now multiple files read to enable plugins in the 
# /etc/mail/spamassassin directory; previously only one, "init.pre" was 
# read.  Now both "init.pre", "v310.pre", and any other files ending in
# ".pre" will be read.  As future releases are made, new plugins will be
# added to new files, named according to the release they're added in.
###########################################################################

# RelayCountry - add metadata for Bayes learning, marking the countries
# a message was relayed through
#
# Note: This requires the Geo::IP Perl module
#
# loadplugin Mail::SpamAssassin::Plugin::RelayCountry

# URIDNSBL - look up URLs found in the message against several DNS
# blocklists.
#
loadplugin Mail::SpamAssassin::Plugin::URIDNSBL

# Hashcash - perform hashcash verification.
#
loadplugin Mail::SpamAssassin::Plugin::Hashcash

# SPF - perform SPF verification.
#
loadplugin Mail::SpamAssassin::Plugin::SPF


==> /etc/mail/spamassassin/local.cf <==
# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# Only a small subset of options are listed below
#
###########################################################################

#   Add *****SPAM***** to the Subject header of spam e-mails
#
# rewrite_header Subject *****SPAM*****


#   Save spam messages as a message/rfc822 MIME attachment instead of
#   modifying the original message (0: off, 2: use text/plain instead)
#
# report_safe 1


#   Set which networks or hosts are considered 'trusted' by your mail
#   server (i.e. not spammers)
#
# trusted_networks 212.17.35.


#   Set file-locking method (flock is not safe over NFS, but is faster)
#
# lock_method flock


#   Set the threshold at which a message is considered spam (default: 5.0)
#
# required_score 5.0


#   Use Bayesian classifier (default: 1)
#
# use_bayes 1


#   Bayesian classifier auto-learning (default: 1)
#
# bayes_auto_learn 1


#   Set headers which may provide inappropriate cues to the Bayesian
#   classifier
#
# bayes_ignore_header X-Bogosity
# bayes_ignore_header X-Spam-Flag
# bayes_ignore_header X-Spam-Status


#   Whether to decode non- UTF-8 and non-ASCII textual parts and recode
#   them to UTF-8 before the text is given over to rules processing.
#
# normalize_charset 1

#   Some shortcircuiting, if the plugin is enabled
# 
ifplugin Mail::SpamAssassin::Plugin::Shortcircuit
#
#   default: strongly-whitelisted mails are *really* whitelisted now, if the
#   shortcircuiting plugin is active, causing early exit to save CPU load.
#   Uncomment to turn this on
#
# shortcircuit USER_IN_WHITELIST       on
# shortcircuit USER_IN_DEF_WHITELIST   on
# shortcircuit USER_IN_ALL_SPAM_TO     on
# shortcircuit SUBJECT_IN_WHITELIST    on

#   the opposite; blacklisted mails can also save CPU
#
# shortcircuit USER_IN_BLACKLIST       on
# shortcircuit USER_IN_BLACKLIST_TO    on
# shortcircuit SUBJECT_IN_BLACKLIST    on

#   if you have taken the time to correctly specify your "trusted_networks",
#   this is another good way to save CPU
#
# shortcircuit ALL_TRUSTED             on

#   and a well-trained bayes DB can save running rules, too
#
# shortcircuit BAYES_99                spam
# shortcircuit BAYES_00                ham

endif # Mail::SpamAssassin::Plugin::Shortcircuit

==> /etc/mail/spamassassin/sa-update-keys <==

==> /etc/mail/spamassassin/v310.pre <==
# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# This file was installed during the installation of SpamAssassin 3.1.0,
# and contains plugin loading commands for the new plugins added in that
# release.  It will not be overwritten during future SpamAssassin installs,
# so you can modify it to enable some disabled-by-default plugins below,
# if you so wish.
#
# There are now multiple files read to enable plugins in the
# /etc/mail/spamassassin directory; previously only one, "init.pre" was
# read.  Now both "init.pre", "v310.pre", and any other files ending in
# ".pre" will be read.  As future releases are made, new plugins will be
# added to new files, named according to the release they're added in.
###########################################################################

# DCC - perform DCC message checks.
#
# DCC is disabled here because it is not open source.  See the DCC
# license for more details.
#
#loadplugin Mail::SpamAssassin::Plugin::DCC

# Pyzor - perform Pyzor message checks.
#
loadplugin Mail::SpamAssassin::Plugin::Pyzor

# Razor2 - perform Razor2 message checks.
#
loadplugin Mail::SpamAssassin::Plugin::Razor2

# SpamCop - perform SpamCop message reporting
#
loadplugin Mail::SpamAssassin::Plugin::SpamCop

# AntiVirus - some simple anti-virus checks, this is not a replacement
# for an anti-virus filter like Clam AntiVirus
#
#loadplugin Mail::SpamAssassin::Plugin::AntiVirus

# AWL - do auto-whitelist checks
#
#loadplugin Mail::SpamAssassin::Plugin::AWL

# AutoLearnThreshold - threshold-based discriminator for Bayes auto-learning
#
loadplugin Mail::SpamAssassin::Plugin::AutoLearnThreshold

# TextCat - language guesser
#
#loadplugin Mail::SpamAssassin::Plugin::TextCat

# AccessDB - lookup from-addresses in access database
#
#loadplugin Mail::SpamAssassin::Plugin::AccessDB

# WhitelistSubject - Whitelist/Blacklist certain subject regular expressions
#
loadplugin Mail::SpamAssassin::Plugin::WhiteListSubject

###########################################################################
# experimental plugins

# DomainKeys - perform DomainKeys verification
#
# This plugin has been removed as of v3.3.0.  Use the DKIM plugin instead,
# which supports both Domain Keys and DKIM.

# MIMEHeader - apply regexp rules against MIME headers in the message
#
loadplugin Mail::SpamAssassin::Plugin::MIMEHeader

# ReplaceTags
#
loadplugin Mail::SpamAssassin::Plugin::ReplaceTags


==> /etc/mail/spamassassin/v312.pre <==
# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# This file was installed during the installation of SpamAssassin 3.1.2,
# and contains plugin loading commands for the new plugins added in that
# release.  It will not be overwritten during future SpamAssassin installs,
# so you can modify it to enable some disabled-by-default plugins below,
# if you so wish.
#
# There are now multiple files read to enable plugins in the
# /etc/mail/spamassassin directory; previously only one, "init.pre" was
# read.  Now both "init.pre", "v310.pre", and any other files ending in
# ".pre" will be read.  As future releases are made, new plugins will be
# added to new files, named according to the release they're added in.

###########################################################################
# experimental plugins

# DKIM - perform DKIM verification
#
# Mail::DKIM module required for use, see INSTALL for more information.
# 
# Note that if C<Mail::DKIM> version 0.20 or later is installed, this
# renders the DomainKeys plugin redundant.
#
loadplugin Mail::SpamAssassin::Plugin::DKIM


==> /etc/mail/spamassassin/v320.pre <==
# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# This file was installed during the installation of SpamAssassin 3.2.0,
# and contains plugin loading commands for the new plugins added in that
# release.  It will not be overwritten during future SpamAssassin installs,
# so you can modify it to enable some disabled-by-default plugins below,
# if you so wish.
#
# There are now multiple files read to enable plugins in the
# /etc/mail/spamassassin directory; previously only one, "init.pre" was
# read.  Now both "init.pre", "v310.pre", and any other files ending in
# ".pre" will be read.  As future releases are made, new plugins will be
# added to new files, named according to the release they're added in.
###########################################################################

# Check - Provides main check functionality
#
loadplugin Mail::SpamAssassin::Plugin::Check

# HTTPSMismatch - find URI mismatches between href and anchor text
#
loadplugin Mail::SpamAssassin::Plugin::HTTPSMismatch

# URIDetail - test URIs using detailed URI information
#
loadplugin Mail::SpamAssassin::Plugin::URIDetail

# Shortcircuit - stop evaluation early if high-accuracy rules fire
# 
# loadplugin Mail::SpamAssassin::Plugin::Shortcircuit

# Plugins which used to be EvalTests.pm
# broken out into separate plugins
loadplugin Mail::SpamAssassin::Plugin::Bayes
loadplugin Mail::SpamAssassin::Plugin::BodyEval
loadplugin Mail::SpamAssassin::Plugin::DNSEval
loadplugin Mail::SpamAssassin::Plugin::HTMLEval
loadplugin Mail::SpamAssassin::Plugin::HeaderEval
loadplugin Mail::SpamAssassin::Plugin::MIMEEval
loadplugin Mail::SpamAssassin::Plugin::RelayEval
loadplugin Mail::SpamAssassin::Plugin::URIEval
loadplugin Mail::SpamAssassin::Plugin::WLBLEval

# VBounce - anti-bounce-message rules, see rules/20_vbounce.cf
#
loadplugin Mail::SpamAssassin::Plugin::VBounce

# Rule2XSBody - speedup by compilation of ruleset to native code
#
# loadplugin Mail::SpamAssassin::Plugin::Rule2XSBody

# ASN - Look up the Autonomous System Number of the connecting IP
# and create a header containing ASN data for bayes tokenization.
# See plugin's POD docs for usage info.
#
# loadplugin Mail::SpamAssassin::Plugin::ASN

# ImageInfo - rules to match metadata of image attachments
#
loadplugin Mail::SpamAssassin::Plugin::ImageInfo


==> /etc/mail/spamassassin/v330.pre <==
# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# This file was installed during the installation of SpamAssassin 3.3.0,
# and contains plugin loading commands for the new plugins added in that
# release.  It will not be overwritten during future SpamAssassin installs,
# so you can modify it to enable some disabled-by-default plugins below,
# if you so wish.
#
# There are now multiple files read to enable plugins in the
# /etc/mail/spamassassin directory; previously only one, "init.pre" was
# read.  Now both "init.pre", "v310.pre", and any other files ending in
# ".pre" will be read.  As future releases are made, new plugins will be
# added to new files, named according to the release they're added in.
###########################################################################

# PhishTag - allows sites to rewrite suspect phish-mail URLs
# (Note: this requires configuration, see http://umut.topkara.org/PhishTag)
#
#loadplugin Mail::SpamAssassin::Plugin::PhishTag

# FreeMail - detect email addresses using free webmail services,
# usable as input for other rules
#
loadplugin Mail::SpamAssassin::Plugin::FreeMail


==> /etc/mail/spamassassin/v340.pre <==
# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# This file was installed during the installation of SpamAssassin 3.4.0,
# and contains plugin loading commands for the new plugins added in that
# release.  It will not be overwritten during future SpamAssassin installs,
# so you can modify it to enable some disabled-by-default plugins below,
# if you so wish.
#
# There are now multiple files read to enable plugins in the
# /etc/mail/spamassassin directory; previously only one, "init.pre" was
# read.  Now both "init.pre", "v310.pre", and any other files ending in
# ".pre" will be read.  As future releases are made, new plugins will be
# added to new files, named according to the release they're added in.
###########################################################################

# AskDNS - forms a DNS query based on 'tags' as supplied by other plugins
#
loadplugin Mail::SpamAssassin::Plugin::AskDNS

==> /etc/mail/spamassassin/v341.pre <==
# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# This file was installed during the installation of SpamAssassin 3.4.1,
# and contains plugin loading commands for the new plugins added in that
# release.  It will not be overwritten during future SpamAssassin installs,
# so you can modify it to enable some disabled-by-default plugins below,
# if you so wish.
#
# There are now multiple files read to enable plugins in the
# /etc/mail/spamassassin directory; previously only one, "init.pre" was
# read.  Now both "init.pre", "v310.pre", and any other files ending in
# ".pre" will be read.  As future releases are made, new plugins will be
# added to new files, named according to the release they're added in.
###########################################################################

# TxRep - Reputation database that replaces AWL
# loadplugin Mail::SpamAssassin::Plugin::TxRep

# URILocalBL - Provides ISP and Country code based filtering as well as
# quick IP based blocks without a full RBL implementation - Bug 7060

# loadplugin Mail::SpamAssassin::Plugin::URILocalBL

# PDFInfo - Use several methods to detect a PDF file's ham/spam traits
# loadplugin Mail::SpamAssassin::Plugin::PDFInfo



==> local.cf <==
# This is the right place to customize your installation of SpamAssassin.
#
# See 'perldoc Mail::SpamAssassin::Conf' for details of what can be
# tweaked.
#
# Only a small subset of options are listed below
#
###########################################################################

#   Add *****SPAM***** to the Subject header of spam e-mails
#
# rewrite_header Subject *****SPAM*****


#   Save spam messages as a message/rfc822 MIME attachment instead of
#   modifying the original message (0: off, 2: use text/plain instead)
#
# report_safe 1


#   Set which networks or hosts are considered 'trusted' by your mail
#   server (i.e. not spammers)
#
# trusted_networks 212.17.35.


#   Set file-locking method (flock is not safe over NFS, but is faster)
#
# lock_method flock


#   Set the threshold at which a message is considered spam (default: 5.0)
#
# required_score 5.0


#   Use Bayesian classifier (default: 1)
#
# use_bayes 1


#   Bayesian classifier auto-learning (default: 1)
#
# bayes_auto_learn 1


#   Set headers which may provide inappropriate cues to the Bayesian
#   classifier
#
# bayes_ignore_header X-Bogosity
# bayes_ignore_header X-Spam-Flag
# bayes_ignore_header X-Spam-Status


#   Whether to decode non- UTF-8 and non-ASCII textual parts and recode
#   them to UTF-8 before the text is given over to rules processing.
#
# normalize_charset 1

#   Some shortcircuiting, if the plugin is enabled
# 
ifplugin Mail::SpamAssassin::Plugin::Shortcircuit
#
#   default: strongly-whitelisted mails are *really* whitelisted now, if the
#   shortcircuiting plugin is active, causing early exit to save CPU load.
#   Uncomment to turn this on
#
# shortcircuit USER_IN_WHITELIST       on
# shortcircuit USER_IN_DEF_WHITELIST   on
# shortcircuit USER_IN_ALL_SPAM_TO     on
# shortcircuit SUBJECT_IN_WHITELIST    on

#   the opposite; blacklisted mails can also save CPU
#
# shortcircuit USER_IN_BLACKLIST       on
# shortcircuit USER_IN_BLACKLIST_TO    on
# shortcircuit SUBJECT_IN_BLACKLIST    on

#   if you have taken the time to correctly specify your "trusted_networks",
#   this is another good way to save CPU
#
# shortcircuit ALL_TRUSTED             on

#   and a well-trained bayes DB can save running rules, too
#
# shortcircuit BAYES_99                spam
# shortcircuit BAYES_00                ham

score T_DKIM_INVALID 6

endif # Mail::SpamAssassin::Plugin::Shortcircuit

Code:
spamassassin -D --lint
sty 17 13:00:47.225 [25537] dbg: logger: adding facilities: all
sty 17 13:00:47.225 [25537] dbg: logger: logging level is DBG
sty 17 13:00:47.225 [25537] dbg: generic: SpamAssassin version 3.4.1
sty 17 13:00:47.226 [25537] dbg: generic: Perl 5.020002, PREFIX=/usr, DEF_RULES_DIR=/usr/share/spamassassin, LOCAL_RULES_DIR=/etc/mail/spamassassin, LOCAL_STATE_DIR=/var/lib/spamassassin
sty 17 13:00:47.226 [25537] dbg: config: timing enabled
sty 17 13:00:47.229 [25537] dbg: config: score set 0 chosen.
sty 17 13:00:47.233 [25537] dbg: util: running in taint mode? yes
sty 17 13:00:47.233 [25537] dbg: util: taint mode: deleting unsafe environment variables, resetting PATH
sty 17 13:00:47.233 [25537] dbg: util: PATH included '/usr/local/sbin', keeping
sty 17 13:00:47.233 [25537] dbg: util: PATH included '/usr/local/bin', keeping
sty 17 13:00:47.233 [25537] dbg: util: PATH included '/usr/sbin', keeping
sty 17 13:00:47.233 [25537] dbg: util: PATH included '/usr/bin', keeping
sty 17 13:00:47.233 [25537] dbg: util: PATH included '/sbin', keeping
sty 17 13:00:47.233 [25537] dbg: util: PATH included '/bin', keeping
sty 17 13:00:47.234 [25537] dbg: util: final PATH set to: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
sty 17 13:00:47.402 [25537] dbg: diag: perl platform: 5.020002 linux
sty 17 13:00:47.402 [25537] dbg: diag: [...] module installed: Digest::SHA, version 5.88
sty 17 13:00:47.402 [25537] dbg: diag: [...] module installed: HTML::Parser, version 3.71
sty 17 13:00:47.402 [25537] dbg: diag: [...] module installed: Net::DNS, version 0.81
sty 17 13:00:47.402 [25537] dbg: diag: [...] module installed: NetAddr::IP, version 4.075
sty 17 13:00:47.402 [25537] dbg: diag: [...] module installed: Time::HiRes, version 1.9726
sty 17 13:00:47.402 [25537] dbg: diag: [...] module installed: Archive::Tar, version 1.96
sty 17 13:00:47.402 [25537] dbg: diag: [...] module installed: IO::Zlib, version 1.10
sty 17 13:00:47.402 [25537] dbg: diag: [...] module not installed: Digest::SHA1 ('require' failed)
sty 17 13:00:47.402 [25537] dbg: diag: [...] module installed: MIME::Base64, version 3.14
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: DB_File, version 1.831
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: Net::SMTP, version 2.33
sty 17 13:00:47.403 [25537] dbg: diag: [...] module not installed: Mail::SPF ('require' failed)
sty 17 13:00:47.403 [25537] dbg: diag: [...] module not installed: Geo::IP ('require' failed)
sty 17 13:00:47.403 [25537] dbg: diag: [...] module not installed: Net::CIDR::Lite ('require' failed)
sty 17 13:00:47.403 [25537] dbg: diag: [...] module not installed: Razor2::Client::Agent ('require' failed)
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: IO::Socket::IP, version 0.29
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: IO::Socket::INET6, version 2.72
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: IO::Socket::SSL, version 2.002
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: Compress::Zlib, version 2.064
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: Mail::DKIM, version 0.4
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: DBI, version 1.631
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: Getopt::Long, version 2.42
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: LWP::UserAgent, version 6.06
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: HTTP::Date, version 6.02
sty 17 13:00:47.403 [25537] dbg: diag: [...] module not installed: Encode::Detect::Detector ('require' failed)
sty 17 13:00:47.403 [25537] dbg: diag: [...] module not installed: Net::Patricia ('require' failed)
sty 17 13:00:47.403 [25537] dbg: diag: [...] module installed: Net::DNS::Nameserver, version 1276
sty 17 13:00:47.404 [25537] dbg: ignore: using a test message to lint rules
sty 17 13:00:47.404 [25537] dbg: config: using "/etc/mail/spamassassin" for site rules pre files
sty 17 13:00:47.404 [25537] dbg: config: read file /etc/mail/spamassassin/customrules.pre
sty 17 13:00:47.404 [25537] dbg: config: read file /etc/mail/spamassassin/init.pre
sty 17 13:00:47.404 [25537] dbg: config: read file /etc/mail/spamassassin/v310.pre
sty 17 13:00:47.405 [25537] dbg: config: read file /etc/mail/spamassassin/v312.pre
sty 17 13:00:47.405 [25537] dbg: config: read file /etc/mail/spamassassin/v320.pre
sty 17 13:00:47.405 [25537] dbg: config: read file /etc/mail/spamassassin/v330.pre
sty 17 13:00:47.405 [25537] dbg: config: read file /etc/mail/spamassassin/v340.pre
sty 17 13:00:47.405 [25537] dbg: config: read file /etc/mail/spamassassin/v341.pre
sty 17 13:00:47.405 [25537] dbg: config: read file /etc/mail/spamassassin/zabojcaspamu.pre
sty 17 13:00:47.406 [25537] dbg: config: using "/var/lib/spamassassin/3.004001" for sys rules pre files
sty 17 13:00:47.406 [25537] dbg: config: using "/var/lib/spamassassin/3.004001" for default rules dir
sty 17 13:00:47.406 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/sought_rules_yerp_org.cf
sty 17 13:00:47.406 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org.cf
sty 17 13:00:47.406 [25537] dbg: config: using "/etc/mail/spamassassin" for site rules dir
sty 17 13:00:47.406 [25537] dbg: config: read file /etc/mail/spamassassin/local.cf
sty 17 13:00:47.408 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::URIDNSBL from @INC
sty 17 13:00:47.414 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::Hashcash from @INC
sty 17 13:00:47.417 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::SPF from @INC
sty 17 13:00:47.422 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::Pyzor from @INC
sty 17 13:00:47.424 [25537] dbg: pyzor: local tests only, disabling Pyzor
sty 17 13:00:47.424 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::Razor2 from @INC
sty 17 13:00:47.427 [25537] dbg: razor2: local tests only, skipping Razor
sty 17 13:00:47.427 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::SpamCop from @INC
sty 17 13:00:47.429 [25537] dbg: reporter: local tests only, disabling SpamCop
sty 17 13:00:47.429 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::AutoLearnThreshold from @INC
sty 17 13:00:47.431 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::WhiteListSubject from @INC
sty 17 13:00:47.432 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::MIMEHeader from @INC
sty 17 13:00:47.433 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::ReplaceTags from @INC
sty 17 13:00:47.435 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::DKIM from @INC
sty 17 13:00:47.440 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::Check from @INC
sty 17 13:00:47.448 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::HTTPSMismatch from @INC
sty 17 13:00:47.449 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::URIDetail from @INC
sty 17 13:00:47.451 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::Bayes from @INC
sty 17 13:00:47.461 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::BodyEval from @INC
sty 17 13:00:47.464 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::DNSEval from @INC
sty 17 13:00:47.466 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::HTMLEval from @INC
sty 17 13:00:47.469 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::HeaderEval from @INC
sty 17 13:00:47.476 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::MIMEEval from @INC
sty 17 13:00:47.480 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::RelayEval from @INC
sty 17 13:00:47.482 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::URIEval from @INC
sty 17 13:00:47.483 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::WLBLEval from @INC
sty 17 13:00:47.486 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::VBounce from @INC
sty 17 13:00:47.487 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::ImageInfo from @INC
sty 17 13:00:47.490 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::FreeMail from @INC
sty 17 13:00:47.495 [25537] dbg: plugin: loading Mail::SpamAssassin::Plugin::AskDNS from @INC
sty 17 13:00:47.516 [25537] dbg: config: uri_detail adding (text =~ /(?^:www\.(t-online|telekom)\.de)/) to __ZABOJCASPAMU_RECHNUNG_201506112_2
sty 17 13:00:47.517 [25537] dbg: config: uri_detail adding (cleaned !~ /(?^:(t-online|telekom)\.de)/) to __ZABOJCASPAMU_RECHNUNG_201506112_2
sty 17 13:00:47.517 [25537] dbg: config: uri_detail added __ZABOJCASPAMU_RECHNUNG_201506112_2
sty 17 13:00:47.529 [25537] dbg: config: uri_detail adding (text =~ /(?^:pkobp\-weryfikuj\.com)/) to ZABOJCASPAMU_FAKE_IPKOv3
sty 17 13:00:47.529 [25537] dbg: config: uri_detail adding (cleaned !~ /(?^:www.ipko.pl)/) to ZABOJCASPAMU_FAKE_IPKOv3
sty 17 13:00:47.529 [25537] dbg: config: uri_detail added ZABOJCASPAMU_FAKE_IPKOv3
sty 17 13:00:47.548 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/sought_rules_yerp_org/20_sought.cf
sty 17 13:00:47.548 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/sought_rules_yerp_org/20_sought.cf" for included file
sty 17 13:00:47.548 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/sought_rules_yerp_org/20_sought.cf
sty 17 13:00:47.549 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/sought_rules_yerp_org/20_sought_fraud.cf
sty 17 13:00:47.549 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/sought_rules_yerp_org/20_sought_fraud.cf" for included file
sty 17 13:00:47.549 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/sought_rules_yerp_org/20_sought_fraud.cf
sty 17 13:00:47.568 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/10_default_prefs.cf
sty 17 13:00:47.568 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/10_default_prefs.cf" for included file
sty 17 13:00:47.568 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/10_default_prefs.cf
sty 17 13:00:47.581 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/10_hasbase.cf
sty 17 13:00:47.581 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/10_hasbase.cf" for included file
sty 17 13:00:47.582 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/10_hasbase.cf
sty 17 13:00:47.584 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_advance_fee.cf
sty 17 13:00:47.584 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_advance_fee.cf" for included file
sty 17 13:00:47.584 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_advance_fee.cf
sty 17 13:00:47.589 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_aux_tlds.cf
sty 17 13:00:47.589 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_aux_tlds.cf" for included file
sty 17 13:00:47.590 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_aux_tlds.cf
sty 17 13:00:47.591 [25537] dbg: config: cleared tld lists
sty 17 13:00:47.592 [25537] dbg: config: added tld list - xn--11b4c3d xn--1qqw23a xn--30rr7y xn--3bst00m xn--3ds443g xn--3e0b707e
sty 17 13:00:47.592 [25537] dbg: config: added tld list - xn--3pxu8k xn--42c2d9a xn--45brj9c xn--45q11c xn--4gbrim xn--55qw42g xn--55qx5d
sty 17 13:00:47.592 [25537] dbg: config: added tld list - xn--6frz82g xn--6qq986b3xl xn--80adxhks xn--80ao21a xn--80asehdb xn--80aswg
sty 17 13:00:47.592 [25537] dbg: config: added tld list - xn--90a3ac xn--90ais xn--9dbq2a xn--9et52u xn--b4w605ferd xn--c1avg xn--c2br7g
sty 17 13:00:47.592 [25537] dbg: config: added tld list - xn--cg4bki xn--clchc0ea0b2g2a9gcd xn--czr694b xn--czrs0t xn--czru2d xn--d1acj3b
sty 17 13:00:47.592 [25537] dbg: config: added tld list - xn--d1alf xn--eckvdtc9d xn--efvy88h xn--estv75g xn--fhbei xn--fiq228c5hs
sty 17 13:00:47.592 [25537] dbg: config: added tld list - xn--fiq64b xn--fiqs8s xn--fiqz9s xn--fjq720a xn--flw351e xn--fpcrj9c3d
sty 17 13:00:47.593 [25537] dbg: config: added tld list - xn--fzc2c9e2c xn--gecrj9c xn--h2brj9c xn--hxt814e xn--i1b6b1a6a2e xn--imr513n
sty 17 13:00:47.593 [25537] dbg: config: added tld list - xn--io0a7i xn--j1aef xn--j1amh xn--j6w193g xn--jlq61u9w7b xn--kcrx77d1x4a
sty 17 13:00:47.593 [25537] dbg: config: added tld list - xn--kprw13d xn--kpry57d xn--kpu716f xn--kput3i xn--l1acc xn--lgbbat1ad8j
sty 17 13:00:47.593 [25537] dbg: config: added tld list - xn--mgb9awbf xn--mgba3a3ejt xn--mgba3a4f16a xn--mgbaam7a8h xn--mgbab2bd
sty 17 13:00:47.593 [25537] dbg: config: added tld list - xn--mgbayh7gpa xn--mgbb9fbpob xn--mgbbh1a71e xn--mgbc0a9azcg xn--mgberp4a5d4ar
sty 17 13:00:47.593 [25537] dbg: config: added tld list - xn--mgbpl2fh xn--mgbt3dhd xn--mgbtx2b xn--mgbx4cd0ab xn--mk1bu44c xn--mxtq1m
sty 17 13:00:47.593 [25537] dbg: config: added tld list - xn--ngbc5azd xn--ngbe9e0a xn--node xn--nqv7f xn--nqv7fs00ema xn--nyqy26a
sty 17 13:00:47.593 [25537] dbg: config: added tld list - xn--o3cw4h xn--ogbpf8fl xn--p1acf xn--p1ai xn--pbt977c xn--pgbs0dh xn--pssy2u
sty 17 13:00:47.593 [25537] dbg: config: added tld list - xn--q9jyb4c xn--qcka1pmc xn--qxam xn--rhqv96g xn--s9brj9c xn--ses554g
sty 17 13:00:47.594 [25537] dbg: config: added tld list - xn--t60b56a xn--tckwe xn--unup4y xn--vermgensberater-ctb
sty 17 13:00:47.594 [25537] dbg: config: added tld list - xn--vermgensberatung-pwb xn--vhquv xn--vuq861b xn--wgbh1c xn--wgbl6a
sty 17 13:00:47.594 [25537] dbg: config: added tld list - xn--xhq521b xn--xkc2al3hye2a xn--xkc2dl3a5ee0h xn--y9a3aq xn--yfro4i67o
sty 17 13:00:47.594 [25537] dbg: config: added tld list - xn--ygbi2ammx xn--zfr164b
sty 17 13:00:47.594 [25537] dbg: config: added tld list - aaa aarp abarth abb abbott abbvie abc able abogado abudhabi ac academy
sty 17 13:00:47.594 [25537] dbg: config: added tld list - accenture accountant accountants aco active actor ad adac ads adult ae aeg aero
sty 17 13:00:47.594 [25537] dbg: config: added tld list - aetna af afamilycompany afl ag agakhan agency ai aig aigo airbus airforce
sty 17 13:00:47.594 [25537] dbg: config: added tld list - airtel akdn al alfaromeo alibaba alipay allfinanz allstate ally alsace alstom
sty 17 13:00:47.595 [25537] dbg: config: added tld list - am americanexpress americanfamily amex amfam amica amsterdam analytics android
sty 17 13:00:47.595 [25537] dbg: config: added tld list - anquan anz ao aol apartments app apple aq aquarelle ar aramco archi army arpa
sty 17 13:00:47.595 [25537] dbg: config: added tld list - art arte as asda asia associates at athleta attorney au auction audi audible
sty 17 13:00:47.595 [25537] dbg: config: added tld list - audio auspost author auto autos avianca aw aws ax axa az azure ba baby baidu
sty 17 13:00:47.595 [25537] dbg: config: added tld list - banamex bananarepublic band bank bar barcelona barclaycard barclays barefoot
sty 17 13:00:47.595 [25537] dbg: config: added tld list - bargains baseball basketball bauhaus bayern bb bbc bbt bbva bcg bcn bd be beats
sty 17 13:00:47.595 [25537] dbg: config: added tld list - beauty beer bentley berlin best bestbuy bet bf bg bh bharti bi bible bid bike
sty 17 13:00:47.595 [25537] dbg: config: added tld list - bing bingo bio biz bj black blackfriday blanco blockbuster blog bloomberg blue
sty 17 13:00:47.596 [25537] dbg: config: added tld list - bm bms bmw bn bnl bnpparibas bo boats boehringer bofa bom bond boo book booking
sty 17 13:00:47.596 [25537] dbg: config: added tld list - boots bosch bostik bot boutique br bradesco bridgestone broadway broker brother
sty 17 13:00:47.596 [25537] dbg: config: added tld list - brussels bs bt budapest bugatti build builders business buy buzz bv bw by bz
sty 17 13:00:47.596 [25537] dbg: config: added tld list - bzh ca cab cafe cal call calvinklein cam camera camp cancerresearch canon
sty 17 13:00:47.596 [25537] dbg: config: added tld list - capetown capital capitalone car caravan cards care career careers cars cartier
sty 17 13:00:47.596 [25537] dbg: config: added tld list - casa case caseih cash casino cat catering cba cbn cbre cbs cc cd ceb center ceo
sty 17 13:00:47.596 [25537] dbg: config: added tld list - cern cf cfa cfd cg ch chanel channel chase chat cheap chintai chloe christmas
sty 17 13:00:47.596 [25537] dbg: config: added tld list - chrome chrysler church ci cipriani circle cisco citadel citi citic city
sty 17 13:00:47.597 [25537] dbg: config: added tld list - cityeats ck cl claims cleaning click clinic clinique clothing cloud club
sty 17 13:00:47.597 [25537] dbg: config: added tld list - clubmed cm cn co coach codes coffee college cologne com comcast commbank
sty 17 13:00:47.597 [25537] dbg: config: added tld list - community company compare computer comsec condos construction consulting
sty 17 13:00:47.597 [25537] dbg: config: added tld list - contact contractors cooking cookingchannel cool coop corsica country coupon
sty 17 13:00:47.597 [25537] dbg: config: added tld list - coupons courses cr credit creditcard creditunion cricket crown crs cruises csc
sty 17 13:00:47.597 [25537] dbg: config: added tld list - cu cuisinella cv cw cx cy cymru cyou cz dabur dad dance date dating datsun day
sty 17 13:00:47.597 [25537] dbg: config: added tld list - dclk dds de deal dealer deals degree delivery dell deloitte delta democrat
sty 17 13:00:47.597 [25537] dbg: config: added tld list - dental dentist desi design dev dhl diamonds diet digital direct directory
sty 17 13:00:47.598 [25537] dbg: config: added tld list - discount discover dish diy dj dk dm dnp do docs doctor dodge dog doha domains
sty 17 13:00:47.598 [25537] dbg: config: added tld list - dot download drive dtv dubai duck dunlop duns dupont durban dvag dvr dz earth
sty 17 13:00:47.598 [25537] dbg: config: added tld list - eat ec eco edeka edu education ee eg email emerck energy engineer engineering
sty 17 13:00:47.598 [25537] dbg: config: added tld list - enterprises epost epson equipment er ******** erni es esq estate esurance et eu
sty 17 13:00:47.598 [25537] dbg: config: added tld list - eurovision eus events everbank exchange expert exposed express extraspace fage
sty 17 13:00:47.598 [25537] dbg: config: added tld list - fail fairwinds faith family fan fans farm farmers fashion fast fedex feedback
sty 17 13:00:47.598 [25537] dbg: config: added tld list - ferrari ferrero fi fiat fidelity fido film final finance financial fire
sty 17 13:00:47.598 [25537] dbg: config: added tld list - firestone firmdale fish fishing fit fitness fj fk flickr flights flir florist
sty 17 13:00:47.599 [25537] dbg: config: added tld list - flowers fly fm fo foo foodnetwork football ford forex forsale forum foundation
sty 17 13:00:47.599 [25537] dbg: config: added tld list - fox fr free fresenius frl frogans frontdoor frontier ftr fujitsu fujixerox fund
sty 17 13:00:47.599 [25537] dbg: config: added tld list - furniture futbol fyi ga gal gallery gallo gallup game games gap garden gb gbiz
sty 17 13:00:47.599 [25537] dbg: config: added tld list - gd gdn ge gea gent genting george gf gg ggee gh gi gift gifts gives giving gl
sty 17 13:00:47.599 [25537] dbg: config: added tld list - glade glass gle global globo gm gmail gmbh gmo gmx gn godaddy gold goldpoint
sty 17 13:00:47.599 [25537] dbg: config: added tld list - golf goo goodhands goodyear goog google gop got gov gp gq gr grainger graphics
sty 17 13:00:47.599 [25537] dbg: config: added tld list - gratis green gripe group gs gt gu guardian gucci guge guide guitars guru gw gy
sty 17 13:00:47.600 [25537] dbg: config: added tld list - hamburg hangout haus hbo hdfc hdfcbank health healthcare help helsinki here
sty 17 13:00:47.600 [25537] dbg: config: added tld list - hermes hgtv hiphop hisamitsu hitachi hiv hk hkt hm hn hockey holdings holiday
sty 17 13:00:47.600 [25537] dbg: config: added tld list - homedepot homegoods homes homesense honda honeywell horse host hosting hot
sty 17 13:00:47.600 [25537] dbg: config: added tld list - hoteles hotmail house how hr hsbc ht htc hu hughes hyatt hyundai ibm icbc ice
sty 17 13:00:47.600 [25537] dbg: config: added tld list - icu id ie ieee ifm iinet ikano il im imamat imdb immo immobilien in industries
sty 17 13:00:47.600 [25537] dbg: config: added tld list - infiniti info ing ink institute insurance insure int intel international intuit
sty 17 13:00:47.601 [25537] dbg: config: added tld list - investments io ipiranga iq ir irish is iselect ismaili ist istanbul it itau itv
sty 17 13:00:47.602 [25537] dbg: config: added tld list - iveco iwc jaguar java jcb jcp je jeep jetzt jewelry jlc jll jm jmp jnj jo jobs
sty 17 13:00:47.602 [25537] dbg: config: added tld list - joburg jot joy jp jpmorgan jprs juegos juniper kaufen kddi ke kerryhotels
sty 17 13:00:47.602 [25537] dbg: config: added tld list - kerrylogistics kerryproperties kfh kg kh ki kia kim kinder kindle kitchen kiwi
sty 17 13:00:47.602 [25537] dbg: config: added tld list - km kn koeln komatsu kosher kp kpmg kpn kr krd kred kuokgroup kw ky kyoto kz la
sty 17 13:00:47.602 [25537] dbg: config: added tld list - lacaixa ladbrokes lamborghini lamer lancaster lancia lancome land landrover
sty 17 13:00:47.602 [25537] dbg: config: added tld list - lanxess lasalle lat latino latrobe law lawyer lb lc lds lease leclerc lefrak
sty 17 13:00:47.603 [25537] dbg: config: added tld list - legal lego lexus lgbt li liaison lidl life lifeinsurance lifestyle lighting
sty 17 13:00:47.603 [25537] dbg: config: added tld list - like lilly limited limo lincoln linde link lipsy live living lixil lk loan
sty 17 13:00:47.603 [25537] dbg: config: added tld list - loans locker locus loft lol london lotte lotto love lpl lplfinancial lr ls lt
sty 17 13:00:47.603 [25537] dbg: config: added tld list - ltd ltda lu lundbeck lupin luxe luxury lv ly ma macys madrid maif maison makeup
sty 17 13:00:47.603 [25537] dbg: config: added tld list - man management mango market marketing markets marriott marshalls maserati
sty 17 13:00:47.603 [25537] dbg: config: added tld list - mattel mba mc mcd mcdonalds mckinsey md me med media meet melbourne meme
sty 17 13:00:47.603 [25537] dbg: config: added tld list - memorial men menu meo metlife mg mh miami microsoft mil mini mint mit
sty 17 13:00:47.604 [25537] dbg: config: added tld list - mitsubishi mk ml mlb mls mm mma mn mo mobi mobily moda moe moi mom monash money
sty 17 13:00:47.604 [25537] dbg: config: added tld list - monster montblanc mopar mormon mortgage moscow motorcycles mov movie movistar
sty 17 13:00:47.604 [25537] 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
sty 17 13:00:47.604 [25537] dbg: config: added tld list - nadex nagoya name nationwide natura navy nba nc ne nec net netbank netflix
sty 17 13:00:47.604 [25537] dbg: config: added tld list - network neustar new newholland news next nextdirect nexus nf nfl ng ngo nhk ni
sty 17 13:00:47.604 [25537] dbg: config: added tld list - nico nike nikon ninja nissan nissay nl no nokia northwesternmutual norton now
sty 17 13:00:47.604 [25537] dbg: config: added tld list - nowruz nowtv np nr nra nrw ntt nu nyc nz obi observer off office okinawa olayan
sty 17 13:00:47.605 [25537] dbg: config: added tld list - olayangroup oldnavy ollo om omega one ong onl online onyourside ooo open oracle
sty 17 13:00:47.605 [25537] dbg: config: added tld list - orange org organic orientexpress origins osaka otsuka ott ovh pa page
sty 17 13:00:47.605 [25537] dbg: config: added tld list - pamperedchef ********* panerai paris pars partners parts party passagens pay
sty 17 13:00:47.605 [25537] dbg: config: added tld list - pccw pe pet pf pfizer pg ph pharmacy philips photo photography photos physio
sty 17 13:00:47.605 [25537] dbg: config: added tld list - piaget pics pictet pictures pid pin ping pink pioneer pizza pk pl place play
sty 17 13:00:47.605 [25537] dbg: config: added tld list - playstation plumbing plus pm pn pnc pohl poker politie porn post pr pramerica
sty 17 13:00:47.605 [25537] dbg: config: added tld list - praxi press prime pro prod productions prof progressive promo properties
sty 17 13:00:47.605 [25537] dbg: config: added tld list - property protection pru prudential ps pt pub pw pwc py qa qpon quebec quest qvc
sty 17 13:00:47.606 [25537] dbg: config: added tld list - racing radio raid re read realestate realtor realty recipes red redstone
sty 17 13:00:47.606 [25537] dbg: config: added tld list - redumbrella rehab reise reisen reit ren rent rentals repair report republican
sty 17 13:00:47.606 [25537] dbg: config: added tld list - rest restaurant review reviews rexroth rich richardli ricoh rightathome rio rip
sty 17 13:00:47.606 [25537] dbg: config: added tld list - ro rocher rocks rodeo rogers room rs rsvp ru ruhr run rw rwe ryukyu sa saarland
sty 17 13:00:47.606 [25537] dbg: config: added tld list - safe safety sakura sale salon samsclub ******* sandvik sandvikcoromant sanofi
sty 17 13:00:47.606 [25537] dbg: config: added tld list - sap sapo sarl sas save saxo sb sbi sbs sc sca scb schaeffler schmidt
sty 17 13:00:47.606 [25537] dbg: config: added tld list - scholarships school schule schwarz science scjohnson scor scot sd se seat
sty 17 13:00:47.606 [25537] dbg: config: added tld list - secure security seek select sener services ses seven sew sex sexy sfr sg sh
sty 17 13:00:47.607 [25537] dbg: config: added tld list - shangrila sharp shaw shell shia shiksha shoes shop shopping shouji show
sty 17 13:00:47.607 [25537] dbg: config: added tld list - showtime shriram si silk sina singles site sj sk ski skin sky skype sl sling sm
sty 17 13:00:47.607 [25537] dbg: config: added tld list - smart smile sn sncf so soccer social softbank software sohu solar solutions
sty 17 13:00:47.607 [25537] dbg: config: added tld list - song sony soy space spiegel spot spreadbetting sr srl srt st stada staples star
sty 17 13:00:47.607 [25537] dbg: config: added tld list - starhub statebank statefarm statoil stc stcgroup stockholm storage store stream
sty 17 13:00:47.607 [25537] dbg: config: added tld list - studio study style su sucks supplies supply support surf surgery suzuki sv
sty 17 13:00:47.607 [25537] dbg: config: added tld list - swatch swiftcover swiss sx sy sydney symantec systems sz tab taipei talk taobao
sty 17 13:00:47.607 [25537] dbg: config: added tld list - target tatamotors tatar tattoo tax taxi tc tci td tdk team tech technology tel
sty 17 13:00:47.608 [25537] dbg: config: added tld list - telecity telefonica temasek tennis teva tf tg th thd theater theatre tiaa
sty 17 13:00:47.608 [25537] dbg: config: added tld list - tickets tienda tiffany tips tires tirol tj tjmaxx tjx tk tkmaxx tl tm tmall tn
sty 17 13:00:47.608 [25537] dbg: config: added tld list - to today tokyo tools top toray toshiba total tours town toyota toys tr trade
sty 17 13:00:47.608 [25537] dbg: config: added tld list - trading training travel travelchannel travelers travelersinsurance trust trv tt
sty 17 13:00:47.608 [25537] dbg: config: added tld list - tube tui tunes tushu tv tvs tw tz ua ubank ubs uconnect ug uk unicom university
sty 17 13:00:47.608 [25537] dbg: config: added tld list - uno uol ups us uy uz va vacations vana vanguard vc ve vegas ventures verisign
sty 17 13:00:47.608 [25537] dbg: config: added tld list - versicherung vet vg vi viajes video vig viking villas vin vip virgin visa
sty 17 13:00:47.608 [25537] dbg: config: added tld list - vision vista vistaprint viva vivo vlaanderen vn vodka volkswagen volvo vote
sty 17 13:00:47.609 [25537] dbg: config: added tld list - voting voto voyage vu vuelos wales walmart walter wang wanggou warman watch
sty 17 13:00:47.609 [25537] dbg: config: added tld list - watches weather weatherchannel webcam weber website wed wedding weibo weir wf
sty 17 13:00:47.609 [25537] dbg: config: added tld list - whoswho wien wiki williamhill win windows wine winners wme wolterskluwer
sty 17 13:00:47.609 [25537] dbg: config: added tld list - woodside work works world wow ws wtc wtf xbox xerox xfinity xihuan xin xperia
sty 17 13:00:47.609 [25537] dbg: config: added tld list - xxx xyz yachts yahoo yamaxun yandex ye yodobashi yoga yokohama you youtube yt
sty 17 13:00:47.609 [25537] dbg: config: added tld list - yun za zappos zara zero zip zippo zm zone zuerich zw
sty 17 13:00:47.619 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_body_tests.cf
sty 17 13:00:47.619 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_body_tests.cf" for included file
sty 17 13:00:47.620 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_body_tests.cf
sty 17 13:00:47.624 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_compensate.cf
sty 17 13:00:47.624 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_compensate.cf" for included file
sty 17 13:00:47.624 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_compensate.cf
sty 17 13:00:47.625 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_dnsbl_tests.cf
sty 17 13:00:47.625 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_dnsbl_tests.cf" for included file
sty 17 13:00:47.625 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_dnsbl_tests.cf
sty 17 13:00:47.630 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_drugs.cf
sty 17 13:00:47.630 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_drugs.cf" for included file
sty 17 13:00:47.630 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_drugs.cf
sty 17 13:00:47.647 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_dynrdns.cf
sty 17 13:00:47.647 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_dynrdns.cf" for included file
sty 17 13:00:47.647 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_dynrdns.cf
sty 17 13:00:47.653 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_fake_helo_tests.cf
sty 17 13:00:47.653 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_fake_helo_tests.cf" for included file
sty 17 13:00:47.653 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_fake_helo_tests.cf
sty 17 13:00:47.657 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_freemail.cf
sty 17 13:00:47.657 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_freemail.cf" for included file
sty 17 13:00:47.657 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_freemail.cf
sty 17 13:00:47.659 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_freemail_domains.cf
sty 17 13:00:47.659 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_freemail_domains.cf" for included file
sty 17 13:00:47.659 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_freemail_domains.cf
sty 17 13:00:47.660 [25537] dbg: plugin: Mail::SpamAssassin::Plugin::FreeMail=HASH(0x38339a0) implements 'parse_config', priority 0
sty 17 13:00:47.680 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_freemail_mailcom_domains.cf
sty 17 13:00:47.681 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_freemail_mailcom_domains.cf" for included file
sty 17 13:00:47.681 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_freemail_mailcom_domains.cf
sty 17 13:00:47.683 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_head_tests.cf
sty 17 13:00:47.683 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_head_tests.cf" for included file
sty 17 13:00:47.683 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_head_tests.cf
sty 17 13:00:47.706 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_html_tests.cf
sty 17 13:00:47.706 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_html_tests.cf" for included file
sty 17 13:00:47.706 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_html_tests.cf
sty 17 13:00:47.714 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_imageinfo.cf
sty 17 13:00:47.714 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_imageinfo.cf" for included file
sty 17 13:00:47.715 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_imageinfo.cf
sty 17 13:00:47.717 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_mailspike.cf
sty 17 13:00:47.717 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_mailspike.cf" for included file
sty 17 13:00:47.717 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_mailspike.cf
sty 17 13:00:47.720 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_meta_tests.cf
sty 17 13:00:47.720 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_meta_tests.cf" for included file
sty 17 13:00:47.720 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_meta_tests.cf
sty 17 13:00:47.724 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_net_tests.cf
sty 17 13:00:47.724 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_net_tests.cf" for included file
sty 17 13:00:47.724 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_net_tests.cf
sty 17 13:00:47.725 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_pdfinfo.cf
sty 17 13:00:47.725 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_pdfinfo.cf" for included file
sty 17 13:00:47.726 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_pdfinfo.cf
sty 17 13:00:47.727 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_phrases.cf
sty 17 13:00:47.727 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_phrases.cf" for included file
sty 17 13:00:47.727 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_phrases.cf
sty 17 13:00:47.736 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_porn.cf
sty 17 13:00:47.736 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_porn.cf" for included file
sty 17 13:00:47.736 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_porn.cf
sty 17 13:00:47.737 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_ratware.cf
sty 17 13:00:47.737 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_ratware.cf" for included file
sty 17 13:00:47.738 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_ratware.cf
sty 17 13:00:47.750 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_uri_tests.cf
sty 17 13:00:47.750 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_uri_tests.cf" for included file
sty 17 13:00:47.750 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_uri_tests.cf
sty 17 13:00:47.754 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_vbounce.cf
sty 17 13:00:47.755 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/20_vbounce.cf" for included file
sty 17 13:00:47.755 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/20_vbounce.cf
sty 17 13:00:47.768 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/23_bayes.cf
sty 17 13:00:47.769 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/23_bayes.cf" for included file
sty 17 13:00:47.769 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/23_bayes.cf
sty 17 13:00:47.771 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_accessdb.cf
sty 17 13:00:47.771 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_accessdb.cf" for included file
sty 17 13:00:47.771 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_accessdb.cf
sty 17 13:00:47.771 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_antivirus.cf
sty 17 13:00:47.771 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_antivirus.cf" for included file
sty 17 13:00:47.771 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_antivirus.cf
sty 17 13:00:47.772 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_asn.cf
sty 17 13:00:47.772 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_asn.cf" for included file
sty 17 13:00:47.772 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_asn.cf
sty 17 13:00:47.772 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_dcc.cf
sty 17 13:00:47.772 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_dcc.cf" for included file
sty 17 13:00:47.773 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_dcc.cf
sty 17 13:00:47.773 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_dkim.cf
sty 17 13:00:47.773 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_dkim.cf" for included file
sty 17 13:00:47.773 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_dkim.cf
sty 17 13:00:47.776 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_hashcash.cf
sty 17 13:00:47.776 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_hashcash.cf" for included file
sty 17 13:00:47.776 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_hashcash.cf
sty 17 13:00:47.778 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_pyzor.cf
sty 17 13:00:47.778 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_pyzor.cf" for included file
sty 17 13:00:47.778 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_pyzor.cf
sty 17 13:00:47.779 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_razor2.cf
sty 17 13:00:47.779 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_razor2.cf" for included file
sty 17 13:00:47.779 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_razor2.cf
sty 17 13:00:47.780 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_replace.cf
sty 17 13:00:47.780 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_replace.cf" for included file
sty 17 13:00:47.780 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_replace.cf
sty 17 13:00:47.787 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_spf.cf
sty 17 13:00:47.787 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_spf.cf" for included file
sty 17 13:00:47.788 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_spf.cf
sty 17 13:00:47.791 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_textcat.cf
sty 17 13:00:47.791 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_textcat.cf" for included file
sty 17 13:00:47.791 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_textcat.cf
sty 17 13:00:47.792 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_uribl.cf
sty 17 13:00:47.792 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/25_uribl.cf" for included file
sty 17 13:00:47.792 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/25_uribl.cf
sty 17 13:00:47.798 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_de.cf
sty 17 13:00:47.799 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_de.cf" for included file
sty 17 13:00:47.799 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_de.cf
sty 17 13:00:47.803 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_fr.cf
sty 17 13:00:47.803 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_fr.cf" for included file
sty 17 13:00:47.803 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_fr.cf
sty 17 13:00:47.806 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_it.cf
sty 17 13:00:47.806 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_it.cf" for included file
sty 17 13:00:47.806 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_it.cf
sty 17 13:00:47.806 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_nl.cf
sty 17 13:00:47.806 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_nl.cf" for included file
sty 17 13:00:47.807 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_nl.cf
sty 17 13:00:47.809 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_pl.cf
sty 17 13:00:47.809 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_pl.cf" for included file
sty 17 13:00:47.809 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_pl.cf
sty 17 13:00:47.827 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_pt_br.cf
sty 17 13:00:47.827 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_pt_br.cf" for included file
sty 17 13:00:47.828 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/30_text_pt_br.cf
sty 17 13:00:47.834 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/50_scores.cf
sty 17 13:00:47.834 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/50_scores.cf" for included file
sty 17 13:00:47.834 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/50_scores.cf
sty 17 13:00:47.860 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_adsp_override_dkim.cf
sty 17 13:00:47.860 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/60_adsp_override_dkim.cf" for included file
sty 17 13:00:47.860 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_adsp_override_dkim.cf
sty 17 13:00:47.863 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_awl.cf
sty 17 13:00:47.863 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/60_awl.cf" for included file
sty 17 13:00:47.863 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_awl.cf
sty 17 13:00:47.863 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_shortcircuit.cf
sty 17 13:00:47.863 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/60_shortcircuit.cf" for included file
sty 17 13:00:47.863 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_shortcircuit.cf
sty 17 13:00:47.864 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_txrep.cf
sty 17 13:00:47.864 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/60_txrep.cf" for included file
sty 17 13:00:47.864 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_txrep.cf
sty 17 13:00:47.865 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist.cf
sty 17 13:00:47.865 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist.cf" for included file
sty 17 13:00:47.865 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist.cf
sty 17 13:00:47.868 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist_dkim.cf
sty 17 13:00:47.868 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist_dkim.cf" for included file
sty 17 13:00:47.868 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist_dkim.cf
sty 17 13:00:47.872 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist_spf.cf
sty 17 13:00:47.872 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist_spf.cf" for included file
sty 17 13:00:47.873 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist_spf.cf
sty 17 13:00:47.874 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist_subject.cf
sty 17 13:00:47.875 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist_subject.cf" for included file
sty 17 13:00:47.875 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/60_whitelist_subject.cf
sty 17 13:00:47.875 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/72_active.cf
sty 17 13:00:47.875 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/72_active.cf" for included file
sty 17 13:00:47.876 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/72_active.cf
sty 17 13:00:48.080 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/72_scores.cf
sty 17 13:00:48.081 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/72_scores.cf" for included file
sty 17 13:00:48.081 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/72_scores.cf
sty 17 13:00:48.086 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/73_sandbox_manual_scores.cf
sty 17 13:00:48.086 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/73_sandbox_manual_scores.cf" for included file
sty 17 13:00:48.087 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/73_sandbox_manual_scores.cf
sty 17 13:00:48.087 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/local.cf
sty 17 13:00:48.087 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/local.cf" for included file
sty 17 13:00:48.087 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/local.cf
sty 17 13:00:48.088 [25537] dbg: config: fixed relative path: /var/lib/spamassassin/3.004001/updates_spamassassin_org/regression_tests.cf
sty 17 13:00:48.088 [25537] dbg: config: using "/var/lib/spamassassin/3.004001/updates_spamassassin_org/regression_tests.cf" for included file
sty 17 13:00:48.088 [25537] dbg: config: read file /var/lib/spamassassin/3.004001/updates_spamassassin_org/regression_tests.cf
sty 17 13:00:48.118 [25537] dbg: config: warning: score set for non-existent rule URI_OBFU_WWW
sty 17 13:00:48.118 [25537] dbg: config: warning: score set for non-existent rule FILL_THIS_FORM_LOAN
sty 17 13:00:48.119 [25537] dbg: config: warning: score set for non-existent rule FILL_THIS_FORM_FRAUD_PHISH
sty 17 13:00:48.119 [25537] dbg: config: warning: score set for non-existent rule BIGNUM_EMAILS
sty 17 13:00:48.119 [25537] dbg: config: warning: score set for non-existent rule HELO_LH_HOME
sty 17 13:00:48.128 [25537] dbg: config: warning: no description set for HELO_LOCALHOST
sty 17 13:00:48.129 [25537] dbg: config: warning: no description set for MIME_BOUND_EQ_REL
sty 17 13:00:48.129 [25537] dbg: config: warning: no description set for KB_RATWARE_BOUNDARY
sty 17 13:00:48.130 [25537] dbg: config: warning: no description set for MSOE_MID_WRONG_CASE
sty 17 13:00:48.130 [25537] dbg: config: warning: no description set for HELO_FRIEND
sty 17 13:00:48.131 [25537] dbg: config: warning: no description set for KB_RATWARE_OUTLOOK_MID
sty 17 13:00:48.131 [25537] dbg: config: warning: no description set for HK_LOTTO
sty 17 13:00:48.131 [25537] dbg: config: warning: no description set for LONG_TERM_PRICE
sty 17 13:00:48.132 [25537] dbg: config: warning: no description set for MID_DEGREES
sty 17 13:00:48.132 [25537] dbg: config: warning: no description set for BASE64_LENGTH_78_79
sty 17 13:00:48.132 [25537] dbg: config: warning: no description set for KB_RATWARE_MSGID
sty 17 13:00:48.132 [25537] dbg: config: warning: no description set for HELO_LH_LD
sty 17 13:00:48.132 [25537] dbg: config: warning: no description set for STOCK_PRICES
sty 17 13:00:48.133 [25537] dbg: config: warning: no description set for FROM_MISSP_SPF_FAIL
sty 17 13:00:48.133 [25537] dbg: config: warning: no description set for FSL_HELO_NON_FQDN_1
sty 17 13:00:48.133 [25537] dbg: config: warning: no description set for DKIM_POLICY_SIGNALL
sty 17 13:00:48.134 [25537] dbg: config: warning: no description set for MSGID_DOLLARS_RANDOM
sty 17 13:00:48.134 [25537] dbg: config: warning: no description set for LOTTERY_1
sty 17 13:00:48.135 [25537] dbg: config: warning: no description set for HIGH_CODEPAGE_URI
sty 17 13:00:48.135 [25537] dbg: config: warning: no description set for RCVD_IN_MSPIKE_ZBI
sty 17 13:00:48.136 [25537] dbg: config: warning: no description set for CURR_PRICE
sty 17 13:00:48.136 [25537] dbg: config: warning: no description set for STOX_REPLY_TYPE_WITHOUT_QUOTES
sty 17 13:00:48.136 [25537] dbg: config: warning: no description set for DKIM_VERIFIED
sty 17 13:00:48.137 [25537] dbg: config: warning: no description set for FSL_HELO_BARE_IP_2
sty 17 13:00:48.137 [25537] dbg: config: warning: no description set for URI_ONLY_LOW_CONTRAST
sty 17 13:00:48.137 [25537] dbg: config: warning: no description set for DOS_STOCK_BAT2
sty 17 13:00:48.138 [25537] dbg: config: warning: no description set for JM_I_FEEL_LUCKY
sty 17 13:00:48.139 [25537] dbg: config: warning: no description set for TVD_EB_PHISH
sty 17 13:00:48.139 [25537] dbg: config: warning: no description set for LOTTERY_PH_004470
sty 17 13:00:48.139 [25537] dbg: config: warning: no description set for LIVEFILESTORE
sty 17 13:00:48.140 [25537] dbg: config: warning: no description set for KB_RATWARE_OUTLOOK_08
sty 17 13:00:48.140 [25537] dbg: config: warning: no description set for GEO_QUERY_STRING
sty 17 13:00:48.140 [25537] dbg: config: warning: no description set for FSL_INTERIA_ABUSE
sty 17 13:00:48.141 [25537] dbg: config: warning: no description set for RCVD_FORGED_WROTE2
sty 17 13:00:48.142 [25537] dbg: config: warning: no description set for JM_RCVD_QMAILV1
sty 17 13:00:48.142 [25537] dbg: config: warning: no description set for FSL_HELO_SETUP
sty 17 13:00:48.143 [25537] dbg: config: warning: no description set for L_SPAM_TOOL_13
sty 17 13:00:48.143 [25537] dbg: config: warning: no description set for FAKE_REPLY_C
sty 17 13:00:48.143 [25537] dbg: config: warning: no description set for HTML_TITLE_SUBJ_DIFF
sty 17 13:00:48.144 [25537] dbg: config: warning: no description set for TVD_RCVD_SPACE_BRACKET
sty 17 13:00:48.145 [25537] dbg: config: warning: no description set for KB_RATWARE_OUTLOOK_16
sty 17 13:00:48.145 [25537] dbg: config: warning: no description set for STOX_AND_PRICE
sty 17 13:00:48.146 [25537] dbg: config: warning: no description set for DKIM_POLICY_SIGNSOME
sty 17 13:00:48.146 [25537] dbg: config: warning: no description set for SHORT_TERM_PRICE
sty 17 13:00:48.147 [25537] dbg: config: warning: no description set for REPLYTO_WITHOUT_TO_CC
sty 17 13:00:48.147 [25537] dbg: config: warning: no description set for SB_GIF_AND_NO_URIS
sty 17 13:00:48.149 [25537] dbg: config: warning: no description set for TVD_PP_PHISH
sty 17 13:00:48.150 [25537] dbg: config: warning: no description set for THEBAT_UNREG
sty 17 13:00:48.150 [25537] dbg: config: warning: no description set for RCVD_IN_BRBL_LASTEXT
sty 17 13:00:48.150 [25537] dbg: config: warning: no description set for FSL_FAKE_HOTMAIL_RVCD
sty 17 13:00:48.150 [25537] dbg: config: warning: no description set for LOCAL_DOMAIN_MUST_HAVE_DKIM
sty 17 13:00:48.151 [25537] dbg: config: warning: no description set for KB_DATE_CONTAINS_TAB
sty 17 13:00:48.151 [25537] dbg: config: warning: no description set for TVD_SPACE_RATIO
sty 17 13:00:48.151 [25537] dbg: config: warning: no description set for FSL_HELO_BARE_IP_1
sty 17 13:00:48.151 [25537] dbg: config: warning: no description set for HELO_OEM
sty 17 13:00:48.151 [25537] dbg: config: warning: no description set for X_MAILER_CME_6543_MSN
sty 17 13:00:48.152 [25537] dbg: config: warning: no description set for STOX_REPLY_TYPE
sty 17 13:00:48.152 [25537] dbg: config: warning: no description set for TVD_FINGER_02
sty 17 13:00:48.152 [25537] dbg: config: warning: no description set for KB_FAKED_THE_BAT
sty 17 13:00:48.153 [25537] dbg: config: warning: no description set for HTTPS_HTTP_MISMATCH
sty 17 13:00:48.153 [25537] dbg: config: warning: no description set for BUG6152_INVALID_DATE_TZ_ABSURD
sty 17 13:00:48.153 [25537] dbg: config: warning: no description set for CTYPE_001C_A
sty 17 13:00:48.153 [25537] dbg: config: warning: no description set for CTYPE_001C_B
sty 17 13:00:48.154 [25537] dbg: config: warning: no description set for KB_RATWARE_OUTLOOK_12
sty 17 13:00:48.155 [25537] dbg: config: warning: no description set for FSL_HELO_DEVICE
sty 17 13:00:48.155 [25537] dbg: config: warning: no description set for DKIM_POLICY_TESTING
sty 17 13:00:48.156 [25537] dbg: config: warning: no description set for MULTIPART_ALT_NON_TEXT
sty 17 13:00:48.156 [25537] dbg: config: warning: no description set for JM_TORA_XM
sty 17 13:00:48.654 [25537] dbg: rules: __ZABOJCASPAMU_FORYOUONLYv1_4 merged duplicates: __ZABOJCASPAMU_UNIVERSAL_HTMLv20160728_4
sty 17 13:00:48.654 [25537] dbg: rules: ZABOJCASPAMU_TWO_DCCRED merged duplicates: ZABOJCASPAMU_TWO_REDDCC
sty 17 13:00:48.654 [25537] dbg: rules: LOCAL_X_PHP_Originating merged duplicates: ZABOJCASPAMU_X_PHP_Originating __HAS_PHP_ORIG_SCRIPT
sty 17 13:00:48.654 [25537] dbg: rules: __HAS_REPLY_TO merged duplicates: __REPLYTO_EXISTS
sty 17 13:00:48.654 [25537] dbg: rules: __ZABOJCASPAMU_SA_20160728_2 merged duplicates: __ZABOJCASPAMU_TO_TOO_MANYv4
sty 17 13:00:48.654 [25537] dbg: rules: __ZABOJCASPAMU_RECHNUNG_201506111_2 merged duplicates: __ZABOJCASPAMU_RECHNUNG_201506112_1
sty 17 13:00:48.655 [25537] dbg: rules: __LOCAL_EFAKTURA_ZA_ENERGIEv2_2 merged duplicates: __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv3_4 __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv4_4 __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv5_4 __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv6_2 __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv8_3
sty 17 13:00:48.655 [25537] dbg: rules: __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv3_1 merged duplicates: __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv4_1 __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv5_1 __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv7_2 __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv8_2
sty 17 13:00:48.655 [25537] dbg: rules: __ZABOJCASPAMU_RP_FOR_THIS_SPAM merged duplicates: __ZABOJCASPAMU_RP_FOR_THIS_SPAM1
sty 17 13:00:48.655 [25537] dbg: rules: __HAS_LIST_ID merged duplicates: __ML2
sty 17 13:00:48.655 [25537] dbg: rules: __THEBAT_MUA merged duplicates: __XM_THEBAT
sty 17 13:00:48.655 [25537] dbg: rules: __ZABOJCASPAMU_FORYOUONLYv1_TOO_MANY merged duplicates: __ZABOJCASPAMU_TO_TOO_MANY_1 __ZABOJCASPAMU_TO_TOO_MANY_STUFFv1
sty 17 13:00:48.655 [25537] dbg: rules: __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv3_2 merged duplicates: __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv4_2
sty 17 13:00:48.655 [25537] dbg: rules: ZABOJCASPAMU_X_PHP_Script merged duplicates: __HAS_PHP_SCRIPT
sty 17 13:00:48.655 [25537] dbg: rules: __ZABOJCASPAMU_LOGIN_NAZWISKO merged duplicates: __ZABOJCASPAMU_LOGIN_NAZWISKO1
sty 17 13:00:48.655 [25537] dbg: rules: __JM_REACTOR_DATE merged duplicates: __RATWARE_0_TZ_DATE
sty 17 13:00:48.656 [25537] dbg: rules: __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv6_1 merged duplicates: __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv7_1 __ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv8_1
sty 17 13:00:48.656 [25537] dbg: rules: __HAS_XMAIL merged duplicates: __HAS_X_MAILER
sty 17 13:00:48.656 [25537] dbg: rules: __ZABOJCASPAMU_POCZTAPOLSKA_1 merged duplicates: __ZABOJCASPAMU_POCZTAPOLSKA_3
sty 17 13:00:48.656 [25537] dbg: rules: __ZABOJCASPAMU_FORYOUONLYv1_2 merged duplicates: __ZABOJCASPAMU_UNIVERSAL_HTMLv20160728_2
sty 17 13:00:48.656 [25537] dbg: rules: __DOS_HAS_ANY_URI merged duplicates: __HAS_ANY_URI __HAS_URI
sty 17 13:00:48.656 [25537] dbg: rules: __PLAY_20161005_3 merged duplicates: __PLAY_20161005v2_3
sty 17 13:00:48.656 [25537] dbg: rules: ZABOJCASPAMU_UNSUBS merged duplicates: __DOS_HAS_LIST_UNSUB
sty 17 13:00:48.656 [25537] dbg: rules: __EXPERIMENTAL_FAKE_DHL5_2 merged duplicates: __HAS_DKIM_SIGHD
sty 17 13:00:48.656 [25537] dbg: rules: __ZABOJCASPAMU_FORYOUONLYv1_1 merged duplicates: __ZABOJCASPAMU_UNIVERSAL_HTMLv20160728_1
sty 17 13:00:48.656 [25537] dbg: rules: __ZABOJCASPAMU_IMPORTMESS_2 merged duplicates: __ZABOJCASPAMU_IMPORTMESSv4_1
sty 17 13:00:48.657 [25537] dbg: rules: ZABOJCASPAMU_40PLNZADARMO1 merged duplicates: __ZABOJCASPAMU_40PLNZADARMO2u
sty 17 13:00:48.657 [25537] dbg: rules: CTYPE_001C_A merged duplicates: DATE_IN_FUTURE_96_XX JM_SOUGHT_1 JM_SOUGHT_FRAUD_1
sty 17 13:00:48.657 [25537] dbg: rules: __DOS_HAS_MAILING_LIST merged duplicates: __ML4
sty 17 13:00:48.657 [25537] dbg: rules: __PLAY_20161005_1 merged duplicates: __PLAY_20161005v2_1
sty 17 13:00:48.657 [25537] dbg: rules: ZABOJCASPAMU_TWO_01 merged duplicates: ZABOJCASPAMU_TWO_8817
sty 17 13:00:48.657 [25537] dbg: rules: __EXPERIMENTAL_FAKE_DHL5_1 merged duplicates: __ZABOJCASPAMU_FAKE_DHL3_1
sty 17 13:00:48.657 [25537] dbg: rules: __ZABOJCASPAMU_FORYOUONLYv1_3 merged duplicates: __ZABOJCASPAMU_UNIVERSAL_HTMLv20160728_3
sty 17 13:00:48.659 [25537] dbg: config: finish parsing
sty 17 13:00:48.680 [25537] dbg: plugin: Mail::SpamAssassin::Plugin::ReplaceTags=HASH(0x3348730) implements 'finish_parsing_end', priority 0
sty 17 13:00:48.681 [25537] dbg: plugin: Mail::SpamAssassin::Plugin::FreeMail=HASH(0x38339a0) implements 'finish_parsing_end', priority 0
sty 17 13:00:48.681 [25537] dbg: replacetags: replacing tags
sty 17 13:00:48.698 [25537] dbg: replacetags: done replacing tags
sty 17 13:00:48.698 [25537] dbg: FreeMail: loaded freemail_domains entries: 2537 normal, 31 wildcard
sty 17 13:00:48.702 [25537] dbg: plugin: Mail::SpamAssassin::Plugin::Bayes=HASH(0x350d070) implements 'learner_new', priority 0
sty 17 13:00:48.703 [25537] dbg: bayes: learner_new self=Mail::SpamAssassin::Plugin::Bayes=HASH(0x350d070), bayes_store_module=Mail::SpamAssassin::BayesStore::DBM
sty 17 13:00:48.717 [25537] dbg: bayes: learner_new: got store=Mail::SpamAssassin::BayesStore::DBM=HASH(0x31371e8)
sty 17 13:00:48.717 [25537] dbg: plugin: Mail::SpamAssassin::Plugin::Bayes=HASH(0x350d070) implements 'learner_is_scan_available', priority 0
sty 17 13:00:48.718 [25537] dbg: bayes: tie-ing to DB file R/O /root/.spamassassin/bayes_toks
sty 17 13:00:48.718 [25537] dbg: bayes: tie-ing to DB file R/O /root/.spamassassin/bayes_seen
sty 17 13:00:48.719 [25537] dbg: bayes: found bayes db version 3
sty 17 13:00:48.719 [25537] dbg: bayes: DB journal sync: last sync: 1484636705
sty 17 13:00:48.719 [25537] dbg: config: score set 2 chosen.
sty 17 13:00:48.721 [25537] dbg: dns: EDNS, UDP payload size 4096
sty 17 13:00:48.721 [25537] dbg: dns: servers obtained from Net::DNS : [8.8.8.8]:53, [8.8.4.4]:53
sty 17 13:00:48.721 [25537] dbg: dns: nameservers set to 8.8.8.8, 8.8.4.4
sty 17 13:00:48.721 [25537] dbg: dns: using socket module: IO::Socket::IP version 0.29
sty 17 13:00:48.721 [25537] dbg: dns: is Net::DNS::Resolver available? yes
sty 17 13:00:48.722 [25537] dbg: dns: Net::DNS version: 0.81
sty 17 13:00:48.722 [25537] dbg: config: time limit 300.0 s
sty 17 13:00:48.722 [25537] dbg: message: main message type: text/plain
sty 17 13:00:48.722 [25537] dbg: message: ---- MIME PARSER START ----
sty 17 13:00:48.722 [25537] dbg: message: parsing normal part
sty 17 13:00:48.722 [25537] dbg: message: storing a body to memory
sty 17 13:00:48.723 [25537] dbg: message: ---- MIME PARSER END ----
sty 17 13:00:48.723 [25537] dbg: check: pms new, time limit in 299.999 s
sty 17 13:00:48.723 [25537] dbg: plugin: Mail::SpamAssassin::Plugin::DNSEval=HASH(0x35aa1f0) implements 'check_start', priority 0
sty 17 13:00:48.725 [25537] dbg: plugin: Mail::SpamAssassin::Plugin::Check=HASH(0x311c840) implements 'check_main', priority 0
sty 17 13:00:48.725 [25537] dbg: config: trusted_networks are not configured; it is recommended that you configure trusted_networks manually
sty 17 13:00:48.725 [25537] dbg: metadata: X-Spam-Relays-Trusted:
sty 17 13:00:48.725 [25537] dbg: metadata: X-Spam-Relays-Untrusted:
sty 17 13:00:48.725 [25537] dbg: metadata: X-Spam-Relays-Internal:
sty 17 13:00:48.725 [25537] dbg: metadata: X-Spam-Relays-External:
sty 17 13:00:48.726 [25537] dbg: plugin: Mail::SpamAssassin::Plugin::AskDNS=HASH(0x388c220) implements 'extract_metadata', priority 0
sty 17 13:00:48.726 [25537] dbg: dns: is DNS available? 0
sty 17 13:00:48.726 [25537] dbg: check: tagrun - tag AUTHORDOMAIN is now ready, value: compiling.spamassassin.taint.org
sty 17 13:00:48.726 [25537] dbg: check: tagrun - tag RELAYSTRUSTED is now ready, value:
sty 17 13:00:48.726 [25537] dbg: check: tagrun - tag RELAYSUNTRUSTED is now ready, value:
sty 17 13:00:48.726 [25537] dbg: check: tagrun - tag RELAYSINTERNAL is now ready, value:
sty 17 13:00:48.726 [25537] dbg: check: tagrun - tag RELAYSEXTERNAL is now ready, value:
sty 17 13:00:48.726 [25537] dbg: check: tagrun - tag LANGUAGES is now ready, value: <UNDEF>
sty 17 13:00:48.727 [25537] dbg: message: no encoding detected
sty 17 13:00:48.727 [25537] dbg: plugin: Mail::SpamAssassin::Plugin::URIDNSBL=HASH(0x3073d68) implements 'parsed_metadata', priority 0
sty 17 13:00:48.727 [25537] dbg: rules: local tests only, ignoring RBL eval
sty 17 13:00:48.727 [25537] dbg: check: check_main, time limit in 299.994 s
sty 17 13:00:48.733 [25537] dbg: check: running tests for priority: -1000
sty 17 13:00:48.733 [25537] dbg: rules: running head tests; score so far=0
sty 17 13:00:48.733 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 304 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_neg1000_1
sty 17 13:00:48.734 [25537] dbg: rules: run_generic_tests - compiling eval code: head, priority -1000
sty 17 13:00:48.734 [25537] dbg: rules: compiled head tests
sty 17 13:00:48.734 [25537] dbg: rules: running head_eval tests; score so far=0
sty 17 13:00:48.735 [25537] dbg: rules: run_eval_tests - compiling eval code: 9, priority -1000
sty 17 13:00:48.736 [25537] dbg: eval: all '*From' addrs: [email protected]
sty 17 13:00:48.737 [25537] dbg: eval: all '*To' addrs:
sty 17 13:00:48.737 [25537] dbg: rules: running body tests; score so far=0
sty 17 13:00:48.737 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 247 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_neg1000_1
sty 17 13:00:48.738 [25537] dbg: rules: run_generic_tests - compiling eval code: body, priority -1000
sty 17 13:00:48.738 [25537] dbg: rules: compiled body tests
sty 17 13:00:48.738 [25537] dbg: rules: running uri tests; score so far=0
sty 17 13:00:48.738 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 245 chars of Mail::SpamAssassin::Plugin::Check::_uri_tests_neg1000_1
sty 17 13:00:48.738 [25537] dbg: rules: run_generic_tests - compiling eval code: uri, priority -1000
sty 17 13:00:48.739 [25537] dbg: rules: compiled uri tests
sty 17 13:00:48.739 [25537] dbg: rules: running rawbody tests; score so far=0
sty 17 13:00:48.739 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 253 chars of Mail::SpamAssassin::Plugin::Check::_rawbody_tests_neg1000_1
sty 17 13:00:48.739 [25537] dbg: rules: run_generic_tests - compiling eval code: rawbody, priority -1000
sty 17 13:00:48.740 [25537] dbg: rules: compiled rawbody tests
sty 17 13:00:48.740 [25537] dbg: rules: running full tests; score so far=0
sty 17 13:00:48.740 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 282 chars of Mail::SpamAssassin::Plugin::Check::_full_tests_neg1000_1
sty 17 13:00:48.740 [25537] dbg: rules: run_generic_tests - compiling eval code: full, priority -1000
sty 17 13:00:48.741 [25537] dbg: rules: compiled full tests
sty 17 13:00:48.741 [25537] dbg: rules: running meta tests; score so far=0
sty 17 13:00:48.741 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 307 chars of Mail::SpamAssassin::Plugin::Check::_meta_tests_neg1000_1
sty 17 13:00:48.741 [25537] dbg: rules: run_generic_tests - compiling eval code: meta, priority -1000
sty 17 13:00:48.741 [25537] dbg: rules: compiled meta tests
sty 17 13:00:48.742 [25537] dbg: check: running tests for priority: -950
sty 17 13:00:48.742 [25537] dbg: rules: running head tests; score so far=0
sty 17 13:00:48.742 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 302 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_neg950_1
sty 17 13:00:48.743 [25537] dbg: rules: run_generic_tests - compiling eval code: head, priority -950
sty 17 13:00:48.743 [25537] dbg: rules: compiled head tests
sty 17 13:00:48.743 [25537] dbg: rules: running head_eval tests; score so far=0
sty 17 13:00:48.743 [25537] dbg: rules: run_eval_tests - compiling eval code: 9, priority -950
sty 17 13:00:48.744 [25537] dbg: rules: running body tests; score so far=0
sty 17 13:00:48.744 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 245 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_neg950_1
sty 17 13:00:48.745 [25537] dbg: rules: run_generic_tests - compiling eval code: body, priority -950
sty 17 13:00:48.745 [25537] dbg: rules: compiled body tests
sty 17 13:00:48.745 [25537] dbg: rules: running uri tests; score so far=0
sty 17 13:00:48.745 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 243 chars of Mail::SpamAssassin::Plugin::Check::_uri_tests_neg950_1
sty 17 13:00:48.745 [25537] dbg: rules: run_generic_tests - compiling eval code: uri, priority -950
sty 17 13:00:48.746 [25537] dbg: rules: compiled uri tests
sty 17 13:00:48.746 [25537] dbg: rules: running rawbody tests; score so far=0
sty 17 13:00:48.746 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 251 chars of Mail::SpamAssassin::Plugin::Check::_rawbody_tests_neg950_1
sty 17 13:00:48.746 [25537] dbg: rules: run_generic_tests - compiling eval code: rawbody, priority -950
sty 17 13:00:48.746 [25537] dbg: rules: compiled rawbody tests
sty 17 13:00:48.747 [25537] dbg: rules: running full tests; score so far=0
sty 17 13:00:48.747 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 280 chars of Mail::SpamAssassin::Plugin::Check::_full_tests_neg950_1
sty 17 13:00:48.747 [25537] dbg: rules: run_generic_tests - compiling eval code: full, priority -950
sty 17 13:00:48.747 [25537] dbg: rules: compiled full tests
sty 17 13:00:48.747 [25537] dbg: rules: running meta tests; score so far=0
sty 17 13:00:48.748 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 305 chars of Mail::SpamAssassin::Plugin::Check::_meta_tests_neg950_1
sty 17 13:00:48.748 [25537] dbg: rules: run_generic_tests - compiling eval code: meta, priority -950
sty 17 13:00:48.748 [25537] dbg: rules: compiled meta tests
sty 17 13:00:48.748 [25537] dbg: check: running tests for priority: -900
sty 17 13:00:48.748 [25537] dbg: rules: running head tests; score so far=0
sty 17 13:00:48.749 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 302 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_neg900_1
sty 17 13:00:48.749 [25537] dbg: rules: run_generic_tests - compiling eval code: head, priority -900
sty 17 13:00:48.749 [25537] dbg: rules: compiled head tests
sty 17 13:00:48.749 [25537] dbg: rules: running head_eval tests; score so far=0
sty 17 13:00:48.750 [25537] dbg: rules: run_eval_tests - compiling eval code: 9, priority -900
sty 17 13:00:48.751 [25537] dbg: rules: running body tests; score so far=0
sty 17 13:00:48.751 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 245 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_neg900_1
sty 17 13:00:48.751 [25537] dbg: rules: run_generic_tests - compiling eval code: body, priority -900
sty 17 13:00:48.751 [25537] dbg: rules: compiled body tests
sty 17 13:00:48.752 [25537] dbg: rules: running uri tests; score so far=0
sty 17 13:00:48.752 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 243 chars of Mail::SpamAssassin::Plugin::Check::_uri_tests_neg900_1
sty 17 13:00:48.752 [25537] dbg: rules: run_generic_tests - compiling eval code: uri, priority -900
sty 17 13:00:48.752 [25537] dbg: rules: compiled uri tests
sty 17 13:00:48.752 [25537] dbg: rules: running rawbody tests; score so far=0
sty 17 13:00:48.753 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 251 chars of Mail::SpamAssassin::Plugin::Check::_rawbody_tests_neg900_1
sty 17 13:00:48.753 [25537] dbg: rules: run_generic_tests - compiling eval code: rawbody, priority -900
sty 17 13:00:48.753 [25537] dbg: rules: compiled rawbody tests
sty 17 13:00:48.753 [25537] dbg: rules: running full tests; score so far=0
sty 17 13:00:48.753 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 280 chars of Mail::SpamAssassin::Plugin::Check::_full_tests_neg900_1
sty 17 13:00:48.754 [25537] dbg: rules: run_generic_tests - compiling eval code: full, priority -900
sty 17 13:00:48.754 [25537] dbg: rules: compiled full tests
sty 17 13:00:48.754 [25537] dbg: rules: running meta tests; score so far=0
sty 17 13:00:48.754 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 305 chars of Mail::SpamAssassin::Plugin::Check::_meta_tests_neg900_1
sty 17 13:00:48.754 [25537] dbg: rules: run_generic_tests - compiling eval code: meta, priority -900
sty 17 13:00:48.755 [25537] dbg: rules: compiled meta tests
sty 17 13:00:48.755 [25537] dbg: check: running tests for priority: -400
sty 17 13:00:48.755 [25537] dbg: rules: running head tests; score so far=0
sty 17 13:00:48.755 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 302 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_neg400_1
sty 17 13:00:48.755 [25537] dbg: rules: run_generic_tests - compiling eval code: head, priority -400
sty 17 13:00:48.756 [25537] dbg: rules: compiled head tests
sty 17 13:00:48.756 [25537] dbg: rules: running body tests; score so far=0
sty 17 13:00:48.756 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 245 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_neg400_1
sty 17 13:00:48.756 [25537] dbg: rules: run_generic_tests - compiling eval code: body, priority -400
sty 17 13:00:48.756 [25537] dbg: rules: compiled body tests
sty 17 13:00:48.757 [25537] dbg: rules: running uri tests; score so far=0
sty 17 13:00:48.757 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 243 chars of Mail::SpamAssassin::Plugin::Check::_uri_tests_neg400_1
sty 17 13:00:48.757 [25537] dbg: rules: run_generic_tests - compiling eval code: uri, priority -400
sty 17 13:00:48.757 [25537] dbg: rules: compiled uri tests
sty 17 13:00:48.757 [25537] dbg: rules: running body_eval tests; score so far=0
sty 17 13:00:48.758 [25537] dbg: rules: run_eval_tests - compiling eval code: 11, priority -400
sty 17 13:00:48.758 [25537] dbg: plugin: Mail::SpamAssassin::Plugin::WLBLEval=HASH(0x37cdaa8) implements 'check_wb_list', priority 0
sty 17 13:00:48.759 [25537] dbg: bayes: DB journal sync: last sync: 1484636705
sty 17 13:00:48.759 [25537] dbg: bayes: corpus size: nspam = 6447, nham = 10691
sty 17 13:00:48.761 [25537] dbg: bayes: tokenized body: 120 tokens
sty 17 13:00:48.761 [25537] dbg: bayes: tokenized uri: 0 tokens
sty 17 13:00:48.761 [25537] dbg: bayes: tokenized invisible: 0 tokens
sty 17 13:00:48.762 [25537] dbg: bayes: tokenized header: 14 tokens
sty 17 13:00:48.764 [25537] dbg: bayes: score = 0.842430192354246
sty 17 13:00:48.765 [25537] dbg: bayes: DB expiry: tokens in DB: 142457, Expiry max size: 150000, Oldest atime: 1481739956, Newest atime: 1484629300, Last expire: 1484517922, Current time: 1484654448
sty 17 13:00:48.765 [25537] dbg: bayes: DB journal sync: last sync: 1484636705
sty 17 13:00:48.765 [25537] dbg: bayes: untie-ing
sty 17 13:00:48.765 [25537] dbg: check: tagrun - tag BAYESTCHAMMY is now ready, value: 1
sty 17 13:00:48.766 [25537] dbg: check: tagrun - tag BAYESTCSPAMMY is now ready, value: 3
sty 17 13:00:48.766 [25537] dbg: check: tagrun - tag BAYESTCLEARNED is now ready, value: 5
sty 17 13:00:48.766 [25537] dbg: check: tagrun - tag BAYESTC is now ready, value: 20
sty 17 13:00:48.766 [25537] dbg: check: tagrun - tag HAMMYTOKENS is now ready, value: CODE(0x3b4a820)
sty 17 13:00:48.766 [25537] dbg: check: tagrun - tag SPAMMYTOKENS is now ready, value: CODE(0x3a8c010)
sty 17 13:00:48.766 [25537] dbg: check: tagrun - tag TOKENSUMMARY is now ready, value: CODE(0x355c1a0)
sty 17 13:00:48.767 [25537] dbg: rules: running rawbody tests; score so far=0
sty 17 13:00:48.767 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 251 chars of Mail::SpamAssassin::Plugin::Check::_rawbody_tests_neg400_1
sty 17 13:00:48.767 [25537] dbg: rules: run_generic_tests - compiling eval code: rawbody, priority -400
sty 17 13:00:48.768 [25537] dbg: rules: compiled rawbody tests
sty 17 13:00:48.768 [25537] dbg: rules: running full tests; score so far=0
sty 17 13:00:48.768 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 280 chars of Mail::SpamAssassin::Plugin::Check::_full_tests_neg400_1
sty 17 13:00:48.769 [25537] dbg: rules: run_generic_tests - compiling eval code: full, priority -400
sty 17 13:00:48.769 [25537] dbg: rules: compiled full tests
sty 17 13:00:48.769 [25537] dbg: rules: running meta tests; score so far=0
sty 17 13:00:48.769 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 305 chars of Mail::SpamAssassin::Plugin::Check::_meta_tests_neg400_1
sty 17 13:00:48.769 [25537] dbg: rules: run_generic_tests - compiling eval code: meta, priority -400
sty 17 13:00:48.770 [25537] dbg: rules: compiled meta tests
sty 17 13:00:48.770 [25537] dbg: check: running tests for priority: 0
sty 17 13:00:48.770 [25537] dbg: rules: running head tests; score so far=0
sty 17 13:00:48.787 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60635 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_0_1
sty 17 13:00:48.798 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60119 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_0_2
sty 17 13:00:48.810 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60202 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_0_3
sty 17 13:00:48.822 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60263 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_0_4
sty 17 13:00:48.834 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60398 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_0_5
sty 17 13:00:48.846 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60337 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_0_6
sty 17 13:00:48.855 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 23112 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_0_7
sty 17 13:00:48.859 [25537] dbg: rules: run_generic_tests - compiling eval code: head, priority 0
sty 17 13:00:48.860 [25537] dbg: rules: compiled head tests
sty 17 13:00:48.861 [25537] dbg: rules: ran header rule __HAS_SUBJECT ======> got hit: "<YES>"
sty 17 13:00:48.861 [25537] dbg: rules: ran header rule __SUBJ_SHORT ======> got hit: "negative match"
sty 17 13:00:48.862 [25537] dbg: rules: ran header rule __MSOE_MID_WRONG_CASE ======> got hit: "
sty 17 13:00:48.862 [25537] dbg: rules: [...] Message-Id: "
sty 17 13:00:48.863 [25537] dbg: rules: ran header rule __MSGID_OK_DIGITS ======> got hit: "1484654447"
sty 17 13:00:48.863 [25537] dbg: rules: ran header rule __MSGID_OK_HOST ======> got hit: "@lint_rules>"
sty 17 13:00:48.863 [25537] dbg: rules: ran header rule __MISSING_REF ======> got hit: "UNSET"
sty 17 13:00:48.863 [25537] dbg: rules: ran header rule __HAS_MESSAGE_ID ======> got hit: "<YES>"
sty 17 13:00:48.864 [25537] dbg: rules: ran header rule __SANE_MSGID ======> got hit: "<1484654447@lint_rules>
sty 17 13:00:48.864 [25537] dbg: rules: [...] "
sty 17 13:00:48.864 [25537] dbg: rules: ran header rule __HAS_MSGID ======> got hit: "<"
sty 17 13:00:48.864 [25537] dbg: rules: ran header rule __MISSING_REPLY ======> got hit: "UNSET"
sty 17 13:00:48.865 [25537] dbg: rules: ran header rule __TO_NO_ARROWS_R ======> got hit: "negative match"
sty 17 13:00:48.865 [25537] dbg: rules: ran header rule __HAS_FROM ======> got hit: "<YES>"
sty 17 13:00:48.868 [25537] dbg: rules: running head_eval tests; score so far=0
sty 17 13:00:48.869 [25537] dbg: rules: run_eval_tests - compiling eval code: 9, priority 0
sty 17 13:00:48.878 [25537] dbg: FreeMail: RULE (__freemail_hdr_replyto) check_freemail_header
sty 17 13:00:48.878 [25537] dbg: FreeMail: header Reply-To not found from mail
sty 17 13:00:48.879 [25537] dbg: FreeMail: RULE (__freemail_replyto) check_freemail_replyto
sty 17 13:00:48.879 [25537] dbg: FreeMail: From address: [email protected]
sty 17 13:00:48.879 [25537] dbg: FreeMail: Reply-To is not freemail, skipping check
sty 17 13:00:48.879 [25537] dbg: FreeMail: RULE (__freemail_reply) check_freemail_replyto
sty 17 13:00:48.879 [25537] dbg: FreeMail: From address: [email protected]
sty 17 13:00:48.880 [25537] dbg: FreeMail: No Reply-To and From is not freemail, skipping check
sty 17 13:00:48.880 [25537] dbg: rules: ran eval rule NO_RELAYS ======> got hit (1)
sty 17 13:00:48.881 [25537] dbg: FreeMail: RULE (FREEMAIL_FROM) check_freemail_from
sty 17 13:00:48.881 [25537] dbg: FreeMail: all from-addresses: [email protected]
sty 17 13:00:48.883 [25537] dbg: FreeMail: RULE (FREEMAIL_REPLYTO_END_DIGIT) check_freemail_header regex:\d@
sty 17 13:00:48.883 [25537] dbg: FreeMail: header Reply-To not found from mail
sty 17 13:00:48.883 [25537] dbg: FreeMail: RULE (FREEMAIL_ENVFROM_END_DIGIT) check_freemail_header regex:\d@
sty 17 13:00:48.884 [25537] dbg: FreeMail: header EnvelopeFrom not found from mail
sty 17 13:00:48.884 [25537] dbg: spf: cannot get Envelope-From, cannot use SPF
sty 17 13:00:48.884 [25537] dbg: spf: spf_whitelist_from: could not find useable envelope sender
sty 17 13:00:48.885 [25537] dbg: spf: def_spf_whitelist_from: could not find useable envelope sender
sty 17 13:00:48.885 [25537] dbg: FreeMail: RULE (__smf_freemail_hdr_replyto) check_freemail_header
sty 17 13:00:48.885 [25537] dbg: FreeMail: header Reply-To:addr not found from mail
sty 17 13:00:48.885 [25537] dbg: rules: ran eval rule __GATED_THROUGH_RCVD_REMOVER ======> got hit (1)
sty 17 13:00:48.886 [25537] dbg: rules: ran eval rule MISSING_HEADERS ======> got hit (1)
sty 17 13:00:48.887 [25537] dbg: rules: running body tests; score so far=1.203
sty 17 13:00:48.890 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60055 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_0_1
sty 17 13:00:48.907 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60043 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_0_2
sty 17 13:00:48.925 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60453 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_0_3
sty 17 13:00:48.941 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60417 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_0_4
sty 17 13:00:48.957 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60249 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_0_5
sty 17 13:00:48.973 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60059 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_0_6
sty 17 13:00:48.989 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60270 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_0_7
sty 17 13:00:49.006 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 62022 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_0_8
sty 17 13:00:49.022 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60137 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_0_9
sty 17 13:00:49.037 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 14824 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_0_10
sty 17 13:00:49.041 [25537] dbg: rules: run_generic_tests - compiling eval code: body, priority 0
sty 17 13:00:49.041 [25537] dbg: rules: compiled body tests
sty 17 13:00:49.072 [25537] dbg: rules: ran body rule __BODY_TEXT_LINE ======> got hit: "I"
sty 17 13:00:49.095 [25537] dbg: rules: ran body rule __NONEMPTY_BODY ======> got hit: "I"
sty 17 13:00:49.098 [25537] dbg: rules: running uri tests; score so far=1.203
sty 17 13:00:49.101 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 39935 chars of Mail::SpamAssassin::Plugin::Check::_uri_tests_0_1
sty 17 13:00:49.110 [25537] dbg: rules: run_generic_tests - compiling eval code: uri, priority 0
sty 17 13:00:49.110 [25537] dbg: rules: compiled uri tests
sty 17 13:00:49.110 [25537] dbg: rules: running body_eval tests; score so far=1.203
sty 17 13:00:49.113 [25537] dbg: rules: run_eval_tests - compiling eval code: 11, priority 0
sty 17 13:00:49.136 [25537] dbg: eval: body_length - 1340 - check for min of 1024
sty 17 13:00:49.137 [25537] dbg: eval: body_length - 1340 - check for min of 128
sty 17 13:00:49.141 [25537] dbg: eval: tvd_vertical_words value: 21 / min: 0 / max: 10 - value must be >= min and < max
sty 17 13:00:49.142 [25537] dbg: rules: ran eval rule BAYES_80 ======> got hit (1)
sty 17 13:00:49.142 [25537] dbg: eval: body_length - 1340 - check for min of 256
sty 17 13:00:49.143 [25537] dbg: https_http_mismatch: anchors 0
sty 17 13:00:49.145 [25537] dbg: eval: body_length - 1340 - check for min of 512
sty 17 13:00:49.147 [25537] dbg: rules: running rawbody tests; score so far=3.903
sty 17 13:00:49.149 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 32266 chars of Mail::SpamAssassin::Plugin::Check::_rawbody_tests_0_1
sty 17 13:00:49.157 [25537] dbg: rules: run_generic_tests - compiling eval code: rawbody, priority 0
sty 17 13:00:49.157 [25537] dbg: rules: compiled rawbody tests
sty 17 13:00:49.158 [25537] dbg: rules: running rawbody_eval tests; score so far=3.903
sty 17 13:00:49.158 [25537] dbg: rules: run_eval_tests - compiling eval code: 15, priority 0
sty 17 13:00:49.160 [25537] dbg: rules: running full tests; score so far=3.903
sty 17 13:00:49.160 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 1358 chars of Mail::SpamAssassin::Plugin::Check::_full_tests_0_1
sty 17 13:00:49.161 [25537] dbg: rules: run_generic_tests - compiling eval code: full, priority 0
sty 17 13:00:49.161 [25537] dbg: rules: compiled full tests
sty 17 13:00:49.161 [25537] dbg: rules-all: running full rule __BASE64_MDAW
sty 17 13:00:49.161 [25537] dbg: rules-all: running full rule NULL_IN_BODY
sty 17 13:00:49.161 [25537] dbg: rules: running full_eval tests; score so far=3.903
sty 17 13:00:49.161 [25537] dbg: rules: run_eval_tests - compiling eval code: 13, priority 0
sty 17 13:00:49.162 [25537] dbg: dkim: signature verification disabled, DNS resolving not available
sty 17 13:00:49.162 [25537] dbg: rules: running meta tests; score so far=3.903
sty 17 13:00:49.163 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 297 chars of Mail::SpamAssassin::Plugin::Check::_meta_tests_0_1
sty 17 13:00:49.163 [25537] dbg: rules: run_generic_tests - compiling eval code: meta, priority 0
sty 17 13:00:49.163 [25537] dbg: rules: compiled meta tests
sty 17 13:00:49.163 [25537] dbg: check: running tests for priority: 500
sty 17 13:00:49.163 [25537] dbg: dns: harvest_dnsbl_queries
sty 17 13:00:49.164 [25537] dbg: rules: running head tests; score so far=3.903
sty 17 13:00:49.164 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 298 chars of Mail::SpamAssassin::Plugin::Check::_head_tests_500_1
sty 17 13:00:49.164 [25537] dbg: rules: run_generic_tests - compiling eval code: head, priority 500
sty 17 13:00:49.165 [25537] dbg: rules: compiled head tests
sty 17 13:00:49.165 [25537] dbg: rules: running body tests; score so far=3.903
sty 17 13:00:49.165 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 241 chars of Mail::SpamAssassin::Plugin::Check::_body_tests_500_1
sty 17 13:00:49.165 [25537] dbg: rules: run_generic_tests - compiling eval code: body, priority 500
sty 17 13:00:49.165 [25537] dbg: rules: compiled body tests
sty 17 13:00:49.166 [25537] dbg: rules: running uri tests; score so far=3.903
sty 17 13:00:49.166 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 239 chars of Mail::SpamAssassin::Plugin::Check::_uri_tests_500_1
sty 17 13:00:49.166 [25537] dbg: rules: run_generic_tests - compiling eval code: uri, priority 500
sty 17 13:00:49.166 [25537] dbg: rules: compiled uri tests
sty 17 13:00:49.166 [25537] dbg: rules: running rawbody tests; score so far=3.903
sty 17 13:00:49.167 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 247 chars of Mail::SpamAssassin::Plugin::Check::_rawbody_tests_500_1
sty 17 13:00:49.167 [25537] dbg: rules: run_generic_tests - compiling eval code: rawbody, priority 500
sty 17 13:00:49.167 [25537] dbg: rules: compiled rawbody tests
sty 17 13:00:49.167 [25537] dbg: rules: running full tests; score so far=3.903
sty 17 13:00:49.167 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 276 chars of Mail::SpamAssassin::Plugin::Check::_full_tests_500_1
sty 17 13:00:49.168 [25537] dbg: rules: run_generic_tests - compiling eval code: full, priority 500
sty 17 13:00:49.168 [25537] dbg: rules: compiled full tests
sty 17 13:00:49.168 [25537] dbg: rules: running meta tests; score so far=3.903
sty 17 13:00:49.171 [25537] dbg: rules: meta test ZABOJCASPAMU_FAKE_DHL has undefined dependency 'ZABOJCASPAMUL_FAKE_MSID'
sty 17 13:00:49.173 [25537] dbg: rules: meta test LOCAL_TWO_4427 has undefined dependency 'ZABOJCASPAMU_XMAILER'
sty 17 13:00:49.176 [25537] dbg: rules: meta test ZABOJCASPAMU_XMAILER_BULK has undefined dependency '__LOCAL_XMAILER_SPAMER'
sty 17 13:00:49.177 [25537] dbg: rules: meta test ZABOJCASPAMU_BULK_SIGNATURE has undefined dependency 'DCC_CHECK'
sty 17 13:00:49.177 [25537] dbg: rules: meta test ZABOJCASPAMU_PRZYPOMNIENIE_O_PLATNOSCI has undefined dependency 'ZABOJCASPAMUPART_IN_SUBJECT'
sty 17 13:00:49.177 [25537] dbg: rules: meta test __ZABOJCASPAMU_DZU144 has undefined dependency '__ZABOJCASPAMU_DZU_07'
sty 17 13:00:49.180 [25537] dbg: rules: meta test ZABOJCASPAMU_ARROWHTTP3FRAZY has undefined dependency 'ZABOJCASPAMU_LINK_3FRAZY'
sty 17 13:00:49.180 [25537] dbg: rules: meta test ZABOJCASPAMU_TWO_DCCRED has undefined dependency 'DCC_CHECK'
sty 17 13:00:49.182 [25537] dbg: rules: meta test ZABOJCASPAMU_FROM_PREZENT has undefined dependency 'LOCAL_XMAILER_iMTA'
sty 17 13:00:49.182 [25537] dbg: rules: meta test ZABOJCASPAMU_FROM_PREZENT has undefined dependency 'LOCAL_MSID_LOCALHOST'
sty 17 13:00:49.183 [25537] dbg: rules: meta test DIGEST_MULTIPLE has undefined dependency 'DCC_CHECK'
sty 17 13:00:49.187 [25537] info: rules: meta test ZABOJCASPAMU_DATE_IN_FUTURE has dependency 'DATE_IN_FUTURE_96_XX' with a zero score
sty 17 13:00:49.188 [25537] dbg: rules: meta test ZABOJCASPAMU_XMAILER_PRECEDENCE has undefined dependency '__LOCAL_XMAILER_SPAMER'
sty 17 13:00:49.188 [25537] dbg: rules: meta test ZABOJCASPAMU_XMAILER_PRECEDENCE has undefined dependency 'LOCAL_PRECEDENCE_BULK'
sty 17 13:00:49.189 [25537] dbg: rules: meta test ZABOJCASPAMU_EFAKTURA_ZA_ENERGIEv7 has undefined dependency 'DCC_CHECK'
sty 17 13:00:49.189 [25537] dbg: rules: meta test ZABOJCASPAMU_POCZTAPOLSKA1 has undefined dependency '_ZABOJCASPAMU_POCZTAPOLSKA_1'
sty 17 13:00:49.195 [25537] dbg: rules: meta test ZABOJCASPAMU_EMAILCOM has undefined dependency '__LOCAL_LOGIN_NAZWISKO'
sty 17 13:00:49.195 [25537] dbg: rules: meta test ZABOJCASPAMU_EMAILCOM has undefined dependency '__LOCAL_DOMENA_MAILCOM'
sty 17 13:00:49.195 [25537] dbg: rules: meta test ZABOJCASPAMU_EMAILCOM has undefined dependency '__LOCAL_RP_FOR_THIS_SPAM'
sty 17 13:00:49.201 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60149 chars of Mail::SpamAssassin::Plugin::Check::_meta_tests_500_1
sty 17 13:00:49.212 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 60042 chars of Mail::SpamAssassin::Plugin::Check::_meta_tests_500_2
sty 17 13:00:49.224 [25537] dbg: rules: flush_evalstr (add_evalstr) compiling 63549 chars of Mail::SpamAssassin::Plugin::Check::_meta_tests_500_3
sty 17 13:00:49.237 [25537] dbg: rules: flush_evalstr (run_generic_tests) compiling 15262 chars of Mail::SpamAssassin::Plugin::Check::_meta_tests_500_4
sty 17 13:00:49.240 [25537] dbg: rules: run_generic_tests - compiling eval code: meta, priority 500
sty 17 13:00:49.240 [25537] dbg: rules: compiled meta tests
sty 17 13:00:49.244 [25537] dbg: check: is spam? score=5.703 required=5
sty 17 13:00:49.244 [25537] dbg: check: tests=BAYES_80,MISSING_DATE,MISSING_HEADERS,NO_RECEIVED,NO_RELAYS,ZABOJCASPAMU_BAYES_HIGH
sty 17 13:00:49.244 [25537] dbg: check: subtests=__BODY_TEXT_LINE,__EMPTY_BODY,__GATED_THROUGH_RCVD_REMOVER,__HAS_FROM,__HAS_MESSAGE_ID,__HAS_MSGID,__HAS_SUBJECT,__KHOP_NO_FULL_NAME,__MISSING_REF,__MISSING_REPLY,__MSGID_OK_DIGITS,__MSGID_OK_HOST,__MSOE_MID_WRONG_CASE,__NONEMPTY_BODY,__NOT_SPOOFED,__SANE_MSGID,__SUBJ_SHORT,__TO_NO_ARROWS_R,__UNUSABLE_MSGID
sty 17 13:00:49.245 [25537] dbg: timing: total 1840 ms - init: 1318 (71.6%), parse: 1.13 (0.1%), extract_message_metadata: 2.4 (0.1%), get_uri_detail_list: 4.7 (0.3%), tests_pri_-1000: 9 (0.5%), compile_gen: 222 (12.1%), compile_eval: 31 (1.7%), tests_pri_-950: 6 (0.3%), tests_pri_-900: 6 (0.4%), tests_pri_-400: 15 (0.8%), check_bayes: 8 (0.4%), b_tokenize: 3.5 (0.2%), b_tok_get_all: 0.56 (0.0%), b_comp_prob: 0.39 (0.0%), b_tok_touch_all: 0.04 (0.0%), b_finish: 2.2 (0.1%), tests_pri_0: 393 (21.4%), tests_pri_500: 80 (4.3%)


Thank you for your patience.
 
Just a guess.. try and install missing perl modules, you can see them in lines with module not installed
 
Just a guess.. try and install missing perl modules, you can see them in lines with module not installed


I installed all of the after previous post. Problem still exist.
Code:
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: Digest::SHA1, version 2.13
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: HTML::Parser, version 3.71
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: Net::DNS, version 1.07
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: NetAddr::IP, version 4.075
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: Time::HiRes, version 1.9726
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: Archive::Tar, version 1.96
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: IO::Zlib, version 1.10
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: Digest::SHA1, version 2.13
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: MIME::Base64, version 3.14
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: DB_File, version 1.831
sty 17 19:16:10.842 [10626] dbg: diag: [...] module installed: Net::SMTP, version 2.33
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: Mail::SPF, version v2.009
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: Geo::IP, version 1.50
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: Net::CIDR::Lite, version 0.21
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: Razor2::Client::Agent, version 2.84
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: IO::Socket::IP, version 0.29
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: IO::Socket::INET6, version 2.72
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: IO::Socket::SSL, version 2.002
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: Compress::Zlib, version 2.064
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: Mail::DKIM, version 0.4
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: DBI, version 1.631
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: Getopt::Long, version 2.42
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: LWP::UserAgent, version 6.06
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: HTTP::Date, version 6.02
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: Encode::Detect::Detector, version 1.01
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: Net::Patricia, version 1.22
sty 17 19:16:10.843 [10626] dbg: diag: [...] module installed: Net::DNS::Nameserver, version 1493
 
Just a wild guess... try and rebuild Spamassassin (hardly can help... but still it's worth trying). I see you've got Perl 5.020002... could it be the reason? I'd rather check it.
 
Back
Top