I have an issue with my mail server running a postfix/dovecot setup, essentially when I run the various security tests I get told that my certificates can't be validated, see here: https://ssl-tools.net/mailservers/brailsford.xyz
The certificates and related files I have available (which are valid as per https://brailsford.xyz) are:
- AddTrustExternalCARoot.crt
- brailsford_xyz.crt
- COMODORSAAddTrustCA.crt
- COMODORSADomainValidationSecureServerCA.crt
I also have my key file for the crt, brailsford_xyz.key
My setup in postfix is:
smtpd_tls_cert_file=/etc/ssl/certs/postfixchain.crt
smtpd_tls_key_file=/etc/ssl/private/brailsford.key
smtpd_tls_CAfile=/etc/ssl/certs/COMODORSADomainValidationSecureServerCA.crt
smtpd_use_tls=yes
The postfix chain is a combination of three of the certs from earlier, in the following order:
- brailsford_xyz.crt
- COMODORSADomainValidationSecureServerCA.crt
- AddTrustExternalCARoot.crt
Can anyone advise as to what I'm doing wrong and how I can rectify it?