fd154a9588
(1) they are more likely to do the right thing if the user sets rc_fast_and_loose; and (2) they pre-create any necessary directories prior to start the respective services. Also, fix the path to the courierwebadmin binary in SPECIAL_PERMS for the courier-mta package. Bump the PKGREVISION.
68 lines
1.3 KiB
Bash
Executable file
68 lines
1.3 KiB
Bash
Executable file
#!@RCD_SCRIPTS_SHELL@
|
|
#
|
|
# $NetBSD: courierpops.sh,v 1.15 2006/06/17 19:26:48 jlam Exp $
|
|
#
|
|
# Courier POP3/SSL services daemon
|
|
#
|
|
# PROVIDE: courierpops
|
|
# REQUIRE: authdaemond
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="courierpops"
|
|
rcvar=${name}
|
|
command="@PREFIX@/sbin/couriertcpd"
|
|
ctl_command="@PREFIX@/sbin/pop3d-ssl"
|
|
pidfile="@VARBASE@/run/pop3d-ssl.pid"
|
|
required_files="@PKG_SYSCONFDIR@/pop3d @PKG_SYSCONFDIR@/pop3d-ssl"
|
|
|
|
start_cmd="courierpops_doit start"
|
|
stop_cmd="courierpops_doit stop"
|
|
|
|
courierpops_doit()
|
|
{
|
|
action=$1
|
|
case $action in
|
|
start)
|
|
for f in $required_files; do
|
|
if [ ! -r "$f" ]; then
|
|
@ECHO@ 1>&2 "$0: WARNING: $f is not readable"
|
|
return 1
|
|
fi
|
|
done
|
|
|
|
. @PKG_SYSCONFDIR@/pop3d
|
|
. @PKG_SYSCONFDIR@/pop3d-ssl
|
|
|
|
f="$TLS_CERTFILE"
|
|
if [ -z "$f" ]; then
|
|
@ECHO@ 1>&2 "$0: WARNING: TLS_CERTFILE is empty"
|
|
return 1
|
|
fi
|
|
if [ ! -f "$f" ] && \
|
|
[ "$f" = "@PKG_SYSCONFDIR@/pop3d.pem" ]; then
|
|
@ECHO@ "Generating POP3 SSL certificate in $f."
|
|
@PREFIX@/sbin/mkpop3dcert >/dev/null 2>&1
|
|
fi
|
|
if [ ! -r "$f" ]; then
|
|
@ECHO@ 1>&2 "$0: WARNING: $f is not readable"
|
|
return 1
|
|
fi
|
|
|
|
case x$POP3DSSLSTART in
|
|
x[yY]*)
|
|
@ECHO@ "Starting ${name}."
|
|
${ctl_command} $action
|
|
;;
|
|
esac
|
|
;;
|
|
stop)
|
|
@ECHO@ "Stopping ${name}."
|
|
${ctl_command} $action
|
|
;;
|
|
esac
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|