diff options
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-06-19 00:07:08 +0200 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-06-19 00:07:08 +0200 |
commit | 3d287cbad91a35158444b49840ebfc3f86e6e59a (patch) | |
tree | f7a3af4ae7744b734dc9db75933c0a68d638fd11 /cron-jobs | |
parent | a90b2f5dc26474c291bd15b4bbddc75afea2731f (diff) | |
download | dbscripts-3d287cbad91a35158444b49840ebfc3f86e6e59a.tar.gz dbscripts-3d287cbad91a35158444b49840ebfc3f86e6e59a.tar.xz |
Correct the devlist mailer script to send real emails
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'cron-jobs')
-rwxr-xr-x | cron-jobs/devlist-mailer | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cron-jobs/devlist-mailer b/cron-jobs/devlist-mailer index b9a27e3..094d60d 100755 --- a/cron-jobs/devlist-mailer +++ b/cron-jobs/devlist-mailer @@ -2,15 +2,16 @@ #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" +LIST="arch-dev-public@archlinux.org" +#LIST="aaronmgriffin@gmail.com" +FROM="repomaint" 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" +echo "Subject: Repository Maintenance $(date +"%d-%m-%Y %H:%M") + +$stdin" | /usr/sbin/sendmail -F$FROM "$LIST" + fi |