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

Renew qmail ssl cert

A

ACID25

Guest
Hi

our qmail ssl root cert is invalid. How can i renew that? So that the customers didn´t get the error message "root cert is invalid bla bla".

THX IN ADVANCE
ACID25
 
Hi

thx for that tip....now i do it so, maybe somone need this information

cd /usr/share/ssl/
openssl genrsa 1024 > cert.key
openssl req -new -x509 -nodes -sha1 -key cert.key > host.crt
cd /var/qmail/control/
mv servercert.pem servercert.pem.old
cat /usr/share/ssl/cert.key > servercert.pem
cat /usr/share/ssl/host.crt >> servercert.pem
/etc/init.d/qmail restart
cd /usr/share/courier-imap/
mv pop3d.pem pop3d.pem.old
mv imapd.pem imapd.pem.old
cp /var/qmail/control/servercert.pem /usr/share/courier-imap/pop3d.pem
cp /var/qmail/control/servercert.pem /usr/share/courier-imap/imapd.pem
/etc/init.d/courier-imap restart
 
Back
Top