SMTP port를 이용하여 자신의 서버에서 sendmail 이 잘되는지 테스트 할수 있습니다.

# telnet localhost 25
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 idial-pop.nuri.net ESMTP Inet Hosting, Inc. Mail eXchanger (info@inet.co.kr)

HELO isseo -----> isseo라는 이름으로 접속합니다.
250 idial-pop.nuri.net Hello localhost [127.0.0.1], pleased to meet you
Mail FROM: -----> 보내는 쪽의 메일 주소를 씁니다.
250 2.1.0 ... Sender ok
RCPT TO: -----> 받는 쪽의 메일 주소를 씁니다.
250 2.1.5 ... Recipient ok
DATA
354 Enter mail, end with "." on a line by itself
testing
^^v test test test test test -----> 내용을 입력합니다.
.
250 2.0.0 h9SFq5MD025278 Message accepted for delivery
quit --->종료
221 2.0.0 idial-pop.nuri.net closing connection
Connection closed by foreign host.

위와 같이 순조롭게 진행 된다면 정상입니다.

받는 메일 ( isseo@inet.co.kr ) 에게는
testing
^^v test test test test test 라는 내용으로 메일이 전달 됩니다.
2005/07/04 14:29 2005/07/04 14:29

트랙백 주소 :: 이 글에는 트랙백을 보낼 수 없습니다