mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
83eb2c3700
literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other.
34 lines
983 B
Bash
34 lines
983 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: miltergreylist
|
|
# REQUIRE: LOGIN
|
|
# BEFORE: sendmail
|
|
# KEYWORD: milter-greylist
|
|
|
|
# Define these miltergreylist_* variables in one of these files:
|
|
# /etc/rc.conf
|
|
# /etc/rc.conf.local
|
|
# /etc/rc.conf.d/miltergreylist
|
|
#
|
|
# DO NOT CHANGE THESE DEFAULT VALUES HERE
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="miltergreylist"
|
|
rcvar=miltergreylist_enable
|
|
command="%%PREFIX%%/bin/milter-greylist"
|
|
|
|
load_rc_config $name
|
|
|
|
miltergreylist_enable=${miltergreylist_enable-"NO"}
|
|
miltergreylist_runas=${miltergreylist_runas-"smmsp"}
|
|
miltergreylist_pidfile=${miltergreylist_pidfile-"/var/run/milter-greylist.pid"}
|
|
miltergreylist_sockfile=${miltergreylist_sockfile-"/var/milter-greylist/milter-greylist.sock"}
|
|
miltergreylist_cfgfile=${miltergreylist_cfgfile-"%%PREFIX%%/etc/mail/greylist.conf"}
|
|
miltergreylist_flags=${miltergreylist_flags-"-P $miltergreylist_pidfile \
|
|
-f $miltergreylist_cfgfile -p $miltergreylist_sockfile -u $miltergreylist_runas"}
|
|
|
|
run_rc_command "$1"
|