diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-05-20 23:19:02 -0400 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-05-20 23:19:02 -0400 |
commit | d2ce9d0893421cb35c62edad84bbadd1bf917d9e (patch) | |
tree | 89fe9068cc4b5bc354224a02bdb0b6bbac95649b | |
parent | c544d99f907014a5f40356d79b9fb518b559372d (diff) |
Added a simple sendmail-ish script to send to the ML
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | cron-jobs/devlist-mailer | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cron-jobs/devlist-mailer b/cron-jobs/devlist-mailer new file mode 100755 index 0000000..b9a27e3 --- /dev/null +++ b/cron-jobs/devlist-mailer @@ -0,0 +1,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 |