mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 14:22:14 +01:00
- sample-configs (conf.d) moved to main package because those are used by dovecot.conf - dovecot-sample-config subpackage and corresponding dovecot-sample-config.post-install are removed - configs related to ldap auth moved to dovecot-ldap subpackage - new subpackage dovecot-sql with sql-related configs - all sql drivers now depend on dovecot-sql - init-script: default basedir set to /run/dovecot. added creation of basedir
58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
#!/sbin/openrc-run
|
|
|
|
description="Secure POP3/IMAP server"
|
|
description_reload="Reload configuration"
|
|
|
|
extra_started_commands="reload"
|
|
|
|
depend() {
|
|
need localmount net
|
|
before exim postfix
|
|
after bootmisc firewall ldap mysql ntp-client ntpd postgresql saslauthd slapd
|
|
use logger
|
|
}
|
|
|
|
checkconfig() {
|
|
DOVECOT_INSTANCE=${SVCNAME##*.}
|
|
if [ -n "${DOVECOT_INSTANCE}" -a "${SVCNAME}" != "dovecot" ]; then
|
|
DOVECOT_CONF=/etc/dovecot/dovecot.${DOVECOT_INSTANCE}.conf
|
|
else
|
|
DOVECOT_CONF=/etc/dovecot/dovecot.conf
|
|
fi
|
|
if [ ! -e ${DOVECOT_CONF} ]; then
|
|
eerror "You will need an ${DOVECOT_CONF} first"
|
|
return 1
|
|
fi
|
|
if [ -x /usr/sbin/dovecot ]; then
|
|
DOVECOT_BASEDIR=$(/usr/sbin/dovecot -c ${DOVECOT_CONF} -a | grep '^base_dir = ' | sed 's/^base_dir = //')
|
|
else
|
|
eerror "dovecot not executable"
|
|
return 1
|
|
fi
|
|
DOVECOT_BASEDIR=${DOVECOT_BASEDIR:-/run/dovecot}
|
|
DOVECOT_PIDFILE=${DOVECOT_BASEDIR}/master.pid
|
|
checkpath --directory --owner dovecot:dovecot --mode 0755 \
|
|
${DOVECOT_BASEDIR}
|
|
}
|
|
|
|
start() {
|
|
checkconfig || return 1
|
|
ebegin "Starting ${SVCNAME}"
|
|
start-stop-daemon --start --exec /usr/sbin/dovecot --pidfile "${DOVECOT_PIDFILE}" -- -c "${DOVECOT_CONF}"
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
checkconfig || return 1
|
|
ebegin "Stopping ${SVCNAME}"
|
|
start-stop-daemon --stop --exec /usr/sbin/dovecot --pidfile "${DOVECOT_PIDFILE}"
|
|
eend $?
|
|
}
|
|
|
|
reload() {
|
|
checkconfig || return 1
|
|
ebegin "Reloading ${SVCNAME} configs and restarting auth/login processes"
|
|
start-stop-daemon --signal HUP --exec /usr/sbin/dovecot --pidfile "${DOVECOT_PIDFILE}"
|
|
eend $?
|
|
}
|