답변:
릴레이 호스트가 필요하고 정의 할 경우에도주의를 기울여야합니다 (DSmy.relay.host)
아마도 nullmailer 가 당신을위한 것일 수도 있습니다.
발신 전용 sendmail을 설정하는 방법에 대한 자세한 내용은 다음과 같습니다.
centos / Amazon Linux의 웹 사이트에 나열된 내용에서이 단계를 수정했습니다.
단계는 다음과 같습니다.
you may also need to install sendmail-cf
# yum install sendmail-cf
# cd /etc/mail
# nano local-host-names
add new line: localhost
save the file and quit the editor
# make
# nano sendmail.mc
add these lines above the other FEATURE lines near the top of the file:
MASQUERADE_AS(`yourdomain.com')dnl
FEATURE(masquerade_envelope)
save the file and quit the editor
# m4 sendmail.mc > temp.cf
# mv temp.cf sendmail.cf
# make
# /etc/rc.d/init.d/sendmail restart
실제로 postfix를 사용한다고 가정합니다.
dpkg-reconfigure postfix를 실행하고 "인터넷 사이트"또는 "스마트 호스트가있는 인터넷 사이트"(스마트 호스트를 통해 메일을 보내려는 경우) 옵션을 시작점으로 선택합니다. 인터넷으로 메일을 보내고받을 수 있습니다.
상자가 메일을 수신하지 못하게하려면 로컬 호스트에서만 수신하도록 SMTP 서버를 구성하는 것이 좋습니다. 참조 /superuser//a/430329/506601를