freebsd-ports/mail/cyrus-imapd24/files/imapd.sh
Hajimu UMEMOTO 100080da7d Since imapd.conf is installed into ${PREFIX}/etc, mkimap should
refer ${PREFIX}/etc/imapd.conf
2001-04-12 19:06:31 +00:00

24 lines
400 B
Bash

#!/bin/sh
# Start or stop cyrus-imapd
# $FreeBSD$
case "$1" in
start)
if [ -x /usr/local/cyrus/bin/master -a \
-f /usr/local/etc/cyrus.conf -a \
-f /usr/local/etc/imapd.conf ]; then
/usr/local/cyrus/bin/master &
echo -n ' imapd'
fi
;;
stop)
kill `ps -U cyrus | awk '/master/ {print $1}'` && echo -n ' imapd'
;;
*)
echo "Usage: `basename $0` {start|stop}" >&2
;;
esac
exit 0