
Debian 시스템에서 Exim 4.92 서버를 실행하고 있는데 모든 것이 잘 작동합니다. 이제 Gmail에서 별칭 주소용 STMP 서버가 필요하므로 해당 Exim 서버를 통해 Gmail에서 메일을 보내고 싶습니다.
그러나 SSL을 사용하여 내 서버를 통해 Gmail에서 메일을 보내려고 하면 Exim mainlog
파일에 다음 오류가 발생합니다.
SMTP protocol synchronization error (input sent without waiting for greeting): rejected connection from H=mail-ot1-f48.google.com [209.85.210.48] input="\026\003\001\002"
나는 Exim 전문가가 아니며 지금까지 구성 파일을 망쳐 본 적이 없습니다. 나는 Debian의 Exim 구성 도구에서 얻은 기본 설정을 사용하고 있습니다.
Exim에서 TLS 지원을 활성화하려면 다음을 따랐습니다.이 데비안 문서. 따라서 기본적으로 인증서 파일을 생성하고 다음을 /etc/exim4/exim4.conf.localmacros
통해 파일 에서 TLS를 활성화했습니다.
MAIN_TLS_ENABLE = yes
내 /etc/exim4/update-exim4.conf.conf
파일은 다음과 같습니다.
dc_eximconfig_configtype='internet'
dc_other_hostnames='...' # my list of allowed domains
dc_local_interfaces=''
dc_readhost=''
dc_relay_domains=''
dc_minimaldns='false'
dc_relay_nets=''
dc_smarthost=''
CFILEMODE='644'
dc_use_split_config='false'
dc_hide_mailname=''
dc_mailname_in_oh='true'
dc_localdelivery='maildir_home'
이 오류를 어떻게 해결할 수 있는지 아이디어가 있습니까?