Newer
Older
#!/sbin/openrc-run
[ "${SVCNAME}" != "${SVCNAME##*.}" ] && instance=${SVCNAME##*.}
description="Secure POP3/IMAP server"
cfgfile=/etc/dovecot/dovecot${instance:+.$instance}.conf
pidfile=$(doveconf -c $cfgfile -h base_dir 2>/dev/null)/master.pid
command=/usr/sbin/dovecot
command_args=${instance:+-c $cfgfile}
required_files="$cfgfile"
extra_started_commands="reload reopen"
description_reload="Reload configuration"
description_reopen="Reopen log files"
before mta
after bootmisc firewall ldap mysql ntp-client ntpd postgresql saslauthd slapd
start_pre() {
ebegin
doveconf -c $cfgfile -x >/dev/null && \
checkpath --directory ${pidfile%/*}
reload() {
ebegin "Reloading ${SVCNAME} configs and restarting auth/login processes"
start_pre && start-stop-daemon --signal HUP --pidfile $pidfile
reopen() {
ebegin "Reopening ${SVCNAME} log files"
start-stop-daemon --signal USR1 --pidfile $pidfile