folgendes Problem habe ich, die Emails werden ausgewertet allerdings werden Emails die _eindeutig_ Spam sind nicht erkannt und auch noch als Ham erlernt, hier mal ein Beispiel:
Code: Select all
X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on
xyz
X-Spam-Level:
X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=ham
version=3.1.1
X-Envelope-From: xbfjkji@nangura.net.id
Code: Select all
X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on
xyz
X-Spam-Level:
X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=ham
version=3.1.1
X-Envelope-From: ryxozbafp@vtr.net
oder aber:
Code: Select all
X-Spam-Checker-Version: SpamAssassin 3.1.1 (2006-03-10) on
xyz
X-Spam-Level: ***
X-Spam-Status: No, score=3.3 required=5.0 tests=EXTRA_MPART_TYPE,
HTML_IMAGE_ONLY_12,HTML_MESSAGE,MIME_QP_LONG_LINE autolearn=no
version=3.1.1
Ich würde auch gerne eine globale Anti Spam Konfiguration haben, also nicht pro User, in den Verzeichnissen gibt es auch kein .spamassassin Verzeichnis.
Hier mal meine local.cf:
Code: Select all
# How many hits before a message is considered spam.
required_score 5.0
# Change the subject of suspected spam
rewrite_header subject [SPAM _SCORE_]
add_header all Status _YESNO_, score=_SCORE_required=_REQD_ tests=_TESTS_ autolearn=_AUTOLEARN_
use_terse_report 1
# Encapsulate spam in an attachment (0=no, 1=yes, 2=safe)
report_safe 1
# Enable the Bayes system
use_bayes 1
# Enable Bayes auto-learning
bayes_auto_learn 1
bayes_file_mode 0700
bayes_path /etc/mail/spamassassin/.spamassassin/bayes
bayes_auto_learn_threshold_spam 7.0
check_mx_attempts 1
# Enable or disable network checks
skip_rbl_checks 1
use_razor2 1
use_pyzor 1
# Mail using languages used in these country codes will not be marked
# as being possibly spam in a foreign language.
# - english german
ok_languages en de
# Mail using locales used in these country codes will not be marked
# as being possibly spam in a foreign language.
ok_locales en
Danke schonmal. :)