Differences

This shows you the differences between two versions of the page.

Link to this comparison view

cpanel:adding-dkim-records-to-existing-accounts [2013-03-15 19:04:19] (current)
shaun.reitan created
Line 1: Line 1:
 +====== How to add DKIM records to an existing account(s) on a cPanel server ======
  
 +This article will show examples of how to add DKIM records automatically to an existing customer(s) on your cPanel/WHM server.
 +
 +===== Add DKIM record for a single account =====
 +
 +<code console>
 +/usr/local/cpanel/bin/dkim_keys_install <username>
 +</code>
 +
 +===== Add DKIM record to all local accounts =====
 +
 +<code console>
 +cd /var/cpanel/users
 +for u in *;do echo "Installing DKIM for user $u"; /usr/local/cpanel/bin/dkim_keys_install $u; done
 +</code>