Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-14 | imap: block until directory list is fully received | Drew DeVault | |
This fixes issues with INBOX mysteriously not being present at times | |||
2019-06-14 | Set empty message in dirlist if no folder exist. | Reto Brunner | |
2019-06-14 | imap: respect the folder config option | Reto Brunner | |
2019-06-14 | Add uninstall target to Makefile | Lyle Hanson | |
Also removes leftover directories if there isn't anything else in them. https://todo.sr.ht/~sircmpwn/aerc2/179 | |||
2019-06-14 | Support directories in path to :save | Clayton Craft | |
This adds new functionality to :save in the message view for specifying directories in the path. A new flag, -p, is also added to :save for automatically creating any directories in the path that do not exist. If the path ends in a / (e.g. "Downloads/mail/") or if the path is an existing directory, the part's file name is the filename from the mail header for the part. Otherwise, it uses the last element in the path as the filename (e.g. 'blah.jpg' is the filename if the path is 'Downloads/mail/blah.jpg') | |||
2019-06-13 | Make awk filters more portable | Drew DeVault | |
2019-06-11 | Fix automatic scrolling when messages arrive/leave | Drew DeVault | |
2019-06-11 | Add :next/:prev binds for [viewer] | Drew DeVault | |
2019-06-11 | commands/msgview: Add next/prev commands | Kevin Kuehler | |
Signed-off-by: Kevin Kuehler <kkuehler@brave.com> | |||
2019-06-11 | lib/ui/tab: Add Replace method | Kevin Kuehler | |
Also expose a light wrapper method in aerc.go for tab replacement Signed-off-by: Kevin Kuehler <kkuehler@brave.com> | |||
2019-06-11 | Move select functionality from msglist to msgstore | Kevin Kuehler | |
Remove msglist Next and Prev commands Signed-off-by: Kevin Kuehler <kkuehler@brave.com> | |||
2019-06-11 | commands/msg/archive: Work with msgviwer | Kevin Kuehler | |
Inside the generic msg command we cannot use aerc.SelectedAccount() because the method naively assumes the current tab is an AccountView. Use the ProvidesMessage interface instead. Signed-off-by: Kevin Kuehler <kkuehler@brave.com> | |||
2019-06-09 | Implement :mkdir command | Drew DeVault | |
2019-06-09 | Fix :new-account getopts | Drew DeVault | |
2019-06-09 | Fix :copy arg handling | Drew DeVault | |
2019-06-09 | Fix :move command's arg parsing | Drew DeVault | |
2019-06-09 | Override $ex in compose view | Yash Srivastav | |
2019-06-09 | Update reply to use getopt posix optind format | Clayton Craft | |
This changes the handling of optind for the 'reply' command to match recent changes to getopt. | |||
2019-06-09 | aerc(1): add :read and :unread command to docs | Drew DeVault | |
2019-06-09 | Add :read and :unread commands | Drew DeVault | |
2019-06-09 | Update our message flags when server updates them | Drew DeVault | |
2019-06-09 | commands/msg/copy: remove unnecessary code | Drew DeVault | |
2019-06-09 | Select user's preferred mimetype in MessageViewer | Clayton Craft | |
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. | |||
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-08 | Mark sent emails as read | Yash Srivastav | |
2019-06-08 | msglist: use distinct style for unread emails | Yash Srivastav | |
2019-06-08 | Fetch headers w/peek to leave emails unread | Yash Srivastav | |
2019-06-07 | Fix hldiff regex for short stats | Drew DeVault | |
2019-06-07 | Use #!/usr/bin/env -S awk -f for awk scripts | Drew DeVault | |
2019-06-07 | Truncate long subject lines | Drew DeVault | |
2019-06-07 | Message list: implement index-format option | Yash Srivastav | |
2019-06-07 | plaintext filter: Match against start of line | Drew DeVault | |
2019-06-07 | Update filter names in Makefile | Drew DeVault | |
2019-06-07 | Update docs per filters rewrite | Drew DeVault | |
2019-06-07 | Rewrite Python filters in awk | Drew DeVault | |
2019-06-07 | Move ANSI stripping from filters to Go | 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 | Remove unnecessary branch | Drew DeVault | |
2019-06-07 | Ignore encoding errors in filters | Drew DeVault | |
Fixes #161 | |||
2019-06-07 | Execute the editor with the shell | Drew DeVault | |
Fixes #164 | |||
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-07 | Skip rendering dirlist if sidebar width is 0 | Lucas F. Souza | |
2019-06-05 | Use SetAddressList for From header | Drew DeVault | |
2019-06-05 | config: sort account folders | Chris Kinniburgh | |
directory list depends on these being sorted | |||
2019-06-05 | Introduce :new-account -t | JanUlrich | |
Adding the [-t] temporary flag to the new-account command - when using -t a newly created account will not be stored into the accounts.conf Issue #134 | |||
2019-06-05 | Mention aerc-tutorial(7) in aerc(1) | ngenisis | |
2019-06-05 | Allow no arguments to :cd | Tadeo Kondrak | |
I often use the bare `cd` command to get back to my home directory. | |||
2019-06-04 | Added config file to Make clean0.1.1 | Jonas Kalderstam | |
Config file will be incorrect if make is run with different values for PREFIX otherwise. |