Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-26 | Support configurable header layout in compose widget | Daniel Bridges | |
2019-07-26 | Add new-email trigger | Jeffas | |
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. | |||
2019-07-19 | Implement :filter, :clear | Kevin Kuehler | |
Signed-off-by: Kevin Kuehler <keur@ocf.berkeley.edu> | |||
2019-07-19 | Change default attach keybinding | Drew DeVault | |
2019-07-17 | Add :cp alias for :copy | Drew DeVault | |
2019-07-17 | Add option to always show mimetype in viewer | Jeffas | |
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. | |||
2019-07-17 | Display user specified headers in viewer if present | Daniel Bridges | |
2019-07-17 | Add MouseEnabled config setting | Jeffas | |
This patch adds the ability to control whether aerc captures mouseevents or not. By default it will be set to not capture events. | |||
2019-07-17 | lowercase all key bindings | Reto Brunner | |
2019-07-15 | 71: Allow user to change config options at runtime | Pedro L. Ramos | |
There is a LoadConf and a LoadConfFromFile. LoadConfFromFile reads the iniFile into memory and and calls LoadConf, which executes the old parsing commands from LoadConf (old func). The remaining of the LoadConfFromFile is the same as the old OldConf. | |||
2019-07-11 | Don't bind $noinherit | Eyal Sawady | |
Fixes #112 Signed-off-by: Eyal Sawady <eyalsawady@gmail.com> | |||
2019-07-04 | Document message index format specifiers | Ben Burwell | |
2019-07-04 | Update binds.conf | Drew DeVault | |
2019-07-02 | Correct default filter order in aerc.conf.in | Drew DeVault | |
2019-06-26 | Implement :search, :next-result, :prev-result | Drew DeVault | |
2019-06-25 | add DefaultSavePath config | Reto Brunner | |
2019-06-19 | Fix reply bindings in [view] | Drew DeVault | |
2019-06-14 | Set empty message in dirlist if no folder exist. | Reto Brunner | |
2019-06-13 | Make awk filters more portable | Drew DeVault | |
2019-06-11 | Add :next/:prev binds for [viewer] | Drew DeVault | |
2019-06-09 | Override $ex in compose view | Yash Srivastav | |
2019-06-09 | Add archive command | Robert Günzler | |
Adds an archive command that moves the current message into the folder specified in the account config entry. Supports three layouts at this point: - flat: puts all messages next to each other - year: creates a folder per year - month: same as above, plus folders per month This also adds a "-p" argument to "cp" and "mv" that works like "--parents" on mkdir(1). We use this to auto-create the directories for the archive layout. | |||
2019-06-07 | Message list: implement index-format option | Yash Srivastav | |
2019-06-07 | Rewrite Python filters in awk | Drew DeVault | |
2019-06-07 | Add image/* filter, commented out by default | Drew DeVault | |
2019-06-07 | Disable HTML filter by default | Drew DeVault | |
2019-06-07 | Add binding to toggle headers | Drew DeVault | |
2019-06-07 | implements ability to view headers in message view | Yash Srivastav | |
2019-06-05 | config: sort account folders | Chris Kinniburgh | |
directory list depends on these being sorted | |||
2019-06-02 | Add delete to the default binds.conf | Drew DeVault | |
2019-05-27 | Add :save and :pipe commands to viewer | Galen Abell | |
* :save takes a path and saves the current message part to that location * :pipe is the same as pipe on the account page, but uses the current message part rather than the whole email (ie :pipe gzip -d) * Refactored account:pipe and extracted common pipe code to commands.util.QuickTerm * Added helper command aerc.PushError | |||
2019-05-26 | Implement :edit in compose screen | Drew DeVault | |
2019-05-26 | Subsitute prefix in aerc.conf for install | Drew DeVault | |
2019-05-25 | binds.conf: make reply -a easier to use than reply | Drew DeVault | |
2019-05-24 | Change ex command to C-x when using terminal | Drew DeVault | |
2019-05-23 | Bind :compose to C in binds.conf | Francis Dinh | |
The tutorial mentions using "C" for composing messages, but this was not actually implemented in binds.conf. | |||
2019-05-22 | Install default configs to XDG config if not found | Drew DeVault | |
2019-05-22 | Show account wizard if no accounts configured | Drew DeVault | |
2019-05-21 | New account wizard, part one | Drew DeVault | |
2019-05-21 | Use kebab-case for cred-cmds | Drew DeVault | |
2019-05-20 | Implement :next-part, :prev-part | Drew DeVault | |
2019-05-19 | Rename :delete-message et al to :delete et al | Drew DeVault | |
2019-05-18 | Implement loading passwords from external commands | Galen Abell | |
* Resolves #80 | |||
2019-05-17 | Install filters to /usr/share/aerc/filters | Drew DeVault | |
2019-05-17 | Remove unimplemented color configuration | Drew DeVault | |
Will probably end up doing this differently anyway | |||
2019-05-17 | Implement ui.empty-message config option | Drew DeVault | |
Also removes some options that aren't going to be supported any time soon. | |||
2019-05-16 | Abort if accounts.conf is world readable | Reto Brunner | |
Fixes #32 | |||
2019-05-16 | Revert "Abort if accounts.conf is world readable" | Drew DeVault | |
This reverts commit a755608ef9d5893b68dc4c774bbda06503481552. | |||
2019-05-16 | Revert "s/aerc.conf/address.conf/ in permission check" | Drew DeVault | |
This reverts commit 66ba099ca0bfa83cd050050d92663ec45da20141. | |||
2019-05-16 | s/aerc.conf/address.conf/ in permission check | Cole Helbling | |
Small typo in a recent commit: should abort if accounts.conf is world readable, not aerc.conf. |