336a64246a
- pass maintainership to submitter - add LICENSE - drop optional dependencies on database backends - since 3.0 it's handled with libzdb - rename rc-scripts to .sh-less ones - add UPDATING entry for users, that want to stay with dbmail 2.2.x Please note, that committed patch is reworked version of originally submitted (missing deps added, rc-scripts renamed, NOPORTDOCS issue handled more completely, some plist fixes applied). Sorry for delay. PR: 164631 Submitted by: Alan Hicks <ahicks at p-o.co dot uk> Feature safe: yes
32 lines
642 B
Bash
32 lines
642 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD: /tmp/pcvs/ports/mail/dbmail/files/dbmail-lmtpd.in,v 1.1 2012-03-18 19:17:12 rm Exp $
|
|
#
|
|
|
|
# PROVIDE: dbmail-lmtpd
|
|
# REQUIRE: DAEMON
|
|
# KEYWORD: shutdown
|
|
|
|
#
|
|
# Add the following lines to /etc/rc.conf to enable dbmail-lmtpd:
|
|
#
|
|
# dbmail_lmtpd_enable="YES"
|
|
# dbmail_lmtpd_flags="<set as needed>"
|
|
#
|
|
# See dbmail-lmtpd(8) for flags
|
|
#
|
|
|
|
. /etc/rc.subr
|
|
|
|
name=dbmail_lmtpd
|
|
rcvar=dbmail_lmtpd_enable
|
|
|
|
command=%%PREFIX%%/sbin/dbmail-lmtpd
|
|
pidfile=/var/run/dbmail/dbmail-lmtpd.pid
|
|
required_files=%%PREFIX%%/etc/dbmail.conf
|
|
|
|
# read settings, set default values
|
|
load_rc_config "$name"
|
|
: ${dbmail_lmtpd_enable="NO"}
|
|
|
|
run_rc_command "$1"
|