2021. 10. 13. 18:07 WorkHolic
403 4.7.0 TLS handshake failed (Sendmail) 해결하기
최근들어 SSL 도입이 늘어나면서 조금씩 문제들이 발생하고 있다.
메일을 보냈는데 회신이 없어 확인해 보니 반송 메일이 스팸함에 들어 있었다.
----- Transcript of session follows -----
<
xxxxx@xxxxxxxxx.co.kr
>... Deferred: 403 4.7.0 TLS handshake failed.
Warning: message still undelivered after 4 hours
Will keep trying until message is 5 days old
해결방법은
/etc/mail/access에 아래를 추가해 주면 된다.
Try_TLS:xxxxxxxxx.co.kr NO
How to fix the error ‘403 4.7.0 TLS handshake failed’ in RedHat, CentOS and OpenSuse servers with Sendmail
Along with the error message “403 4.7.0 TLS handshake failed”, it is possible to identify the recipient domain which has the TLS connectivity issue.
Edit the configuration file “/etc/mail/access” and add the line:
Try_TLS:domain.com NO
Since “/etc/mail/access” is a database, after creating that text file and editing it, use ‘makemap‘ to create the database map.
makemap hash /etc/mail/access.db < /etc/mail/access
Restart the mail server. This will exempt that domain from TLS email transmission and the mails would deliver fine without errors.
#메일 #mail #TLS #HandshakeFailed #CentOS
'WorkHolic' 카테고리의 다른 글
SELinux 설정 (0) | 2021.12.10 |
---|---|
MySQL Proxy (0) | 2021.11.10 |
개인정보취급방침 vs 개인정보처리방침 (2) | 2021.10.07 |
실수로 개인정보 유출하면 과태료만 부과 2021.09.08 (0) | 2021.10.07 |
개인정보 유출 6개사에 8400만원 부과 2021.06.09 (0) | 2021.10.07 |