• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    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.

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