| Server IP : 173.236.223.38 / Your IP : 216.73.216.33 Web Server : Apache System : Linux vps62975 6.8.0-83-generic #83~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Sep 9 18:19:47 UTC 2 x86_64 User : invmicvps ( 6727287) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib/courier/ |
Upload File : |
#! /bin/sh
#
# Copyright 1998 - 2005 Double Precision, Inc. See COPYING for
# distribution information.
#
# Sample script to start Courier's pop3 daemon.
#
# This script should work for most systems. Authenticate via the PAM library,
# /etc/shadow, or fallback to /etc/passwd
#
# You must run this as root, and as a daemon process.
#
prefix="/usr"
exec_prefix="/usr"
sysconfdir="/etc/courier"
sbindir="${exec_prefix}/sbin"
bindir="/usr/bin"
libexecdir="${prefix}/lib/courier"
if test ! -f ${sysconfdir}/pop3d
then
echo "${sysconfdir}/pop3d does not exist, forgot make install-configure?"
exit 1
fi
if test ! -f ${sysconfdir}/pop3d-ssl
then
echo "${sysconfdir}/pop3d-ssl does not exist, forgot make install-configure?"
exit 1
fi
. ${sysconfdir}/pop3d-ssl
. ${sysconfdir}/pop3d
export PATH
export SHELL
case "$1" in
start)
;;
stop)
/usr/sbin/courierlogger -pid=$PIDFILE -stop
exit 0
;;
restart)
/usr/sbin/courierlogger -pid=$PIDFILE -restart
exit 0
;;
*)
exit 0
;;
esac
cd /usr
if test "$TLS_CACHEFILE" != ""
then
rm -f "$TLS_CACHEFILE"
touch "$TLS_CACHEFILE"
chown courier "$TLS_CACHEFILE"
chgrp courier "$TLS_CACHEFILE"
chmod 600 "$TLS_CACHEFILE"
fi
/usr/bin/env -i /bin/sh -c " set -a; \
prefix=/usr ; \
exec_prefix=/usr ; \
sbindir=${exec_prefix}/sbin ; \
bindir=/usr/bin ; \
libexecdir=${prefix}/lib/courier ; \
. /etc/courier/pop3d ; \
. /etc/courier/pop3d-ssl ; \
PROXY_HOSTNAME=$PROXY_HOSTNAME ; \
mkdir -p `dirname $PIDFILE` ; \
/usr/sbin/courierlogger -pid=$PIDFILE -start $LOGGEROPTS \
${exec_prefix}/sbin/couriertcpd -address=$ADDRESS \
-maxprocs=$MAXDAEMONS -maxperip=$MAXPERIP \
$TCPDOPTS \
$PORT ${prefix}/lib/courier/courier/courierpop3login \
${prefix}/lib/courier/courier/courierpop3d ${MAILDIRPATH}"