From: Don Armstrong Date: Thu, 20 Feb 2014 00:13:08 +0000 (-0800) Subject: handle making needs ham rules and kill off output X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f60f3eab948b0d8c48df97d40fb5940132957468;p=bin.git handle making needs ham rules and kill off output --- diff --git a/learn_from_spam b/learn_from_spam index 4cacf66..d061e45 100755 --- a/learn_from_spam +++ b/learn_from_spam @@ -12,18 +12,22 @@ SPAM_CHECK="spamc -c" if [ "$(basename $0)" = "learn_from_spam" ]; then for file in "$@"; do - $SPAM_REPORT < "$file" >/dev/null; - formail -c < "$file" | grep -e '^From ' -e 'From: ' | spamassassin -R >/dev/null; + $SPAM_REPORT < "$file" >/dev/null 2>&1; + formail -c < "$file" | grep -e '^From ' -e 'From: ' | spamassassin -R >/dev/null 2>&1; # check to see if it's still spam - if ! spamc -c < "$file" >/dev/null; then + if ! $SPAM_CHECK < "$file" >/dev/null 2>&1; then # this message is still not spam; may need custom rules - spamc "$file" > ~/Maildir/spam/needs_rules/cur/"$(basename "$file")"; + spamc "$file" > ~/Maildir/spam/needs_rules/cur/"$(basename "$file")" 2>/dev/null; fi; done; elif [ "$(basename $0)" = "learn_from_ham" ]; then for file in "$@"; do - $HAM_REPORT < "$file" >/dev/null; - formail -c < "$file" |grep -e '^From ' -e 'From: ' -e 'To: ' -e 'Cc: '|spamassassin -W>/dev/null; + $HAM_REPORT < "$file" >/dev/null 2>&1; + formail -c < "$file" |grep -e '^From ' -e 'From: ' -e 'To: ' -e 'Cc: '|spamassassin -W >/dev/null 2>&1; + if $SPAM_CHECK < "$file" >/dev/null 2>&1; then + mkdir -p ~/Maildir/spam/needs_ham_rules/cur; + spamc "$file" > ~/Maildir/spam/needs_ham_rules/cur/"$(basename "$file")" 2>/dev/null; + fi; done; else "Called in a way this script cannot recognize";