Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-02 | Correct default filter order in aerc.conf.in | Drew DeVault | |
2019-07-02 | Revert "Remove dirs field and references to it" | Drew DeVault | |
This reverts commit 0e55637aac92e748267559b7aa91a188a17c386f. | |||
2019-06-30 | Remove dirs field and references to it | Robert Günzler | |
This fixes prev/next-folder that broke after 546dfcd76dd228e0605359e9985f0b6a5672e8fa | |||
2019-06-29 | panic: runtime error: index out of range in handleFetchMessages (#127) | Zach Sisco | |
2019-06-29 | Add new lib/dirstore to source completions from | Gregory Mullen | |
2019-06-29 | Implement basic tab completion support | Gregory Mullen | |
Tab completion currently only works on commands. Contextual completion will be added in the future. | |||
2019-06-27 | Move contrib -> filters | Drew DeVault | |
2019-06-27 | Reopening mailcontent file to fix #166 | Stefan Rakel | |
Because editors like vim use backupfiles and rename them to the original name, the file handle used can point to the wrong file. Reopening the file should fix this. | |||
2019-06-27 | Set the required go version for this module, aerc | Daniel Lublin | |
This is the way to declare which compiler version a module requires to build. I read up on https://golang.org/doc/go1.12#modules | |||
2019-06-26 | Fix jumping around in search | Drew DeVault | |
2019-06-26 | Implement :search, :next-result, :prev-result | Drew DeVault | |
2019-06-25 | msgview/save: Use defaultSavePath if no path is provided | Reto Brunner | |
2019-06-25 | add DefaultSavePath config | Reto Brunner | |
2019-06-25 | account-wizard: look up imap and smtp server by SRV records (#100) | Daniel Lublin | |
2019-06-24 | worker/imap: rig up search directory handler | Drew DeVault | |
2019-06-24 | worker/imap: implement search | Drew DeVault | |
2019-06-23 | aerc-config: [viewer] should be [compose] | Issam Maghni | |
2019-06-21 | Fix Cc & Bcc handling in replies | Drew DeVault | |
2019-06-19 | Fix reply bindings in [view] | Drew DeVault | |
2019-06-19 | Makefile: fix -ldflags -X invocation | Reto Brunner | |
Aerc uses the go linker to add some variables like main.Prefix / main.ShareDir etc. however the go linker only considers the last -ldflags invocation it seems. This commit fixes the makefile to use only a single -ldflags invocation, which again sets the vars as expected. | |||
2019-06-18 | account-wizard: automatically replace imap.* with smtp.* | Noah Loomans | |
Many email providers use the imap sub-domain for imap and the smtp sub-domain for smtp. FastMail is an example of this[1]. This is a small quality-of-life improvement which automatically replaces imap.* with smtp.* when going from the imap screen to the smtp screen in the wizard [1]: https://www.fastmail.com/help/technical/servernamesandports.html | |||
2019-06-18 | Insert nil check before handling prev/next message | Martin Hafskjold Thoresen | |
If these are called before the store is setup, `acct.Store()` returns `nil`, and we SEGFAULT in `MessageStore.nextPrev`. | |||
2019-06-18 | Add aerc -v to print the installed version | Drew DeVault | |
2019-06-17 | commands/msgview: add open command | Réouven Assouly | |
2019-06-16 | Make part encoding checks case insensitive | Réouven Assouly | |
commands/msgview/save and commands/msgview/pipe now use case insensitive comparisons to determine if the part is encoded as base64 or quoted-printable. | |||
2019-06-16 | Ensure that flags are set properly | Aditya Mahajan | |
The current implementation has three classes of flags: - readFlag - delFlag - flaggedFlag The logic to check for them should be in parallel if branches rather than in sequential if-else ladder. | |||
2019-06-15 | Update tcell | Drew DeVault | |
2019-06-14 | Document collecting log output | Lyle Hanson | |
Redirecting stdout writes log output to that file, but this wasn't easily discoverable. v2 removes changes to aerc-tutorial; I was also on the fence about that, and agree that it isn't on-topic for the tutorial. Addresses https://todo.sr.ht/~sircmpwn/aerc2/180 | |||
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 | |