Link to home
Start Free TrialLog in
Avatar of RobMarreel
RobMarreel

asked on

QPopper won't read command line

Hello:

I am trying to modify qpopper so that it logs the successful logins in order to use pop-before-smtp for outside relaying. Unforotunately I can't get it to read the command line args. I put them in the server_args param of the qpopper xinetd.d dir.

Any ideas?

Current setup:
service pop3
{
        disable         = no
        flags           = REUSE
        socket_type     = stream
        wait            = no
        user            = root
        server          = /usr/sbin/popper
        server_args     = -R -log-login
        instances       = 50
        per_source      = 10
        log_on_failure  += USERID
}


Thank you.
Avatar of RobMarreel
RobMarreel

ASKER

I changed the config to this:


# qpopper POP3 server

service pop3
{
        disable         = no
        flags           = REUSE
        socket_type     = stream
        wait            = no
        user            = root
        server          = /usr/sbin/popper
        server_args     = qpopper -f /etc/qpopper.conf
        instances       = 50
        per_source      = 10
        log_on_failure  += USERID
}

And the config file is this:

set log-login = false
set tracefile=/etc/qpopper.log
set reverse-lookup=false


Now I am getting a new message in the logs. But it just says true, nothing else.
ASKER CERTIFIED SOLUTION
Avatar of wesly_chen
wesly_chen
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial