about summary refs log tree commit diff stats
path: root/config
Commit message (Collapse)AuthorAgeFilesLines
* Implement loading passwords from external commandsGalen Abell2019-05-181-8/+61
| | | | * Resolves #80
* Install filters to /usr/share/aerc/filtersDrew DeVault2019-05-171-3/+3
|
* Remove unimplemented color configurationDrew DeVault2019-05-171-42/+0
| | | | Will probably end up doing this differently anyway
* Implement ui.empty-message config optionDrew DeVault2019-05-172-17/+0
| | | | | Also removes some options that aren't going to be supported any time soon.
* Abort if accounts.conf is world readableReto Brunner2019-05-161-1/+26
| | | | Fixes #32
* Revert "Abort if accounts.conf is world readable"Drew DeVault2019-05-161-25/+1
| | | | This reverts commit a755608ef9d5893b68dc4c774bbda06503481552.
* Revert "s/aerc.conf/address.conf/ in permission check"Drew DeVault2019-05-161-1/+1
| | | | This reverts commit 66ba099ca0bfa83cd050050d92663ec45da20141.
* s/aerc.conf/address.conf/ in permission checkCole Helbling2019-05-161-1/+1
| | | | | Small typo in a recent commit: should abort if accounts.conf is world readable, not aerc.conf.
* Abort if accounts.conf is world readableReto Brunner2019-05-161-1/+25
| | | | Fixes #32
* Change default bindings for repliesDrew DeVault2019-05-161-4/+4
|
* Change default reply keybindingsDrew DeVault2019-05-161-8/+8
|
* Copy sent emails to the Sent folderDrew DeVault2019-05-152-0/+4
| | | | Or rather, to a user-specified folder
* Fix default bindings for quit and editDrew DeVault2019-05-141-1/+4
|
* Move ! bind to [messages]Drew DeVault2019-05-141-1/+1
|
* Add (non-functional) reply commands to bindingsDrew DeVault2019-05-141-2/+9
|
* Add ! to default keybindingsDrew DeVault2019-05-141-0/+1
|
* Add $EDITOR, internal config for composeDrew DeVault2019-05-142-0/+17
|
* Add distinct keybindings for each compose viewDrew DeVault2019-05-143-11/+31
|
* Populate "From" header from config for new emailsDrew DeVault2019-05-132-0/+5
|
* Add outgoing account configurationDrew DeVault2019-05-122-5/+10
|
* Add initial compose widgetDrew DeVault2019-05-121-0/+8
|
* Use better regex for identifying patchesDrew DeVault2019-03-311-1/+1
|
* Remove show-headers config optionDrew DeVault2019-03-311-6/+0
| | | | This'll probably look different when we implement it
* Remove unused config optionsDrew DeVault2019-03-311-6/+0
| | | | Which are not planned for eventual implementation
* Remove key bindings from aerc.confDrew DeVault2019-03-311-46/+0
| | | | These were moved to binds.conf
* Add script for sandboxing w3mDrew DeVault2019-03-311-1/+1
|
* Use shell to execute filters, fix non-determinismDrew DeVault2019-03-311-1/+2
|
* Improve plaintext.pyDrew DeVault2019-03-311-1/+0
|
* Implement header-regex-match filtersDrew DeVault2019-03-312-7/+21
|
* Add basic filter implementationDrew DeVault2019-03-312-25/+67
|
* Add message view commands, :closeDrew DeVault2019-03-301-1/+1
|
* Update default config/binds.confDrew DeVault2019-03-301-2/+17
|
* Handle no configured accounts gracefullyJulian P Samaroo2019-03-301-0/+4
| | | | | Instead of throwing a runtime error, when no accounts are configured in accounts.conf, we provide an informative error message.
* Rig up terminal keybinding groupDrew DeVault2019-03-211-0/+1
|
* Add context-specific keybindingsDrew DeVault2019-03-213-12/+114
|
* Add additional context to key binding setDrew DeVault2019-03-211-4/+14
|
* Handle terminal title, login shellDrew DeVault2019-03-171-1/+1
|
* Implement :next-tab, :prev-tabDrew DeVault2019-03-171-6/+6
|
* Fix special key bindings (e.g. <C-d>)Drew DeVault2019-03-151-1/+6
|
* Implement default in accounts.confDrew DeVault2019-03-151-4/+7
|
* Remove extra debug log statementDrew DeVault2019-03-151-1/+0
|
* Implement sidebar-width config optionDrew DeVault2019-03-151-7/+10
|
* Rename :cd -> :cf, add :cdDrew DeVault2019-03-151-1/+1
|
* Rig up key bindingsDrew DeVault2019-03-152-172/+170
|
* Implement key bindings subsystemDrew DeVault2019-03-154-33/+391
| | | | Which is not yet rigged up
* Misc idiomatic fixesemersion2018-01-101-15/+9
|
* Parse account configurationDrew DeVault2018-01-091-0/+45
|
* Initial pass on worker/UI message passingDrew DeVault2018-01-091-5/+4
|
* Load UI configurationDrew DeVault2018-01-093-0/+281
='n39' href='#n39'>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
200
201
202
203
204
205
206
207