
나는 사용했다이 설정Gmail을 스마트호스트로 사용하기 위해 exim을 설정했습니다. 그러나 Yahoo 또는 Fastmail(둘 다 587 대신 포트 465 사용)과 같은 다른 smtp 서버에 대해서는 이러한 설정을 사용할 수 없는 것 같습니다. 둘 다 메시지와 함께 실패합니다 defer (-18): Remote host smtp.example.com [x.x.x.x] closed connection in response to initial connection
. 이 설정에 문제가 있나요? 무엇이 잘못될 수 있나요?
my_route:
driver = manualroute
domains = ! +local_domains
transport = my_relay
route_list = * smtp.mail.yahoo.com
my_relay:
driver = smtp
port = 465
hosts_require_auth = $host_address
hosts_require_tls = $host_address
my_login:
driver = plaintext
public_name = LOGIN
hide client_send = : [email protected] : my_password
답변1
동일한 문제가 있었고 smtp 포트를 465(SSL/TLS)에서 587(STARTTLS)로 변경하여 문제를 해결했습니다.