Categories: Scripting

How to enable SPF and DKIM for already created cPanel accounts?

Enable SPF and DKIM for already created cPanel accounts

cPanel script to enable SPF via commandline:

Syntax

# /usr/local/cpanel/bin/spf_installer $username

Where, $username is the cPanel user name.

cPanel script to enable DKIM via commandline:

Syntax

# /usr/local/cpanel/bin/dkim_keys_install $username

Replace $username with the actual cPanel username.

The above commands will help you to enable email authentications for single cPanel users. If you have hundreds of accounts and you want to enable SPF and DKIM for all accounts, please follow the simple for loop.

Here we can get the cPanel usernames from “/var/cpanel/users”. Then give that to installations scripts. Please see the sample script below:

Script

for username in `ls -A /var/cpanel/users` ; do /usr/local/cpanel/bin/dkim_keys_install $username && /usr/local/cpanel/bin/spf_installer $username ; done

That’s it! wait for a while, it’ll set all.


Vishwajit Kale
Vishwajit Kale blazed onto the digital marketing scene back in 2015 and is the digital marketing strategist of Hostripples, a company that aims to provide affordable web hosting solutions. Vishwajit is experienced in digital and content marketing along with SEO. He's fond of writing technology blogs, traveling and reading.

Recent Posts

The Future of MySQL: Benefits of Upgrading to Version 8+

What is MySQL? MySQL is an open-source relational database management system (RDBMS) that uses Structured Query Language (SQL) to interact…

2 days ago

What Are the Key Benefits of Upgrading MariaDB?

MariaDB is a widely used open-source relational database management system (RDBMS) that has gained popularity recently due to its high…

2 weeks ago

What Are the Benefits of Upgrading to the New and Old Versions of PHP?

PHP (Hypertext Preprocessor) is a popular scripting language used for web development. It has been powering websites since its inception…

4 weeks ago

The Essential Guide to SEO vs. PPC: The Core Differences

Welcome to "The Essential Guide to SEO vs. PPC: The Core Differences". Taking your business online is the root solution…

1 month ago

Hosting a Dedicated Server: A Comprehensive Guide

A dedicated server is one of the most advanced servers in the web hosting industry. It is a physical server…

2 months ago