#!/bin/bash
# Gentoo Startup script for qmail's POP3 daemon

# If you need to edit this file, please look at editing conf-smtpd and
# conf-common first. If you still need to change this file, you should probably
# file a bug on the bugzilla saying what you wanted to change so that
# modifications can be made possible via the configuration files.

SERVICE=pop3s
. /var/qmail/bin/qmail-config-system && \
exec /usr/bin/softlimit ${SOFTLIMIT_OPTS} \
    ${QMAIL_TCPSERVER_PRE} \
    /usr/bin/sslserver ${TCPSERVER_OPTS} -x ${TCPSERVER_RULESCDB} \
    -c ${MAXCONN} \
    ${TCPSERVER_HOST} ${TCPSERVER_PORT} \
    ${QMAIL_POP3_PREAUTH} /var/qmail/bin/qmail-popup ${QMAIL_POP3_POP3HOST} \
    ${QMAIL_POP3_CHECKPASSWORD} ${QMAIL_POP3_POSTAUTH} \
    /var/qmail/bin/qmail-pop3d ${QMAIL_MAILDIR} 2>&1
