summaryrefslogtreecommitdiff
blob: 1d62b80ffd2b526645810f09664e00df94397c6d (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
38
39
40
41
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

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

source /etc/courier-imap/imapd-ssl

checkconfig() {
	if [[ ! -e /etc/courier-imap/imapd-ssl ]] ; then
		eerror "You need an /etc/courier-imap/imapd-ssl file to run courier-imapd-ssl"
		return 1
	fi
	source /etc/courier-imap/imapd-ssl || {
		eerror "There are syntax errors in /etc/courier-imap/imapd-ssl"
		eerror "Please correct them before trying to start courier-imapd-ssl"
		return 3
	}
	if [[ ! -e "${TLS_CERTFILE}" ]] ; then
		eerror "You need to create a SSL certificate to use IMAP over SSL"
		eerror "Edit /etc/courier-imap/imapd.cnf, then run: mkimapdcert"
		return 2
	fi
}

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

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