On Mon, 2003-04-07 at 18:31, Patrick Boutilier wrote:
> [root@student root]# netstat -nap --inet |grep 80 |grep LISTEN
> tcp 0 0 0.0.0.0:80 0.0.0.0:*
> LISTEN 24378/exim
You should have done an 'lsof -p 24378' to see whether it's really your
installed exim binary or just something that calls itself exim but
listens on port 80 and does other, perhaps even nasty things.
-m-