blob: 063888bcbfc88729257764081f761bd04c899786 (
plain)
1
2
3
4
5
6
7
8
9
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)'
|