summary refs log tree commit diff stats
path: root/config/aerc.conf.in
Commit message (Collapse)AuthorAgeFilesLines
* Ring bell when new messages arrive 0.2.0Ben Burwell2019-07-291-0/+6
| | | | | | | | Add a "new-message-bell" option to the UI section of aerc.conf. A new hook into the message store allows the msglist widget to detect new messages being added to the displayed list. When new messages are delivered, and the new-message-bell option is enabled (as it is by default), the terminal will beep.
* Support configurable header layout in compose widgetDaniel Bridges2019-07-261-0/+7
|
* Add new-email triggerJeffas2019-07-261-0/+11
| | | | | | | | | | | | | | | | | This patch sets up the trigger config section of aerc.conf. Each trigger has its own function which is called from the place where it is triggered. Currently only the new-email trigger is implemented. The triggers make use of format strings. For instance, in the new-email trigger this allows the user to select the trigger command and also the information extracted from the command and placed into their command. To actually execute the trigger commands the keypresses are simulated. Further triggers can be implemented in the future. Formatting of the command is moved to a new package.
* Add option to always show mimetype in viewerJeffas2019-07-171-0/+5
| | | | | | | | | | A user may want to be able to see what mimetype they are viewing, so that they can determine what program it may be opened in or for some other reason. The config option is under the [viewer] section and is called 'always-show-mime'. It defaults to false to preserve the current behaviour.
* Display user specified headers in viewer if presentDaniel Bridges2019-07-171-0/+8
|
* Add MouseEnabled config settingJeffas2019-07-171-0/+5
| | | | | This patch adds the ability to control whether aerc captures mouseevents or not. By default it will be set to not capture events.
* Document message index format specifiersBen Burwell2019-07-041-1/+1
|
* Correct default filter order in aerc.conf.inDrew DeVault2019-07-021-1/+1
|
* Set empty message in dirlist if no folder exist.Reto Brunner2019-06-141-0/+5
|
* Make awk filters more portableDrew DeVault2019-06-131-2/+2
|
* Message list: implement index-format optionYash Srivastav2019-06-071-4/+4
|
* Rewrite Python filters in awkDrew DeVault2019-06-071-2/+2
|
* Add image/* filter, commented out by defaultDrew DeVault2019-06-071-0/+1
|
* Disable HTML filter by defaultDrew DeVault2019-06-071-1/+1
|
* implements ability to view headers in message viewYash Srivastav2019-06-071-0/+7
|
* Subsitute prefix in aerc.conf for installDrew DeVault2019-05-261-0/+67
l' href='/akkartik/mu/commit/html/000organization.cc.html?h=main&id=e5c11a5137d538b7713dd8708ca767c208824c06'>e5c11a51 ^
a654e4ec ^

672e3e50 ^
e5c11a51 ^
a654e4ec ^
204dae92 ^















































































































201458e3 ^
51728d93 ^
204dae92 ^


















51728d93 ^

204dae92 ^
672e3e50 ^


a654e4ec ^
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199