emailrelay/bin/emailrelay-notify.sh.in
Graeme Walker b0a0cb1b42 v2.1
2019-09-27 12:00:00 +00:00

128 lines
3.5 KiB
Bash
Executable File

#!/bin/sh
#
# Copyright (C) 2001-2019 Graeme Walker <graeme_walker@users.sourceforge.net>
#
# 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 <http://www.gnu.org/licenses/>.
# ===
#
# emailrelay-notify.sh
#
# Looks for failed mail in the E-MailRelay spool directory and sends failure
# notification messages using 'procmail'.
#
# usage: emailrelay-notify.sh [<spool-dir>]
#
# Notification of failed e-mail by means of e-mail messages is a requirement
# imposed by the SMTP specification. However, a simpler approach might be more
# appropriate -- for example, a line like this in a ".profile" script:
#
# if test -f /var/spool/emailrelay/*.envelope.bad ; then echo Failed mail >&2 ; fi
#
# or perhaps a cron entry like this, since output from a cron job gets sent
# as mail:
#
# 0 0 * * * /bin/cat /var/spool/emailrelay/*.envelope.bad 2>/dev/null
#
tmp="/tmp/`basename $0`.$$.tmp"
trap "rm -f \"${tmp}\" 2>/dev/null ; exit 0" 0 1 2 3 13 15
procmail="procmail"
# parse the command line
#
store="__SPOOL_DIR__"
if test $# -ge 1
then
store="${1}"
fi
# check the spool directory
#
if test \! -d "${store}"
then
echo `basename $0`: invalid spool directory >&2
exit 1
fi
# for each failed e-mail...
#
for file in "${store}"/emailrelay.*.envelope.bad ""
do
if test -f "${file}"
then
# parse out the failure reason and the original sender
#
content="`echo \"${file}\" | sed 's/envelope/content/' | sed 's/.bad//'`"
reason="`fgrep MailRelay-Reason \"${file}\" | sed 's/X-[^ ]*Reason: //' | tr -d '\015'`"
from="`fgrep MailRelay-From \"${file}\" | sed 's/X-MailRelay-From: //' | tr -d '\015'`"
deliver_to="${from}"
if test "${deliver_to}" = ""
then
deliver_to="root"
fi
# create a notification message header
#
boundary="--------------`basename \"${file}\"`.$$"
echo "To: ${deliver_to}" > "${tmp}"
echo "From: postmaster" >> "${tmp}"
echo "Subject: Your e-mail could not be delivered" >> "${tmp}"
echo "MIME-Version: 0.1" >> "${tmp}"
echo "Content-Type: multipart/mixed; boundary=\"${boundary}\"" >> "${tmp}"
echo "" >> "${tmp}"
# add the message text
#
echo "" >> "${tmp}"
echo "--${boundary}" >> "${tmp}"
echo "Content-Type: text/plain; charset=us-ascii" >> "${tmp}"
echo "" >> "${tmp}"
if test -f "${content}"
then
egrep -i '^To:|^Subject:' ${content} >> "${tmp}"
fi
if test "${reason}" != ""
then
echo "Reason: ${reason}" >> "${tmp}"
fi
# add the message attachment
#
if test -f "${content}"
then
echo "--${boundary}" >> "${tmp}"
echo "Content-Type: message/rfc822" >> "${tmp}"
echo "Content-Transfer-Encoding: 8bit" >> "${tmp}"
echo "Content-Description: `basename \"${content}\"`" >> "${tmp}"
echo "" >> "${tmp}"
cat "${content}" >> "${tmp}"
fi
echo "--${boundary}--" >> "${tmp}"
# deliver the notification using procmail
#
echo `basename $0`: delivering `basename "${content}"` to ${deliver_to}
"${procmail}" -d "${deliver_to}" < "${tmp}"
rc=$?
# clean up
#
if test "${rc}" -eq 0
then
rm -f "${file}" "${content}" 2>/dev/null
fi
fi
done