RSA based ciphers not working in Postfix smtpd
Posted: 02 Aug 2024 15:16
Ever since installing and migrating to EFA 5, a handful of sending servers were unable to establish a TLS connection due to an inability to match ciphers.
Apparently the LetsEncrypt SSL certificate that was issued with the EFA scripts had a key type of ECDSA and not RSA.
I managed to get around this issue by changing the value
to
in the cert renewal conf file located at /etc/letsencrypt/renewal/
Once changed, I forced a cert renewal.
Now RSA based tls ciphers are supported.
Apparently the LetsEncrypt SSL certificate that was issued with the EFA scripts had a key type of ECDSA and not RSA.
I managed to get around this issue by changing the value
Code: Select all
key_type = ecdsa
to
Code: Select all
key_type = rsa
in the cert renewal conf file located at /etc/letsencrypt/renewal/
Once changed, I forced a cert renewal.
Now RSA based tls ciphers are supported.