#!/bin/sh

# $FreeBSD: branches/2018Q3/mail/archivesmtp/files/archivesmtp.in 454856 2017-11-24 23:17:50Z dbaio $
#
# PROVIDE: archivesmtp
# BEFORE: mail
# KEYWORD: shutdown

. /etc/rc.subr

name="archivesmtp"
rcvar=`set_rcvar`

command="/usr/local/sbin/${name}"

# Read settings and set defaults
load_rc_config "$name"

: ${archivesmtp_enable="NO"}
: ${archivesmtp_chuser="nobody"}
: ${archivesmtp_socket="unix:/var/run/archivesmtp/mta.sock"}
: ${archivesmtp_config="/usr/local/etc/archivesmtp.conf"}
: ${archivesmtp_pidfile="/var/run/archivesmtp/run.pid"}
# archivesmtp_flags= May be used to set optional behaviours.

pidfile="${archivesmtp_pidfile}"

command_args="-p ${archivesmtp_socket} -f ${archivesmtp_config} -u ${archivesmtp_chuser} -r ${archivesmtp_pidfile} ${archivesmtp_flags} &"

run_rc_command "$1"
