c49d1a3273
We have not checked for this KEYWORD for a long time now, so this is a complete noop, and thus no PORTREVISION bump. Removing it at this point is mostly for pedantic reasons, and partly to avoid perpetuating this anachronism by copy and paste to future scripts.
21 lines
387 B
Bash
21 lines
387 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
#
|
|
# PROVIDE: nullmailer
|
|
# REQUIRE: DAEMON
|
|
#
|
|
# Add the following line to /etc/rc.conf to enable nullmailer:
|
|
#
|
|
# nullmailer_enable="YES"
|
|
#
|
|
|
|
. %%RC_SUBR%%
|
|
|
|
name=nullmailer
|
|
rcvar=`set_rcvar`
|
|
nullmailer_user=nullmail
|
|
command=%%PREFIX%%/sbin/nullmailer-send
|
|
command_args=" 2>&1 | /usr/bin/logger -i -p local5.info -t nullmail &"
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|
|
|