The Output I recieve is;
aries:/etc/init.d# netstat -ltnp | grep ':143'
tcp 0 0 0.0.0.0:143 0.0.0.0:* LISTEN
14454/cyrmaster
tcp6 0 0 :::143 :::* LISTEN
14454/cyrmaster
Whatever that is :\
Quoting Johannes Berg johannes@sipsolutions.net:
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