#!/bin/sh -f

verbose=
[ "$1" = '--verbose' ] && { verbose=v; shift; }
[ "$1" = '--' ] && shift

[ $# -eq 1 ] || {
	printf 'usage: %s [--verbose] unit\n' "$0" >&2
	exit 1
}
unit="$1"

SENDMAIL="$(command -v "$SENDMAIL" || command -v sendmail || command -v /usr/sbin/sendmail || command -v /usr/lib/sendmail)" || {
	printf '<3>can'\''t send error mail for %s without a MTA\n' "$unit"
	exit 0
}

systemctl show --property=User --property=Environment "$unit" | {
	user=
	job_env=
	while IFS='=' read -r k v; do
		case "$k" in
			'User'       )	user="$v"    ;;
			'Environment')	job_env="$v" ;;
		esac
	done
	[ -z "$user" ] && user='root'

	mailto="$user"
	mailfrom='root'

	for kv in $job_env; do
		case "$kv" in
			'MAILTO='*  )	mailto="${kv#'MAILTO='}"     ;;
			'MAILFROM='*)	mailfrom="${kv#'MAILFROM='}" ;;
		esac
	done

	[ -z "$mailto" ] && {
		[ -n "$verbose" ] && printf 'This cron job (%s) opted out of email, therefore quitting\n' "$unit" >&2
		exit 0
	}

	{
		# Encode the message in raw 8-bit UTF-8. w/o base64
		# Virtually all modern MTAs are 8-bit clean and send each other 8-bit data
		# without checking each other's 8BITMIME flag.

		printf '%s: %s\n' 'Content-Type'              'text/plain; charset="utf-8"'    \
		                  'MIME-Version'              '1.0'                            \
		                  'Content-Transfer-Encoding' 'binary'                         \
		                  'Date'                      "$(date -R)"                     \
		                  'From'                      "$mailfrom (systemd-cron)"       \
		                  'To'                        "$mailto"                        \
		                  'Subject'                   "[$(uname -n)] job $unit failed" \
		                  'X-Mailer'                  "systemd-cron 2.0.2-1"         \
		                  'Auto-Submitted'            'auto-generated'
		# https://datatracker.ietf.org/doc/html/rfc3834#section-5

		echo
		case "${LC_ALL-"${LC_CTYPE-"${LANG}"}"}" in
			C|POSIX|*.utf8|*.utf-8|*.UTF-8)	               ;;  # ok, we can safely use this locale as UTF-8
			*                             )	LC_ALL=C.UTF-8 ;;  # forced to comply with charset=
		esac
		systemctl status "$unit"
	} 2>&1 | "$SENDMAIL" -i -B 8BITMIME "$mailto"
}
