11 Aug
2005
11 Aug
'05
7:07 p.m.
On Fri, 2005-08-12 at 02:03 +1000, admin@downend.org wrote:
I have installed previous Imap Servers could that be it? How can I check if port 143 is being used by another imap server?
netstat -tan|grep 143
I recieved the following output:
aries:~# netstat -tan|grep 143 tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN
There's something listening on 143. Run the following as root:
netstat -ltnp | grep ':143'
to see which process it is.
johannes