• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

"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