#! /bin/sh # Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany. # All rights reserved. # # Author: Thorsten Kukuk # # /etc/init.d/courier-pop # ### BEGIN INIT INFO # Provides: courier-pop # Required-Start: $syslog $remote_fs courier-authdaemon # Should-Start: # Required-Stop: $syslog $remote_fs # Should-Stop: # Default-Start: 3 5 # Default-Stop: 0 1 2 6 # Short-Description: Courier-POP3 server # Description: Start the Courier-POP3 server, which is an # POP3 server for Maildir mailboxes. ### END INIT INFO # Check for missing binaries (stale symlinks should not happen) POP3_BIN=/usr/sbin/pop3d test -x $POP3_BIN || exit 5 . /etc/rc.status # Read configuration . /etc/courier/pop3d test "$MAILDIRPATH" == "" && MAILDIRPATH=Maildir test "$PIDFILE" == "" && PIDFILE=/var/run/pop3d.pid # Reset status of this service rc_reset case "$1" in start) /etc/init.d/courier-authdaemon status > /dev/null || /etc/init.d/courier-authdaemon start echo -n "Starting Courier-POP3 " /usr/bin/env - /bin/sh -c " set -a ; . /etc/courier/pop3d ; \ . /etc/courier/pop3d-ssl ; \ PROXY_HOSTNAME=$PROXY_HOSTNAME ; \ TLS_PROTOCOL=$TLS_STARTTLS_PROTOCOL ; \ /usr/sbin/courierlogger -pid=$PIDFILE -start $LOGGEROPTS \ /usr/lib/courier-imap/couriertcpd -address=$ADDRESS \ -maxprocs=$MAXDAEMONS -maxperip=$MAXPERIP $TCPDOPTS \ $PORT /usr/sbin/pop3login \ $POP3_BIN ${MAILDIRPATH}" rc_status -v ;; stop) echo -n "Shutting down Courier-POP3 " /usr/sbin/courierlogger -pid=$PIDFILE -stop rc_status -v rm -f $PIDFILE{,.lock} ;; try-restart) $0 status >/dev/null && $0 restart rc_status ;; restart) $0 stop $0 start rc_status ;; force-reload) echo -n "Reload Courier-POP3 " $0 stop && $0 start rc_status ;; reload) echo -n "Reload Courier-POP3 " rc_failed 3 rc_status -v ;; status) echo -n "Checking for Courier-POP3 " /sbin/checkproc -k -p $PIDFILE /usr/sbin/courierlogger if [ $? -eq 7 ]; then rc_failed 3 fi; rc_status -v ;; probe) test /etc/courier/pop3d -nt $PIDFILE && echo restart ;; *) echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}" exit 1 ;; esac rc_exit