summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunnar Wrobel <wrobel@gentoo.org>2005-09-03 09:26:50 +0000
committerGunnar Wrobel <wrobel@gentoo.org>2005-09-03 09:26:50 +0000
commit30e8e1d88a91c541fbb61c7f3b3e254899261875 (patch)
tree78c1c05df20a016071ee1cb4f7504c9877e7d745 /z-distfiles/scripts-gw-1.1/spam-report
parentPreparing new scripts-gw release (diff)
downloadmisc-30e8e1d88a91c541fbb61c7f3b3e254899261875.tar.gz
misc-30e8e1d88a91c541fbb61c7f3b3e254899261875.tar.bz2
misc-30e8e1d88a91c541fbb61c7f3b3e254899261875.zip
Reorganization of distfiles
svn path=/local/; revision=332
Diffstat (limited to 'z-distfiles/scripts-gw-1.1/spam-report')
-rwxr-xr-xz-distfiles/scripts-gw-1.1/spam-report19
1 files changed, 0 insertions, 19 deletions
diff --git a/z-distfiles/scripts-gw-1.1/spam-report b/z-distfiles/scripts-gw-1.1/spam-report
deleted file mode 100755
index 68a3f0e..0000000
--- a/z-distfiles/scripts-gw-1.1/spam-report
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/bin/bash
-
-if [ -d "${1}" ]; then
- MAILS="`ls ${1}`"
- if [ ! -z "${MAILS}" ]; then
- for MAIL in ${MAILS}
- do
- echo "Report ${1}/${MAIL}"
- spamassassin -r < "${1}/${MAIL}"
- echo "Delete ${1}/${MAIL}"
- rm "${1}/${MAIL}"
- done
- fi
- if [ -z "${MAILS}" ]; then
- echo "Nothing in ${1} to report!"
- fi
-fi
-
-