mirror of
https://git.freebsd.org/ports.git
synced 2025-05-15 16:51:52 -04:00
25 lines
483 B
Bash
25 lines
483 B
Bash
#!/bin/sh
|
|
|
|
# PROVIDE: milter-callback
|
|
# REQUIRE: DAEMON
|
|
# BEFORE: mail
|
|
# KEYWORD: shutdown
|
|
|
|
# Add the following lines to /etc/rc.conf to enable `milter-callback':
|
|
#
|
|
# miltercallback_enable="YES"
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="miltercallback"
|
|
rcvar=miltercallback_enable
|
|
|
|
command="%%PREFIX%%/libexec/milter-callback"
|
|
required_files="%%PREFIX%%/etc/mail/milter-callback.conf"
|
|
|
|
# read configuration and set defaults
|
|
load_rc_config "$name"
|
|
: ${miltercallback_enable="NO"}
|
|
|
|
run_rc_command "$1"
|