On Sat, 17 Mar 2001, Eric B. Leslie wrote:
> I'm having trouble with xinetd. I'm missing something because it's
> not accepting connections on port 110. I have a file named pop3 in
> it's folder with the following contents:
>
> service pop3
> {
> socket_type = stream
> protocol = tcp
> wait = no
> user = root
> server = /usr/local/lib/popper
> server_args = qpopper -s
> port = 110
> }
I'd suggest this instead:
# default: on
# Pop3 Service
service pop3
{
flags = REUSE
socket_type = stream
wait = no
user = root
server = /usr/local/lib/popper
server_args = qpopper -s
disable = no
}
That way, you can manage it with chkconfig:
# chkconfig --list pop3
# chkconfig pop3 on
# chkconfig pop3 off
> I've restarted xinetd. Do I need to add a line to etc/services?
It should already be there under RH7--you might want to double-check
it.
--
James Ralston, Information Technology
Software Engineering Institute
Carnegie Mellon University, Pittsburgh, PA, USA