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

How to enable DKIM-signature in Plesk 11.5.30?

pravvenk

New Pleskian
Hi, I am trying to get dkim signature added to the emails I send but I haven't managed it so far.

I've enabled the DomainKeys-Signature in my server.

Now I want to enable DKIM, how?

================================================== ========
Summary of Results
================================================== ========
SPF check: pass
DomainKeys check: pass
DKIM check: neutral
Sender-ID check: pass
SpamAssassin check: ham
================================================== ========

- enabling DKIM for mail server sofrware (for me = CloudLinux Server 6.4 postfix)?

Thanks
 
Hello,

Please try to run following command on your server with your domain name

Code:
 /usr/local/psa/bin/domain_pref -u <domain_name> -sign_outgoing_mail true
 
you can do this by plesk panel,

subscription > domain > mail > change settings > Use DomainKeys spam protection system to sign outgoing email messages

its same thing?
 
Well SPF and DomainKeys can be enabled through Plesk, there are pictures of it in the link, but DKIM will require installing new packages on the server, and at the moment it can't be done with Plesk
 
DKIM will be enabled for any domain if you set it up according to the description, doesn't matter if it's subscription or not.
As for DomainKeys, if Plesk doesn't add the record you can add it your self in the DNS zone, it's not difficult at all to add it.

You will need to create entries in DNS zone for
_domainkey
default._domainkey

Don't know about QMail, but Postfix will add it in the message header, that works I've tried it by adding records manually for all the domains in the subscription
 
Info on how to generate DomainKeys

http://blog.matoski.com/articles/generate-domainkeys/

After you put it in the DNS zone

Code:
 /usr/local/psa/bin/domain_pref -u <domain_name> -sign_outgoing_mail false
 /usr/local/psa/bin/domain_pref -u <domain_name> -sign_outgoing_mail true

And you can restart postfix, verifed that it works, looks like it won't sign if you only do from the GUI, you have to do some manual work.
 
Back
Top