Page 1 of 1

Dovecot OCOSA certificate out of date

Posted: 28 Mar 2009, 16:39
by Puma
Gentleman,

When i try to sent mail to bubba via smtp.
I get a certificate out of date error.

mailserver 5.7.1. error.

Can someone help??
I cannot accept an old certificat in thunderbird

Puma

- Still no news about RAID1???

Re: Dovecot OCOSA certificate out of date

Posted: 17 Dec 2009, 05:05
by Puma
Gents,

I now use a script file for this.

-----------------
#!/bin/bash
# How to generate a dovecot self-signed SSL certificate
echo "Now the old certificates will be deleted."
sleep 1 #pause after echo
#Remove the old certs
find /etc/ssl -name dovecot.* -exec rm {} \;
echo "New Certificates will be made"
sleep 2 #pause after echo
#Make new Certificates:
dpkg-reconfigure dovecot-common
sleep 5 #pause after echo
echo "Ready, You will have to accept new certificates in your mailclient"
-------------------

Puma