#!/bin/sh
#
# $FreeBSD: ports/mail/postfix22/files/postfix.sh.in,v 1.4 2007/03/07 18:29:41 mnag Exp $
#
# PROVIDE: postfix mail
# REQUIRE: %%REQUIRE%%
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable postfix:
# postfix_enable (bool):	Set it to "YES" to enable postfix.
#				Default is "NO".
# postfix_pidfile (path):	Set full path to master.pid.
#				Default is "/var/spool/postfix/pid/master.pid".
# postfix_procname (command):	Set command that start master. Used to verify if
#				postfix is running.
#				Default is "%%PREFIX%%/libexec/postfix/master".
#

. %%RC_SUBR%%

name="postfix"
rcvar=`set_rcvar`

load_rc_config $name

: ${postfix_enable="NO"}
: ${postfix_pidfile="/var/spool/postfix/pid/master.pid"}
: ${postfix_procname="%%PREFIX%%/libexec/postfix/master"}

start_cmd=${name}_start
stop_cmd=${name}_stop
extra_commands="reload"

pidfile=${postfix_pidfile}
procname=${postfix_procname}

postfix_start() {
	%%PREFIX%%/sbin/postfix start
}

postfix_stop() {
	%%PREFIX%%/sbin/postfix stop
}

run_rc_command "$1"


syntax highlighted by Code2HTML, v. 0.9.1