-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscores
45 lines (32 loc) · 998 Bytes
/
scores
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# score <pattern> <value>
# unscore <pattern>
#
# (pattern is something like '~A' (all), '~f aol\.com$', '~s mutt' ...)
# (value is between -9999 and 9999. A prefix '=' sets otherwise incr/decr)
#
unscore *
#unset score # turn off scoring
set score_threshold_delete=-15 # mark messages with score <=value deleted
set score_threshold_flag=100 # mark messages with score >=value flagged
set score_threshold_read=-15 # mark messages with score <=value read
## add points to new messages
score "~N" 10
## Add a point to old (unread) messages
score "~O" 3
## Add a point to messages addressed to you
score "~p" 3
## Add a point to messages from you
score "~P" 3
## Add a point to messages you replied to (using mutt)
score "~Q" 3
## add points to Flagged messages
score "~F" 1
## add points to read messages
score "~R" 1
## add points to recent unread message
score "~d <5d" 1
score "~d <4d" 2
score "~d <3d" 3
score "~d <2d" 4
score "~d <1d" 5
score "~d >1m" -10