From Kenneth Flak to ~rjarry/aerc-discuss
Stefan van den Akker, Jul 30, 2022 at 20:41: > I noticed the same thing on 0.11.0. Looks like an error is added in > 26b9c3d: > > diff --git a/commands/account/sort.go b/commands/account/sort.go > index e9ee4a3..f8cb94c 100644 > --- a/commands/account/sort.go > +++ b/commands/account/sort.go > @@ -72,6 +72,12 @@ func (Sort) Execute(aerc *widgets.Aerc, args []string) error { > return errors.New("Messages still loading.") > } > > + if c := store.Capabilities(); c != nil { > + if !c.Sort {
From Kenneth Flak to ~rjarry/aerc-discuss
Hi list, I'm having trouble with the sorting of my emails. Some cosmic event (probably a corrupt database file) mangled the sorting of all my protonmail emails, after which I deleted the database at ~/.config/protonmail/bridge/cache/c11/* to rebuild everything. Now I am still getting mangled order, but somehow differently, with emails appearing in clusters of correct order, interspersed with clusters of emails from 2 years ago. Thunderbird manages to sort the emails correctly, so I suspect this has to do with aerc, but I'm not sure what. Issuing `:sort arrival` or any other sort command has zero effect. I'm using the imap backend.
From Kenneth Flak to ~rjarry/aerc-discuss
Robin Jarry, Jul 28, 2022 at 11:37: > Moritz Poldrack, Jul 27, 2022 at 21:15: > > On Wed Jul 27, 2022 at 6:09 PM CEST, Noah Pederson wrote: > > > Why not *just* an '@' in an open-source font-face? Or maybe 'æ'? > > > > I think this misses the purpose of an icon, being a distinguishable, > > unique representation of the program. The æ with some extras like an > > @-circle might be a better fit. > > +1 for 'æ' with an @-circle. I love the idea of an æ with a circle around it! Kenneth
From Kenneth Flak to ~sircmpwn/aerc
Robin Jarry, Jul 28, 2022 at 11:37: > Moritz Poldrack, Jul 27, 2022 at 21:15: > > On Wed Jul 27, 2022 at 6:09 PM CEST, Noah Pederson wrote: > > > Why not *just* an '@' in an open-source font-face? Or maybe 'æ'? > > > > I think this misses the purpose of an icon, being a distinguishable, > > unique representation of the program. The æ with some extras like an > > @-circle might be a better fit. > > +1 for 'æ' with an @-circle. I love the idea of an æ with a circle around it! Kenneth
From Kenneth Flak to ~rjarry/aerc-devel
Robin Jarry, Jul 28, 2022 at 11:37: > Moritz Poldrack, Jul 27, 2022 at 21:15: > > On Wed Jul 27, 2022 at 6:09 PM CEST, Noah Pederson wrote: > > > Why not *just* an '@' in an open-source font-face? Or maybe 'æ'? > > > > I think this misses the purpose of an icon, being a distinguishable, > > unique representation of the program. The æ with some extras like an > > @-circle might be a better fit. > > +1 for 'æ' with an @-circle. I love the idea of an æ with a circle around it! Kenneth
From Kenneth Flak to ~rjarry/aerc-discuss
> Yes, using the mark command. By default it's mapped to V (like linewise > visual mode in vim) and v (for toggling). Feel free to copy my config: > > v = :mark -t<Enter> > V = :mark -v<Enter> > <Space> = :mark -t<Enter>:next<Enter> > Great, thanks so much! K -- Roosna & Flak - Contemporary Dance & Music Web: roosnaflak.com
From Kenneth Flak to ~rjarry/aerc-discuss
Hi list, Question: is it possible to select multiple messages and perform bulk operations on them? I can't find anything about this in the docs (but I might obviously be looking in the wrong places, as usual ;-)) I'm using the imap backend. Best, Kenneth -- Roosna & Flak - Contemporary Dance & Music Web: roosnaflak.com
From Kenneth Flak to ~rjarry/aerc-discuss
Tim Culverhouse, Jun 26, 2022 at 20:16: > On Sun Jun 26, 2022 at 11:57 AM CDT, Kenneth Flak wrote: > > Hi list, > > > > I am getting quite a few "unsupported micalg: SHA256" these days, > > including from people on this very list. The only way to access the > > email in aerc is by hitting :rq, which still lets me see the email text > > as a quoted reply. I've seen quite a bit of activity lately on pgp in > > the devel-list lately, though, so maybe a fix is in the works? Or is > > there some other way to get SHA256 to work? > > Hi Ken - > > Are you using GPG or the built-in PGP provider? I suspect the built-in
From Kenneth Flak to ~rjarry/aerc-discuss
Hi list, I am getting quite a few "unsupported micalg: SHA256" these days, including from people on this very list. The only way to access the email in aerc is by hitting :rq, which still lets me see the email text as a quoted reply. I've seen quite a bit of activity lately on pgp in the devel-list lately, though, so maybe a fix is in the works? Or is there some other way to get SHA256 to work? Best, Kenneth -- Roosna & Flak - Contemporary Dance & Music Web: roosnaflak.com
From Kenneth Flak to ~rjarry/aerc-discuss
Moritz Poldrack, Jun 25, 2022 at 11:39: > On Sat Jun 25, 2022 at 10:38 AM CEST, Kenneth Flak wrote: > > In my handlers.json I got this: > > "mailto":{"action":2,"handlers":[{"name":"aerc.desktop","command":"kitty %u"}]} ... etc > > > > Which produces a kitty instance with this error: > > Failed to launch child: kennethflak@protonmail.com > > The reason is that you're running `kitty mailto:kennethflak@protonmail.com` > which obviously doesn't work because your email is not a binary in path. > change kitty %u to either `kitty aerc %u`, `kitty xdg-open %u`, or > restore the original desktop file. it should work then. >