Hi guys,
I’m not able to set up the custom certificate renewal process. I’ve rigorously worked through the Advanced SSL documentation.
bash helper-scripts/expiry-dates.sh
displays the new expiration dates from the new certificate. So everything seems fine.
Even openssl s_client -starttls smtp -connect MAILCOW_HOSTNAME:587 | openssl x509 -noout -text
, openssl s_client -connect MAILCOW_HOSTNAME:465 | openssl x509 -noout -text
, openssl s_client -starttls imap -connect MAILCOW_HOSTNAME:143 | openssl x509 -noout -text
and openssl s_client -connect MAILCOW_HOSTNAME:993 | openssl x509 -noout -text
shows the new certificate information.
However, Apple Mail shows that it can’t verify the server’s identity because the certificate has expired (it is the old certificate expiration).
And if I’m using the command openssl s_client -showcerts -connect MAILCOW_HOSTNAME:465 -servername MAILCOW_HOSTNAME
for example, the old certificate is supplied.
Any ideas about what I’m doing wrong? Big thanks in advance!