• 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 UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • 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('[email protected]');
$mail->AddReplyTo('[email protected]');
$mail->From = '[email protected]';
$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