Probleme de SSL avec postfix
Bonjour,
j'ai un serveur de mail postfix et j'ai un petit soucis,
Les mails envoyé depuis ce serveur ne sont pas crypté et cela pose problème au niveau de la détection des spams.
j'ai pourtant configuré le serveur postfix au niveau du ssl.
le fichier "main.cf"
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| # logging
smtpd_tls_loglevel = 1
# Allow use of TLS but make it optional
smtpd_tls_security_level = may
# Disable SSLv2/3 as they are vulnerable
smtpd_tls_protocols = !SSLv2, !SSLv3
smtp_tls_protocols = !SSLv2, !SSLv3
# Insist on stronger ciphers
smtpd_tls_ciphers = high
smtp_tls_ciphers = high
smtp_tls_cert_file = /etc/letsencrypt/live/mail.xxx.fr/cert.pem
smtp_tls_key_file = /etc/letsencrypt/live/mail.xxx.fr/privkey.pem |
et voila ce que contient le dossier des certificats :
Code:
1 2
| root@vm-mail:/# ls /etc/letsencrypt/live/mail.xxx.fr/
cert.pem chain.pem fullchain.pem privkey.pem README |
PS : j'ai remplacé mon domaine par xxx
Comment je peux debug pour trouvé d’où vient le problème ?
Les mails sont bien envoyés pourtant mais pas cryptés.
Merci d'avance