• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

"failure notice" spam after upgrade to 9.0.0

Missing Headers

I updated to Plesk 9 and now my clients are all complaining about recieving emails without to and from headers the subject also appears to be missing. It happens even if I switch Spamassasin off for the address.

Does anyonone know what is going on here, and how to fix it.

By the way I would also be interested to get a resolution to the from mydomain to mydomain SPAM plague.
 
I updated to Plesk 9 and now my clients are all complaining about recieving emails without to and from headers the subject also appears to be missing. It happens even if I switch Spamassasin off for the address.

Does anyonone know what is going on here, and how to fix it.

By the way I would also be interested to get a resolution to the from mydomain to mydomain SPAM plague.

Check this thread - there is a KB solution for broken headers. Update resolved SPAM issue and I am a happy camper now.
 
If you want to totally eliminate backscatter and **** email bounce messages edit the following (this fix is for postfix as that is what I use)

/etc/postfix/main.cf

find:

smtpd_sender_restrictions = check_sender_access hash:/var/spool/postfix/plesk/blacklists

change to:

smtpd_sender_restrictions = check_sender_access hash:/var/spool/postfix/plesk/blacklists, reject_non_fqdn_sender, reject_unauthenticated_sender_login_mismatch, reject_unknown_sender_domain


find (watch this one - any time you change mail server setting it gets reset!) :

smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination

change to:

smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination, reject_non_fqdn_recipient, reject_unknown_recipient_domain, reject_unlisted_recipient, reject_unverified_recipient


find:

mydestination = localhost.$mydomain, localhost, localhost.localdomain

change to:

mydestination = $myhostname localhost.$mydomain $mydomain


in "# REJECTING MAIL FOR UNKNOWN LOCAL USERS" add this:

local_recipient_maps = $virtual_mailbox_maps


Your problems are solved.
 
Back
Top