summaryrefslogtreecommitdiff
path: root/extra/coadde/cron-jobs/devlist-mailer
diff options
context:
space:
mode:
Diffstat (limited to 'extra/coadde/cron-jobs/devlist-mailer')
-rwxr-xr-xextra/coadde/cron-jobs/devlist-mailer28
1 files changed, 0 insertions, 28 deletions
diff --git a/extra/coadde/cron-jobs/devlist-mailer b/extra/coadde/cron-jobs/devlist-mailer
deleted file mode 100755
index 1a05521..0000000
--- a/extra/coadde/cron-jobs/devlist-mailer
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/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 [ $# -ge 1 ]; then
- SUBJECT="$1 $(date +"%d-%m-%Y")"
-fi
-
-if [ $# -ge 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