server/process/send-zip-report

50 lines
866 B
Plaintext
Raw Permalink Normal View History

2014-04-27 03:03:14 +02:00
#!/bin/bash
if [ -z "$ERESSEA" ]; then
ERESSEA=$(echo "$PWD" |sed -e 's/\/game.*//')
2014-04-27 03:03:14 +02:00
echo "Assuming that ERESSEA=$ERESSEA"
fi
if [ ! -f reports.txt ]; then
echo "need to run $0 from the report direcory"
2019-07-31 08:43:23 +02:00
exit 2
2014-04-27 03:03:14 +02:00
fi
PWD=$(pwd)
GAME=$(dirname "$PWD")
2014-04-27 03:03:14 +02:00
TEMPLATE=report-mail.txt
if [ "$1" == "-Lde" ]
then
TEMPLATE=report-mail.de.txt
shift
fi
if [ "$1" == "-Len" ]
then
TEMPLATE=report-mail.en.txt
shift
fi
if [ -e "$GAME/$TEMPLATE" ]; then
TEMPLATE="$GAME/$TEMPLATE"
2014-04-27 03:03:14 +02:00
else
TEMPLATE="$ERESSEA/server/etc/$TEMPLATE"
2014-04-27 03:03:14 +02:00
fi
if [ ! -e "$TEMPLATE" ]; then
2014-04-27 03:03:14 +02:00
echo "no such email template: $TEMPLATE"
2019-07-31 08:43:23 +02:00
exit 3
2014-04-27 03:03:14 +02:00
fi
while [ -e /tmp/.stopped ] ; do
echo "waiting 2 minutes for lockfile in /tmp/.stopped to clear"
sleep 120
done
addr=$1
subject=$2
shift 2
2014-04-27 03:03:14 +02:00
2018-07-24 13:57:46 +02:00
mutt -s "$subject" -a "$@" -- "$addr" \
2017-12-03 16:42:14 +01:00
< "$TEMPLATE" || echo "Sending failed for email/report: $2/$3"