#!/bin/bash
#
# SysV init.d script for the Sendmail mail transfer agent
# Copyright (C) 2015 Daniel Boland <d.boland@rocleiden.nl>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
# 
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

source /etc/init.src.sh

SERVICE="sendmail"
PROGRAM="sendmail"
PIDFILE=/var/run/sendmail.pid
PROGFILE=/usr/libexec/sendmail
PROGARGS="-L sm-mta -bd -q30m"
CYGARGS="-L sm-mta -bD -q30m"
CYGTYPE="manual"
CMDLIST="$CMDLIST|configtest"

function do_help {
	print_syntax
	printf -- " configtest - test $PROGRAM configuration\n"
}
function do_configtest {
	echo | $PROGFILE -d0.13 -d89.10 "$USER"
}

do_command

