• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Outgoing email messages not DKIM signed when enabled for a domain and in server settings

Why isn't a SMTP solution simply introduced that fundamentally sends all notifications via this connection?

For example:
  • Plesk Panel notifications
  • Watchdog notifications
  • Grafana notifications
 
I had the same issue, even though the UI says "sendmail emails will be signed", postfix is not configured to do so properly, it only has smtpd_milters configured for dkim signing.

To enable dkim signing for sendmail I had to run

Code:
postconf -e "non_smtpd_milters = inet:127.0.0.1:12768"
systemctl restart postfix
 
Back
Top