/dev/null
i like pragmatic minimalism
From akspecs to ~rjarry/aerc-discuss
this would be one of many aerc's killer features if ever implemented. i brought this up this exact idea in irc sometime ago. something like `grep -v`, but a :search/filter -v for aerc.
From akspecs to ~rjarry/aerc-devel
On Wed Mar 8, 2023 at 12:22 PM PST, Kirill Chibisov wrote: > This should provide a way to configure link opener for users not having > xdg-open or similarly named script in the first place. > > Signed-off-by: Kirill Chibisov <contact@kchibisov.com> > --- > CHANGELOG.md | 1 + > config/aerc.conf | 3 ++- > doc/aerc-config.5.scd | 7 ++++--- > lib/open.go | 2 +- > 4 files changed, 8 insertions(+), 5 deletions(-) > > diff --git a/CHANGELOG.md b/CHANGELOG.md > index cc22944..08023ae 100644
From akspecs to ~rjarry/aerc-devel
On Mon Feb 20, 2023, Robin Jarry wrote: > Could you please respond to this message stating whether you accept or > refuse the change of license from MIT to GPL[2] for the aerc project. > This will only affect future versions of aerc. Existing releases will > remain with their original license (MIT). i accept the change of licensing from MIT to GPL[2] for the aerc project.
From akspecs to ~sircmpwn/sr.ht-discuss
On Sat Sep 24, 2022 at 2:19 PM PDT, Daniel F. Dickinson wrote: > ... I have also been investigating options. I see that there is > something similar to git-lfs called git-annex > (http://git-annex.branchable.com) i can wholeheartedly vouch for git-annex. it is an exceptional piece of well-documented software that gives power users all the tools they need to have on-demand access to their files that don't make sense to commit directly to git. > It looks promising in not needing support on the git > server, while allowing to use many types of storage (including rsync, > S3, and Drive, etc).
From akspecs to ~sircmpwn/sr.ht-discuss
maybe provide us with some details on what you have already tried doing to get git-send-email working, the exact error you're getting, etc, so that others will be better able to help you. i know in some cases mac users may have to run: sudo -H cpan Net::SMTP::SSL IO::Socket::SSL to install missing dependencies. also, your smtp config may have to have have tls enabled: git config --global sendemail.smtpEncryption "tls"
From akspecs to ~rjarry/aerc-discuss
On Thu Sep 15, 2022 at 5:03 AM PDT, Moritz Poldrack wrote: > On Thu Sep 15, 2022 at 2:00 PM CEST, Robin Jarry wrote: > > Bence Ferdinandy, Sep 15, 2022 at 13:38: > > > - undo message sending for X seconds? > > > > Why not, create a ticket so we can track that. > > So basically just deferring the sending by X seconds? In background or > not? and then, have a hotkey / combo to cancel the (delayed) send if pressed.
From akspecs to ~rjarry/aerc-devel
On Wed Aug 10, 2022 at 10:48 AM PDT, Tim Culverhouse wrote: > On Wed Aug 10, 2022 at 12:43 PM CDT, Robin Jarry wrote: > > Hmm, I'm not sure I see the use case for such a feature. Maybe a way to > > start with a default selected account would make more sense. > > > > What do you think? i do believe there can be room for both the behaviour you describe, as well as there being merit to Tim's described use case. if possible, i'd consider adding the ability to specify more than one account that you may want appearing in that particular invocation of aerc -- as well as which one to have selected by default. however, it does seem that this patch is useful as is.
From akspecs to ~rjarry/aerc-devel
On Tue Aug 9, 2022 at 7:07 PM PDT, Tim Culverhouse wrote: > Make it possible to specify a single account to load, even when multiple > accounts are configured in accounts.conf. > > aerc -a <account-name> i like the idea. tried it out, and it seems to work. in fact, this is how i invoked aerc to compose this message :) Tested-by: akspecs <akspecs@gmail.com> > > Signed-off-by: Tim Culverhouse <tim@timculverhouse.com> > --- > aerc.go | 10 +++++++---
From akspecs to ~rjarry/aerc-devel
On Wed Jul 27, 2022 at 4:18 AM PDT, Koni Marti wrote: > When entering visual selection mode, the current selection is deleted. > This patch extends the visual mode behavior to select multiple blocks of > messages. > > Signed-off-by: Koni Marti <koni.marti@gmail.com> testing on my end reveals that the visual selector fails to maintain the marked messages when scrolling in visual mode through a series of messages in the same thread with threading enabled.
From akspecs to ~rjarry/aerc-devel
On Tue Jul 26, 2022 at 4:48 AM PDT, Koni Marti wrote: > Use the capabilities returned by the backend to check whether sort is > implemented when the user tries to use the sort command. Print a warning > to the log when a sort request is silently dropped by the backend. > > Suggested-by: |cos| > Signed-off-by: Koni Marti <koni.marti@gmail.com> tested. it works. Acked-by: akspecs <akspecs@gmail.com>