• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

"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