blob: 5e32201146df24d5bbe3c24885357da38a7d12d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# unread;inbox;warwick;banks;receipts;spotify
notmuch tag +inbox +unread -new -- tag:new
notmuch tag -new -unread -inbox +sent -- '(from:"aryadev@aryadevchavali.com*" not to:"*@aryadevchavali.com.com*" not tag:list)'
notmuch tag -inbox +list 'from:"rss@aryadevchavali.com"'
notmuch tag -inbox -unread +spam 'path:general/Junk/**'
notmuch tag -inbox +warwick from:'*@warwick.ac.uk*'
notmuch tag -inbox -unread +receipts from:'*@paypal.co.uk*' \
from:'*@namcheap.com*' from:'*@digitalocean.com*' \
from:'*@spotify.com*' from:'*@nationalexpress.com*'
notmuch tag -inbox +jobs from:'*@jobs*' from:'*@indeed.com*'
notmuch tag -inbox +bank from:'*@*hsbc*' from:'*@*lloydsbank*'
notmuch tag +flagged from:'expiry@letsencrypt.org'
notmuch tag -inbox +unread +trading from:"noreply@trading212.com"
|