normally a score of 1.9 is not high enough to mark a mail as spam, did you change this, or can you post the complete scores of the mails in question?
edit:
also see the content of the rule https://wiki.apache.org/spamassassin/Rules/DEAR_SOMETHING
hmm - well most rules raising the score do indicate that the message will have problems being accepted on the receiving host as well (quite a few mailservers use spamassassin with similar rulesets) (FUZZY_CREDIT, XFER_LOTSA_MONEY, LOTS_OF_MONEY )
disabling a single rule will still keep the score above 3.
but to answer your question - you can create a custom spamassassin configuration to adapt the scores of individual rules - see the pmg-admin-guide https://www.proxmox.com/images/download/pmg/docs/pmg-admin-guide.pdf - section 4.8
# multi.uribl.com
# Contains an URL listed in the URIBL blacklist (0 1.7 0 1.7)
score URIBL_BLACK 0 3.7 0 3.7
# dbl.spamhaus.org
# Contains a spam URL listed in the Spamhaus DBL blocklist (0 2.5 0 2.5)
score URIBL_DBL_SPAM 0 4.5 0 4.5
# Contains a Phishing URL listed in the Spamhaus DBL blocklist
score URIBL_DBL_PHISH 0 4.5 0 4.5
# Contains a malware URL listed in the Spamhaus DBL blocklist
score URIBL_DBL_MALWARE 0 4.5 0 4.5
# Contains a botned C&C URL listed in the Spamhaus DBL blocklist
score URIBL_DBL_BOTNETCC 0 4.5 0 4.5
# Contains an abused spamvertized URL listed in the Spamhaus DBL blocklist
score URIBL_DBL_ABUSE_SPAM 0 4.5 0 4.5
# Contains an abused phishing URL listed in the Spamhaus DBL blocklist
score URIBL_DBL_ABUSE_PHISH 0 4.5 0 4.5
# Contains an abused malware URL listed in the Spamhaus DBL blocklist
score URIBL_DBL_ABUSE_MALW 0 4.5 0 4.5
# Contains an abused botnet C&C URL listed in the Spamhaus DBL blocklist
score URIBL_DBL_ABUSE_BOTCC 0 4.5 0 4.5
loadplugin Mail::SpamAssassin:lugin::RelayCountry
ifplugin Mail::SpamAssassin:lugin::RelayCountry
header RELAYCOUNTRY_BAD X-Relay-Countries =~ /(IN|CN|RU|UA|RO|VN)/
describe RELAYCOUNTRY_BAD Relayed through spammy country at some point
score RELAYCOUNTRY_BAD 3.0
#ADJUST COUNTRY CODES TO YOUR NEED e.g. FR|BE|..... - use only a low score
header RELAYCOUNTRY_GOOD X-Relay-Countries =~ /^(DE|AT|CH)/
describe RELAYCOUNTRY_GOOD First untrusted GW is DE, AT or CH
score RELAYCOUNTRY_GOOD -0.01
endif # Mail::SpamAssassin:lugin::RelayCountry
Thanks for the hint! - I just sent a patch to the mailing-list.Thx for your feedback. Note that in the pdf section 4.8 the path /etc/mail/spamassasin/ should be replace by /etc/mail/spamassassin/ (missing one "s").
That's odd - we don't ship this file - you can check whether it comes from a debian-package with:The file custom.cf exists yet in my PMG (not created by me) and not a cluster node. It contains :
This is described quite well in the spamassassin documentation:But I still do not know how to disable the DEAR_SOMETHING rule by adding a new rule...