[imp] Newbie
Andy
andyw@black.hole-in-the.net
Mon, 19 Nov 2001 17:12:32 +0000
On Mon, Nov 19, 2001 at 11:05:33AM -0600, Cesar Garza Hernandez wrote:
> [cgarzah@lumige cgarzah]$ telnet localhost 143
> Trying 127.0.0.1...
> telnet: Unable to connect to remote host: Connection refused
>
> DUH! =)
>
> how do i start imap?
>
Depends on the OS. If you use xinetd you should edit the file /etc/xinetd.d/imap
If you use inetd you should edit the file /etc/inetd.conf
xinetd will have something like
service imap
{
socket_type = stream
wait = no
user = root
server = /usr/sbin/imapd
log_on_success += DURATION USERID
log_on_failure += USERID
disable = no
}
make sure the disable line is set to no
inetd.conf will have something like
imap stream tcp nowait root /usr/sbin/imapd imapd
make sure this line is uncommented
i.e. no # mark at the start
--
andy
-------------------------------------------------------------------------------------------
$andys_head->configure(-state => 'disabled', -size => 'small', -relief => 'needing some');
andyw@black.hole-in-the.net
-------------------------------------------------------------------------------------------