summaryrefslogtreecommitdiff
blob: aa9f3b809a95323b1f528127908758bc44657d8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/courier-imap/files/courier-imap-4.0.1-courier-imapd.rc6,v 1.1 2005/01/05 15:46:55 langthang Exp $

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

source /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
	source /etc/courier-imap/imapd || {
		eerror "There are syntax errors in /etc/courier-imap/imapd"
		eerror "Please correct them before trying to start imapd"
		return 2
	}
}

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

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