센드메일 셋팅 도와주세요 ㅠㅠ
작성자 정보
- 김대환 작성
- 작성일
컨텐츠 정보
- 1,576 조회
- 0 추천
- 목록
본문
우선 로컬에서 sendmail에 smtp포트로 접근할 수 있어야 합니다.
[root@mail root]# telnet localhost 25
Trying 127.0.0.1...
Connected to mail.mydomain.co.kr (127.0.0.1).
Escape character is '^]'.
220 mail.mydomain.co.kr ESMTP
위와 같이 나오지 않는다면 릴레이 기능을 가장먼저 살펴봐야 하구요.
설정방법은 다음과 같습니다.
# cat /etc/mail/access
# Check the /usr/share/doc/sendmail/README.cf file for a description
# of the format of this file. (search for access_db in that file)
# The /usr/share/doc/sendmail/README.cf is part of the sendmail-doc
# package.
#
# by default we allow relaying from localhost...
localhost.localdomain RELAY
localhost RELAY
127.0.0.1 RELAY
mail RELAY
mail.mydomain.co.kr RELAY
mydomain.co.kr RELAY
10.10. RELAY
RELAY설정을 위한 데이터베이스 파일을 생성합니다.
#makemap hash /etc/mail/access.db < /etc/mail/access
위에서 10.10.의 의미는 10.10.0.0네트웍을 사용중인 모든 클라이언트가 본 메일서버를 활용해 편지를 보낼 수 있다는 뜻입니다.
또한 /var/log/maillog 파일을 주의깊게 보시면 어떤 형태의 문제 때문인지 직관적으로 알 수 있습니다.
로그의 레벨을 적절히 조정하면 상세한 로그도 보실 수 있습니다.
관련자료
-
이전
-
다음