• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • 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!
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

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