/usr/lib/courier/pop3d-ssl is in courier-pop 0.78.0-2ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | #! /bin/sh
#
# Copyright 1998 - 2005 Double Precision, Inc.
# See COPYING for distribution information.
prefix=/usr
exec_prefix=/usr
libexecdir=${prefix}/lib/courier
sbindir=${exec_prefix}/sbin
bindir="/usr/bin"
sysconfdir="/etc/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
. /etc/courier/pop3d
. /etc/courier/pop3d-ssl
case $1 in
start)
exec /usr/bin/env -i PATH="$PATH" SHELL="$SHELL" \
/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; \
POP3_TLS=1; \
POP3_STARTTLS=NO; \
POP3_TLS_REQUIRED=0; \
/bin/mkdir -p `dirname $SSLPIDFILE` ; \
/usr/sbin/courierlogger -pid=$SSLPIDFILE -start $SSLLOGGEROPTS \
${exec_prefix}/sbin/couriertcpd -address=$SSLADDRESS \
-maxprocs=$MAXDAEMONS -maxperip=$MAXPERIP \
$TCPDOPTS \
$SSLPORT $COURIERTLS -server -tcpd \
$libexecdir/courier/courierpop3login \
$libexecdir/courier/courierpop3d ${MAILDIRPATH}"
;;
stop)
/usr/sbin/courierlogger -pid=$SSLPIDFILE -stop
;;
restart)
/usr/sbin/courierlogger -pid=$SSLPIDFILE -restart
;;
esac
exit 0
|