postfix revision 1.1
1#!/bin/sh 2# 3# $NetBSD: postfix,v 1.1 2000/04/26 05:28:04 thorpej Exp $ 4# 5 6# PROVIDE: mail 7# REQUIRE: LOGIN 8 9# we could do this, but make mail start late, so that things like 10# .forward's are not processed until the system is fully operational 11## REQUIRE: DAEMON 12 13. /etc/rc.subr 14. /etc/rc.conf 15 16postfix_start_precmd() { 17 postfix start 18 return 1 19} 20start_precmd="postfix_start_precmd" 21 22stop_cmd="postfix stop" 23 24reload_cmd="postfix reload" 25 26name="postfix" 27required_files="/etc/${name}/main.cf" 28 29run_rc_command "$1" "reload" 30