On Fri, 6 Oct 2000, Kor Kiley wrote:

> Can anyone help me out installing Qpopper 3.0.2 on Red Hat Linux
> 7.0.  [...]  What I tried (and it doesn't seem to work) is to create
> a file in /etc/xinetd.d called pop3 with the following:

> # default: on
> # Pop3 Service
> service pop3
> {
>         socket_type = stream
>         wait            = no
>         user            = root
>         server  = /usr/local/lib/popper qpopper -s
> }

This is what you want:

    # default: on
    # Pop3 Service
    service pop3
    {
            flags           = NAMEINARGS REUSE
            socket_type     = stream
            wait            = no
            user            = root
            server          = /usr/local/lib/popper
            server_args     = qpopper -s
            disable         = no
    }

This is all clearly spelled out in the thorough man page for
xinetd.conf(5).

Note that chkconfig(8) knows how to handle the files in /etc/xinetd.d,
so once you've created the entry, you should use chkconfig to
enable/disable qpopper, instead of editing /etc/xinetd.conf/pop3
directly.

-- 
James Ralston, Information Technology
Software Engineering Institute
Carnegie Mellon University, Pittsburgh, PA, USA

Reply via email to