337338ee00
makes any sense. Discussed with: dougb, brooks MFC after: 3 days
19 lines
292 B
Bash
19 lines
292 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
# PROVIDE: mail
|
|
# REQUIRE: LOGIN
|
|
|
|
# XXX - TEMPORARY SCRIPT UNTIL YOU WRITE YOUR OWN REPLACEMENT.
|
|
#
|
|
. /etc/rc.subr
|
|
|
|
load_rc_config 'XXX'
|
|
|
|
if [ -n "${mta_start_script}" ]; then
|
|
[ "${mta_start_script}" != "/etc/rc.sendmail" ] && \
|
|
sh ${mta_start_script} "$1"
|
|
fi
|