summaryrefslogtreecommitdiff
path: root/.fmail
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-05-04 14:15:14 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-05-04 14:15:14 -0700
commit4591944909ebeb18d6ebbc86980d789069e5bae4 (patch)
tree0aa15a4f9b991cf035fd363b08f2bc3dbc1bfc76 /.fmail
parentc1aa153ee200e545b766914d565409b3fe08ec77 (diff)
downloaddotfiles-4591944909ebeb18d6ebbc86980d789069e5bae4.tar.gz
fix actually killing threads
Diffstat (limited to '.fmail')
-rwxr-xr-x.fmail/.notmuch/hooks/post-new2
1 files changed, 1 insertions, 1 deletions
diff --git a/.fmail/.notmuch/hooks/post-new b/.fmail/.notmuch/hooks/post-new
index 63e817b2..e10c4824 100755
--- a/.fmail/.notmuch/hooks/post-new
+++ b/.fmail/.notmuch/hooks/post-new
@@ -19,7 +19,7 @@ notmuch tag +deleted -- folder:trash
# mark messages as read in threads I've killed. don't propagate the
# spw::killed tag itself
-killed_threads=$(notmuch search --output=threads -- tag:spw::killed and tag:unread)
+killed_threads=$(notmuch search --output=threads -- tag:spw::killed)
if [ ! -z "$killed_threads" ]; then
notmuch tag -unread -- $killed_threads
fi