• 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.

Forwarded to devs Issue DKIM signatures not applied when incoming mail disabled

QWeb Ric

Regular Pleskian
Username:

TITLE

Issue DKIM signatures not applied when incoming mail disabled

PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE

Plesk Obsidian 18.0.52 Update #3
CentOS Linux 7.9.2009

PROBLEM DESCRIPTION

When a domain's mail settings are set to "Disabled for incoming mail", emails are successfully generated and sent by PHP applications, e.g. via PHPMailer and Sendmail, but such emails don't contain their DKIM signatures. DKIM signatures are only attached if the mail settings are set to "Enabled".

STEPS TO REPRODUCE

- Enable DKIM on a domain
- Add the appropriate DNS records as per the generated public key values
- Set the domains mail service to "Disabled for incoming mail""
- Generate an email via a PHP script, e.g. using a basic PHPMailer() script, or just vanilla sendmail()

ACTUAL RESULT

Email is delivered, but doesn't include DKIM signature. Signature is only present if mail service is set to "Enabled".

EXPECTED RESULT

Email should include DKIM signature.

ANY ADDITIONAL INFORMATION

Example PHPMailer script. Requires the PHPMailer library too, of course:

$mail = new phpmailer();
$mail->AddAddress('recipient@foobah.com');
$mail->AddReplyTo('sender@foobah.com');
$mail->From = 'sender@foobah.com';
$mail->FromName = 'Sender';
$mail->Subject = 'Test';
$mail->Body = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head></head><body><p>Test</p></body></html>';;
$mail->AltBody = 'Test';
$mail->Send();

YOUR EXPECTATIONS FROM PLESK SERVICE TEAM

Confirm bug
 
A product issue has been confirmed and will be fixed in a future update. The issue tracker ID is PPPM-14001.
 
Back
Top