summaryrefslogtreecommitdiffstats
path: root/cron-jobs/devlist-mailer
blob: b9a27e33087b046df61d1f7701d131a2c7238fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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="cron@archlinux.org"

stdin="$(cat)"
#echo used to strip whitespace for checking for actual data
if [ -n "$(echo $stdin)" ]; then
    echo "Subject: Repository Maintenance $(date +"%d-%m-%Y %H:%M")
    From: cron@archlinux.org

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