1. root권한으로 sendmail이 SMTP 포트를 점유해서 바인딩 에러 조치
- #vi /etc/sysconfig/sendmail -> DAEMON=no로 수정
-#/etc/rc.d/init.d/sendmail restart 처리하면 25 port Listen하지 않음
2. james-2.3.1 다운
- #wget http://apache.tt.co.kr/james/server/binaries/james-binary-2.3.1.tar.gz
3. #cd /home/k2/server/james-2.3.1
- #chmod 755 run.sh phoenix.sh
- #./run.sh(root) or ./phoenix.sh start &
Using PHOENIX_HOME: /home/k2/server/james-2.3.1
Using PHOENIX_TMPDIR: /home/k2/server/james-2.3.1/temp
Using JAVA_HOME: /home/k2/jdk1.5.0_01
Running Phoenix:
Phoenix 4.2
James Mail Server 2.3.1
Remote Manager Service started plain:4555
POP3 Service started plain:110
SMTP Service started plain:25
NNTP Service started plain:119
FetchMail Disabled
4. 설정 추가
- #/home/k2/server/james-2.3.1/apps/james/SAR-INF/config.xml
: <servername>mimul.com</servername>
: <server>211.1.111.11</server>
5. 유저 생성
#/home/k2/server/james-2.3.1/bin> telnet localhost 4555
Trying 211.245.104.40...
Connected to kth (211.245.104.40).
Escape character is '^]'.
JAMES Remote Administration Tool 2.3.1
Please enter your login and password
Login id:
root
Password:
root
Welcome root. HELP for a list of commands
adduser pepsi password
User pepsi added
quit
Bye
Connection closed by foreign host.
6. 메일 발송
#/home/k2/server/james-2.3.1/bin> telnet mimul.com 25
Trying 211.245.104.40...
Connected to sss (211.245.104.40).
Escape character is '^]'.
220 sss SMTP Server (JAMES SMTP Server 2.3.1) ready Wed, 12 Sep 2007 23:54:53 +0900 (KST)
ehlo mimul.com
250-sss Hello mimul.com (sss [211.245.104.40])
mail from: <pepsi@mimul.com>
250 2.1.0 Sender <pepsi@mimul.com> OK
rcpt to: <pepsi@mimul.com>
250 2.1.5 Recipient <pepsi@mimul.com> OK
data
354 Ok Send data ending with <CRLF>.<CRLF>
subject: test to pepsi@mimul.com
test
.
250 2.6.0 Message received
quit
221 2.0.0 sss Service closing transmission channel
7. 메일 확인
- #/home/k2/server/james-2.3.1/apps/james/var/mail/inboxes/pepsi> more 4D61696C313138393630393138383933372D30.Repository.FileStreamStore
Return-Path: <pepsi@mimul.com>
Message-ID: <29215192.01189609188977.JavaMail.root@sss>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Delivered-To: pepsi@mimul.com
Received: from sss ([211.245.104.40])
by kth (JAMES SMTP Server 2.3.1) with SMTP ID 92
for <pepsi@mimul.com>;
Wed, 12 Sep 2007 23:59:47 +0900 (KST)
Date: Wed, 12 Sep 2007 23:59:47 +0900 (KST)
From: pepsi@mimul.com
subject: test to pepsi@mimul.com
test
'오픈소스SW' 카테고리의 다른 글
Web-Based WYSIWYG editor 비교 (0) | 2008.12.26 |
---|---|
Subversion 설치하기 (0) | 2008.12.26 |
Ajax기반의 Webmail 소개 (0) | 2008.12.26 |
JSCalendar를 활용한 일자 조회 (0) | 2008.12.26 |
Open Source 기반의 차트 프로그램 (0) | 2008.12.26 |