#!/bin/sh

# Start or stop cyrus-imapd
# $FreeBSD: ports/mail/cyrus-imapd/files/imapd.sh,v 1.4 2001/04/12 19:06:31 ume Exp $

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
