#!/bin/sh # # Copyright (C) 2001-2007 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 3 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, see . # === # # 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) # ## # LSB comment block... # ### BEGIN INIT INFO # Provides: emailrelay # Required-Start: $network # Required-Stop: $network # Default-Start: 3 4 5 # Default-Stop: 3 4 5 # Description: E-MailRelay SMTP proxy and store-and-forward MTA. ### END INIT INFO ## # choose an infrastructure style # if 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 using the config file # start_switches="--as-server --pid-file ${pid_file} `cat \"${cfg_file}\" 2>/dev/null | egrep -v '^#|^ *$' | sed 's/^/--/'`" # functions... # #