Update.
[scripts.git] / gma.sh
diff --git a/gma.sh b/gma.sh
index 6b0c518..d914893 100755 (executable)
--- a/gma.sh
+++ b/gma.sh
 set -e
 
 function usage () {
-    echo "gma.sh [--body] [--keepspam] [--subject|--from|--to|--fromto|--sender] <pattern> [<year>]"
+    echo "gma.sh [--body] [--nospam] [--subject|--from|--to|--fromto|--sender] <pattern> [<year>]"
 }
 
 RESULT_MBOX="/tmp/gma"
+KEEP_SPAM=1
 
 if [[ -z "${MAIL_ARCHIVE_DIR}" ]]; then
     echo "Undefined \$MAIL_ARCHIVE_DIR" >&2
@@ -55,8 +56,8 @@ while [[ $1 ]]; do
             IONICE=""
             ;;
 
-        "--keepspam")
-            KEEP_SPAM=1
+        "--nospam")
+            KEEP_SPAM=0
             ;;
 
         "--from")
@@ -113,7 +114,7 @@ echo "Looking for ${RE_PREFIX}${PATTERN}"
 echo "        in ${FILE_PATTERN}"
 echo "        writing result in ${RESULT_MBOX}"
 
-if [[ ${KEEP_SPAM} ]]; then
+if [[ ${KEEP_SPAM} == "1" ]]; then
 
     ${IONICE} cat ${FILE_PATTERN} \
         | pv -s ${SIZE} -p -t -e - \