250x250
반응형
Notice
Recent Posts
Recent Comments
전산쟁이의 기억노트
Centos5에서 Sendmail 구성하기 본문
728x90
반응형
SMALL
- Sendmail 패키지 설치
$> yum install -y sendmail sendmail-cf
- Sendmail 설정
- 발송 시 인증을 이용한 메일 발송으로 변경
$> vi /etc/mail/sendmail.mc ... TRUST_AUTH_MECH(`EXTERNAL DIGEST-MD5 CRAM-MD5 LOGIN PLAIN’)dnl ... define('confAUTH_MECHANISMS', 'EXTERNAL GSSAPI DIGEST-MD5 CRAM-MD5 (생략)' ...
- 외부에서 25번 포트 접속 허용하기
$> vi /etc/mail/sendmail.mc ... DAEMON_OPTIONS('Port=smtp, Name=MTA')dnl ...
- 발송하는 호스트명 지정
$> vi /etc/mail/sendmail.mc LOCAL_DOMAIN('실제_발송할_도메인명')dnl
- Sendmail 버전 숨기기
$> vi /etc/mail/sendmail.mc define('confSMTP_LOGIN_MSG')dnl
- Sendmail 서비스 활성화 및 시작
$> chkconfig sendmail on $> chkconfig saslauthd on $> /etc/init.d/sendmail start $> /etc/init.d/saslauthd start
- 발송 시 인증을 이용한 메일 발송으로 변경
- 포트 확인
$> netstat -antp Active Internet connections (servers and established) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:25 0.0.0.0:* LISTEN 19466/sendmail
- 접속 테스트
$> telnet localhost 25 mail from:발신계정 rcpt to:수신계정 data send test . quit (수신계정으로 메일 수신되는지 확인)
출처 - http://igoni.kr/books/linux/page/centos5-sendmail
728x90
반응형
LIST
'SMTP노트' 카테고리의 다른 글
sendmail Trouble Shooting (0) | 2022.08.19 |
---|---|
sendmail 로그 분석하기 (0) | 2022.08.19 |
procmailrc를 이용한 스팸메일 차단 (0) | 2022.08.19 |
Dovecot Trouble Shooting (0) | 2022.08.19 |
clamd설치 / Sendmail 연동하기 (0) | 2022.08.19 |
Comments