blob: 497f31a992503d1a08dcbcaafa2dbe5972e2295d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/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"
notmuch tag -inbox -unread +spam \
path:'general/Junk/**'
notmuch tag -inbox +warwick from:'*@warwick.ac.uk*'
notmuch tag -inbox +receipts \
from:'*@paypal.co.uk*' \
from:'*@namcheap.com*' \
from:'*@digitalocean.com*' \
from:'*@spotify.com*' \
from:'*@nationalexpress.com*' \
from:'o2shop@s-email-o2.co.uk'
notmuch tag -inbox +jobs from:'*@jobs*' \
from:'*@indeed.com*' \
from:'*@linkedin.com' \
from:'*@thecareerwallet*'
notmuch tag -inbox +bank from:'*@*hsbc*' from:'*@*lloydsbank*'
notmuch tag +flagged from:'expiry@letsencrypt.org'
notmuch tag -inbox +unread +trading from:"*trading212.com"
|