summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-mail/courier-imap/files/courier-imap-4.0.1-courier-imapd-ssl.rc6')
-rw-r--r--net-mail/courier-imap/files/courier-imap-4.0.1-courier-imapd-ssl.rc642
1 files changed, 0 insertions, 42 deletions
diff --git a/net-mail/courier-imap/files/courier-imap-4.0.1-courier-imapd-ssl.rc6 b/net-mail/courier-imap/files/courier-imap-4.0.1-courier-imapd-ssl.rc6
deleted file mode 100644
index 21b386cf1f1b..000000000000
--- a/net-mail/courier-imap/files/courier-imap-4.0.1-courier-imapd-ssl.rc6
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/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-ssl.rc6,v 1.1 2005/01/05 15:46:55 langthang Exp $
-
-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"
- 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 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"
- start-stop-daemon --quiet --start --exec /usr/bin/env - /usr/lib/courier-imap/gentoo-imapd-ssl.rc \
- --pid=$SSLPIDFILE
- eend $?
-}
-
-stop() {
- ebegin "Stopping courier-imapd over SSL"
- start-stop-daemon --quiet --stop --pid=$SSLPIDFILE
- eend $?
-}