summaryrefslogtreecommitdiff
path: root/cron-jobs/devlist-mailer
blob: 1b59cb3091ee9e71b0e23fdd70cd402c0e19eb82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
#Dummy helper to send email to arch-dev
# It does nothing if no output

LIST="arch-dev-public@archlinux.org"
#LIST="aaronmgriffin@gmail.com"
FROM="repomaint@archlinux.org"

SUBJECT="Repository Maintenance $(date +"%d-%m-%Y")"
if (( $# >= 1 )); then
	SUBJECT="$1 $(date +"%d-%m-%Y")"
fi

if (( $# >= 2 )); then
	LIST="$2"
fi

stdin="$(cat)"
#echo used to strip whitespace for checking for actual data
if [[ -n "$(echo $stdin)" ]]; then

	echo "Subject: $SUBJECT
To: $LIST
From: $FROM

$stdin" | /usr/sbin/sendmail -F"$FROM" "$LIST"

fi