diff options
Diffstat (limited to 'astroid/hooks')
-rwxr-xr-x | astroid/hooks/toggle-email-learn-spam | 11 | ||||
-rwxr-xr-x | astroid/hooks/toggle-thread-learn-spam | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/astroid/hooks/toggle-email-learn-spam b/astroid/hooks/toggle-email-learn-spam new file mode 100755 index 0000000..ae8d9d9 --- /dev/null +++ b/astroid/hooks/toggle-email-learn-spam @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +# +# $1 Message ID to toggle tag on + +if [[ "$(notmuch search id:$1 and tag:learn-spam)" ]]; then + printf "unsetting tag learn-spam from message %s\n" "$1" + notmuch tag -learn-spam +inbox id:"$1" +else + printf "setting tag learn-spam from message %s\n" "$1" + notmuch tag +learn-spam -inbox id:"$1" +fi diff --git a/astroid/hooks/toggle-thread-learn-spam b/astroid/hooks/toggle-thread-learn-spam new file mode 100755 index 0000000..d40708a --- /dev/null +++ b/astroid/hooks/toggle-thread-learn-spam @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +# +# $1 Thread ID to toggle tag on + +if [[ "$(notmuch search thread:$1 and tag:learn-spam)" ]]; then + printf "unsetting tag learn-spam from thread %s\n" "$1" + notmuch tag -learn-spam +inbox thread:"$1" +else + printf "setting tag learn-spam%s from thread %s\n" "$1" + notmuch tag +learn-spam -inbox thread:"$1" +fi |