• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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