I forgot to mention that i am newbie at linux works.
Checked the courier (-imap, imap-ssl, -pop, -pop-ssl) files in the /etc/init.d/ directory and there is no rm command!
This is the courier-pop file
Would the line in bold letters help me bypass the problem?
Quote:
#! /bin/sh -e
mkdir /var/run/courier/ -p
prefix="/usr"
exec_prefix=${prefix}
sysconfdir="/etc/courier"
sbindir="${exec_prefix}/sbin"
libexecdir="${prefix}/lib/courier"
TCPD="${sbindir}/couriertcpd"
DAEMON=${sbindir}/pop3d
PROGRAM="Courier POP3 server"
PROG="pop3d"
SSLCONFIG=
test -f $DAEMON || exit 0
if ! [ -x $TCPD ]; then
echo "ERR: $TCPD missing"
exit 1
fi
if ! [ -f ${sysconfdir}/pop3d ]; then
echo "ERR: config file missing"
exit 1
fi
# read/set defaults
if [ -f /etc/default/courier ]; then
. /etc/default/courier
fi
if [ -z "$MAILDIR" ]; then
MAILDIR=Maildir
fi
if [ -f "${sysconfdir}/pop3d-ssl" ]; then
. "${sysconfdir}/pop3d-ssl"
SSLCONFIG=1
fi
. ${sysconfdir}/pop3d
START=no
case "$POP3DSTART" in
[yY]*)START=yes;;
esac
case "$1" in
start)
if [ "$START" = "yes" ]; then
echo -n "Starting $PROGRAM:"
/usr/bin/env - /bin/sh -c " set -a; \
. ${sysconfdir}/pop3d; \
if [ "$SSLCONFIG" ]; then . ${sysconfdir}/pop3d-ssl; fi; \
POP3_STARTTLS=$POP3_STARTTLS; export POP3_STARTTLS; \
TLS_PROTOCOL=$TLS_STARTTLS_PROTOCOL; \
$TCPD -pid=$PIDFILE -stderrlogger=${sbindir}/courierlogger \
-maxprocs=$MAXDAEMONS -maxperip=$MAXPERIP \
$TCPDOPTS -address=$ADDRESS $PORT \
${libexecdir}/courier/courierpop3login $AUTHMODULELIST \
${libexecdir}/courier/courierpop3d $MAILDIR"
echo " $PROG."
fi
;;
stop)
echo -n "Stopping $PROGRAM:"
$TCPD -pid=$PIDFILE -stop
echo " $PROG."
;;
restart | reload | force-reload)
$0 stop
$0 start
;;
*)
echo "Usage: $0 {start|stop|restart|reload|force-reload}" >&2
exit 1
;;
esac
exit 0
|
Recent comments
16 hours 39 min ago
23 hours 20 min ago
1 day 3 hours ago
1 day 4 hours ago
1 day 13 hours ago
1 day 22 hours ago
1 day 23 hours ago
2 days 3 hours ago
2 days 7 hours ago
2 days 7 hours ago