Hello,
I have a VPS. I would like to turn off all autossl notifications send to the users. Can you tell me a solution for it? I cant do it for each user from cPanel. I want to turn it off server wide.
How to turn off AutoSSL notifications send to users
Moderator: Staff
cPanel Server Management
@ 30$ Onwards
@ 30$ Onwards
Re: How to turn off AutoSSL notifications send to users
Hello,
We have several ways to do that. Please have a look at the steps mentioning below. Both of them are doing via WHM panel.
1. Disable notifications via WHM Manage AutoSSL:
=====================================
Home »SSL/TLS »Manage AutoSSL
1. Select the Options tab
2. Remove the check for the notifications you do not wish to receive
3. Save
=====================================
2. Disable notifications via WHM Tweak Settings for ssls reaching expiration:
=====================================
Home »Server Configuration »Tweak Settings
1. Notifications section
2. Disable "Send notifications when certificates approach expiry."
3. Save
=====================================
We have several ways to do that. Please have a look at the steps mentioning below. Both of them are doing via WHM panel.
1. Disable notifications via WHM Manage AutoSSL:
=====================================
Home »SSL/TLS »Manage AutoSSL
1. Select the Options tab
2. Remove the check for the notifications you do not wish to receive
3. Save
=====================================
2. Disable notifications via WHM Tweak Settings for ssls reaching expiration:
=====================================
Home »Server Configuration »Tweak Settings
1. Notifications section
2. Disable "Send notifications when certificates approach expiry."
3. Save
=====================================
Re: How to turn off AutoSSL notifications send to users
Hello Joan,
It worked. Thank you for your quick reply.
It worked. Thank you for your quick reply.
Re: How to turn off AutoSSL notifications send to users
Hello,
Always welcome. Also you can use following script provided by cPanel.
#!/bin/bash
/bin/ls -1 /var/cpanel/users | while read USER; do
/bin/echo "Now processing ${USER} ..."
/usr/bin/cpapi2 --user=${USER} CustInfo savecontactinfo notify_autossl_expiry_coverage=0
notify_autossl_renewal_coverage=0 notify_autossl_expiry=0 notify_autossl_renewal=0
done
Always welcome. Also you can use following script provided by cPanel.
#!/bin/bash
/bin/ls -1 /var/cpanel/users | while read USER; do
/bin/echo "Now processing ${USER} ..."
/usr/bin/cpapi2 --user=${USER} CustInfo savecontactinfo notify_autossl_expiry_coverage=0
notify_autossl_renewal_coverage=0 notify_autossl_expiry=0 notify_autossl_renewal=0
done