OS는Redhat 7.2 이구요..
imap2001a.tar.Z 입니다.
소스로 받아서 설치를 하구 테스트를 하려하는데요..
Connection refused 가 나옵니다...
[root@www /imap]# make slx
[root@www imap]# cp imapd/imapd /usr/sbin 생성된 실행화일들을 복사한다.
[root@www imap]# cp ipopd/ipop3d /usr/sbin
[root@www imap]# cd /etc/xinetd.d
[root@www xinetd.d]# vi imapd
service imap
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/sbin/imapd
log_on_success += DURATION USERID
log_on_failure += USERID
}
[root@www xinetd.d]# vi ipop3d
service pop3
{
disable = no
socket_type = stream
wait = no
user = root
server = /usr/sbin/ipop3d
log_on_success += USERID
log_on_failure += USERID
}
[root@www xinetd.d]# vi /etc/services
......
pop3 110/tcp pop-3 # POP version 3
pop3 110/udp pop-3
......
imap 143/tcp imap # Interim Mail Access Proto v2
imap 143/udp imap
......
[root@www xinetd.d]# /etc/rc.d/init.d/xinetd restart
Stopping xinetd: [ OK ]
Starting xinetd: [ OK ]
[root@www xinetd.d]# telnet localhost 110
Trying 127.0.0.1...
Connected to localhost.localdomain: Connection refused 가 나오네요..
이곳에 찾아봤는데도 명확한 답변이 없군요...
도움 부탁드립니다.!!