this post was submitted on 08 Jul 2024
163 points (96.6% liked)

Linux

46794 readers
1050 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I just can’t find a decent email client that looks like it’s from the last 20 years. Geary and Evolution both appear to be pretty modern but something about using Gmail with a Yubikey just doesn’t work and neither of them will connect to my account. Both on Fedora and OpenSUSE. Thunderbird works but it’s so old fashioned and Betterbird doesn’t look much better. What’s everyone else using?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 1 month ago (2 children)

Mailspring, best client I've used in a while.

[–] [email protected] 2 points 1 month ago

Agreed on Mailspring, especially if OP wants a modern interface (although I think the new Thunderbird looks fine).

The only thing missing from Mailspring for me is seeing what folders my emails are in when I run a search. Otherwise, it's the only non-CLI client I've found that let's me use the keyboard to select multiple emails and move them to a folder, something I do in Gmail. If anyone knows of others, let me know! I've tried Claws, Evolution, Geary, KMail, and Thunderbird in addition to Mutt and aerc in hopes of finding something to replace Gmail...

[–] [email protected] 2 points 1 month ago* (last edited 1 month ago) (1 children)

Last time I tried it, it had major issues with folders (for example, folders didn't refresh often enough, and notifications weren't shown for emails that are sorted into folders). I tried to fix it myself, but gave up after I couldn't figure out why it wasn't syncing folders properly: https://github.com/Foundry376/Mailspring/pull/2308

[–] [email protected] 1 points 1 month ago (1 children)

Notifications on folders a have been added (I sort all my mail into a plethora of folders, keeping my inbox empty, so for me this is non-negotiable), and they all sync with a single f5 now.

Might be worth checking out again?

[–] [email protected] 2 points 1 month ago (1 children)

Interesting... Which email provider do you use?

Can you choose which folders use real-time push vs which folders use polling?

[–] [email protected] 2 points 1 month ago* (last edited 1 month ago) (1 children)

Fastmail.

Can you choose which folders use real-time push vs which folders use polling?

I'm afraid not. I'm pretty sure the entire account uses polling. I'll usually open the app and hit F5 to quickly poll for results, otherwise I'm waiting for the next sync.

Having said that, the unread counter works fine for sub-folders:

Edit: I was wrong, Mailspring uses the IMAP IDLE extension to wait for new mail delivery. Still doesn't stop me from spamming F5 when I'm waiting for new mail to arrive.

[–] [email protected] 2 points 1 month ago (1 children)

I was wrong, Mailspring uses the IMAP IDLE extension to wait for new mail delivery

The reason I was asking about the folders is that IMAP IDLE only works for one folder at a time. If you want real-time push for 10 folders (for example), it has to open 10 separate IMAP connections. Because of this, clients usually either only enable push for the inbox, or let you choose which folders to enable it for.

[–] [email protected] 1 points 1 month ago* (last edited 1 month ago)

Aah, now I understand.

There is no such setting that I'm immediately aware of - but I am automatically getting messages for my folders. So I'm assuming it's doing something in the background: most likely a periodic sync for the entire account.

Definitely doesn't sound like the behavior you wanted, my bad. But, at least there are notifications on the folders once mail is received. 😅

Edit: In the repo for their sync engine it explains:

Mailspring uses a fairly basic syncing algorithm, which runs on two threads with two open connections to the mail server. Within each thread, work is performed synchronously.

Background Worker: Periodically iterates over folders and (depending on the supported IMAP features) uses CONDSTORE / XYZRESYNC to check for mail or performs either a "local" or "deep" sync of part of the folder's UID space.

Foreground Worker: Idles on the primary folder and wakes to syncs changes. Also wakes to perform other tasks, like fetching message bodies the user clicks.

So the foreground worker only idles on the primary folder, but it does slowly iterate over all folders in the background.

No settings have been added for this functionality (that I'm aware of).

Edit 2: Went back and read your original comment; hadn't noticed the PR was yours. If that's the case then you're probably aware of how the sync works anyway. My bad if I've posted stuff you're already aware of.