about summary refs log tree commit diff stats
path: root/aerc.go
diff options
context:
space:
mode:
authorClayton Craft <clayton@craftyguy.net>2019-06-08 11:29:26 -0700
committerDrew DeVault <sir@cmpwn.com>2019-06-09 11:49:11 -0400
commitdd178262bb1d01f9f7d4710431547041bde52d89 (patch)
tree4ab22337f7f6d4e2609aaf375df26d83225c5130 /aerc.go
parentacfe7d7625192bc856d5d696f741e35ce38cab25 (diff)
downloadaerc-dd178262bb1d01f9f7d4710431547041bde52d89.tar.gz
Select user's preferred mimetype in MessageViewer
This implements selecting the most preferred mimetype under the
'View->Alternatives' configuration setting when viewing a message.
Mimetypes in the alternatives array are weighted by their position,
where the lower the index in the array the higher the priority, so this
is taken into account during selection.

If no message part matches a mimetype in the alternatives array, then it
selects the first mimetype in the message.
Diffstat (limited to 'aerc.go')
0 files changed, 0 insertions, 0 deletions
45a063b8'>^
6e152710 ^
84a1ff6c ^

6e152710 ^


6110c8cc ^
6e152710 ^
ab41c776 ^
f4558377 ^
d1a1173d ^



9bc886b2 ^
f4558377 ^
6e152710 ^
d1a1173d ^



6e152710 ^

6e152710 ^
d1a1173d ^




b3d031a9 ^


d1a1173d ^

ce657945 ^







b3d031a9 ^


d1a1173d ^

6e152710 ^

b3d031a9 ^
76791a70 ^
d1a1173d ^
c29059c8 ^




1687e0f4 ^
d1a1173d ^
















51ec08da ^
18223912 ^
d1a1173d ^








51ec08da ^
18223912 ^
d1a1173d ^






b3d031a9 ^
d1a1173d ^





















b3d031a9 ^




d1a1173d ^
b3d031a9 ^








d1a1173d ^











e2325c56 ^
d1a1173d ^








6e152710 ^


d1a1173d ^
9d82571b ^
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168