#!/bin/sh # # Copyright (C) 2001-2004 Graeme Walker # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License # as published by the Free Software Foundation; either # version 2 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # # === # # emailrelay # # A shell-script wrapper for E-MailRelay designed for use in the SysV-init # system (/etc/init.d). # # Additional command-line switches for the emailrelay daemon are sourced # from the file "/etc/emailrelay.conf" if it exists. Uncommented lines in this # file have "--" prepended to them and then they are pasted onto the command # line. # # usage: emailrelay { start | stop | restart | force-reload | status } # # See also: LSB, start_daemon (lsb), startproc (suse), install_initd (lsb), # insserv (suse), /usr/share/doc/initscripts*/sysvinitfiles (redhat) # ## # RedHat comment block... # # chkconfig: 345 80 20 # description: E-MailRelay is a SMTP proxy and store-and-forward MTA. # pidfile: /var/run/emailrelay.pid # processname: emailrelay ## ## # LSB comment block... # # The bogus 345 run-levels are a workround for a buggy RedHat chkconfig which # reads the LSB comment block (incorrectly) as an undocumented 'feature'. # ### BEGIN INIT INFO # Provides: emailrelay # Required-Start: $network # Required-Stop: $network # Default-Start: 345 3 4 5 # Default-Stop: 345 3 4 5 # Description: E-MailRelay SMTP proxy and store-and-forward MTA. ### END INIT INFO ## # choose an infrastructure style # if test -f /etc/rc.status then style="suse" . /etc/rc.status elif test -f /etc/init.d/functions then style="redhat" . /etc/init.d/functions elif test -f /lib/lsb/init-functions then style="lsb" . /lib/lsb/init-functions else style="unix" fi # script configuration # var_run="/var/run" emailrelay="__SBIN_DIR__/emailrelay" # (absolute path required in some environments) if test \! -d "${var_run}" ; then var_run="/tmp" ; fi if test \! -x "${emailrelay}" ; then emailrelay="`pwd`/emailrelay" ; fi pid_file="${var_run}/emailrelay.pid" PATH="${PATH}:/sbin:/bin:/usr/bin" cfg_file="/etc/emailrelay.conf" # server configuration # start_switches="--as-server --pid-file ${pid_file} `cat \"${cfg_file}\" 2>/dev/null | egrep -v '^#|^ *$' | sed 's/^/--/'`" # functions... # #