#!/sbin/openrc-run
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

depend() {
	need net courier-authlib
	use famd
}

. /etc/courier-imap/imapd

checkconfig() {
	if [ ! -e /etc/courier-imap/imapd ] ; then
		eerror "You need an /etc/courier-imap/imapd file to run courier-imapd"
		return 1
	fi
	. /etc/courier-imap/imapd || {
		eerror "There are syntax errors in /etc/courier-imap/imapd"
		eerror "Please correct them before trying to start courier-imapd"
		return 2
	}
}

start() {
	checkconfig || return 1
	ebegin "Starting courier-imapd"
	/usr/bin/env - /usr/lib64/courier-imap/gentoo-imapd.rc --pid=${PIDFILE}
	eend $?
}

stop() {
	ebegin "Stopping courier-imapd"
	start-stop-daemon --quiet --stop --pid=${PIDFILE}
	eend $?
}
