Error whit imap

wildnight

Verified User
Joined
Oct 16, 2006
Messages
6
I just install DA on a new server ( FREEBSD 6.1) Everything was working fine for one week. Since yesterday, IMAPD don't work. I have no error in any log. I try to reboot the server but nothing. When i try to log in the webmail, i got this error msg:

ERROR
Error connecting to IMAP server: localhost.
61 : Connection refused

I check the program, IMAPD is not running. Somebody know where i can find other clue or what is the command to start it manyaly?

THank you
 
Imapd is run off of inetd by default your server must have inetd running. Unless you are using dovecot of course.

As root do this:

Code:
/usr/sbin/inetd -l -R 1024

echo "inetd_enable=YES" >> /etc/rc.conf
echo "inetd_flags=\"-l -R 1024\"" >> /etc/rc.conf
 
Back
Top