From 06d1242317f7159ccf3014f0a1480e7c56236ebb Mon Sep 17 00:00:00 2001 From: Mohammad Reza Karimi Date: Sun, 4 Jan 2026 21:28:36 -0500 Subject: add all sorts of things --- email/dot-config/notmuch/default/hooks/post-new | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 email/dot-config/notmuch/default/hooks/post-new (limited to 'email/dot-config/notmuch/default/hooks/post-new') diff --git a/email/dot-config/notmuch/default/hooks/post-new b/email/dot-config/notmuch/default/hooks/post-new new file mode 100755 index 0000000..063888b --- /dev/null +++ b/email/dot-config/notmuch/default/hooks/post-new @@ -0,0 +1,10 @@ +#!/bin/sh + +# remove "unread" from "replied" +notmuch tag -unread -new -- tag:replied + +# tag all "new" messages "inbox" and "unread" +notmuch tag +inbox +unread -new -- '(tag:new and folder:mit/INBOX)' + +# tag my replies as "sent" +notmuch tag -new -unread +sent -- '(from:"moreka@mit.edu*" not to:"moreka@mit.edu*" not tag:archived)' -- cgit v1.2.3-71-gdd5e