fix: move email actions to daemon - #1378
Merged
Merged
Conversation
floatpanebot
previously requested changes
May 30, 2026
floatpanebot
left a comment
Member
There was a problem hiding this comment.
Hi @mavonx! Please fix the following issues with your PR:
- Title: Is too long (40 characters). The PR title must be strictly under 40 characters.
floatpanebot
dismissed
their stale review
May 30, 2026 11:21
Formatting issues have been resolved. Thank you!
mavonx
marked this pull request as draft
May 30, 2026 11:51
mavonx
marked this pull request as ready for review
May 30, 2026 11:58
mavonx
marked this pull request as draft
May 30, 2026 12:04
mavonx
marked this pull request as ready for review
May 30, 2026 12:35
Member
Author
|
@andrinoff I pulled the updates and re-tested, but the delay is still there. |
Member
|
@mavonx your previous daemon is likely running, |
Member
Author
|
That's correct, I forgot to restart the daemon. Could you review the code before we merge? |
andrinoff
requested changes
May 31, 2026
Member
|
also i'd follow up with #1139, because, now 1 click means, that the message is deleted for sure. |
Member
Author
|
@andrinoff Could you review it again now? I'll take care of #1139 in a separate PR. |
andrinoff
approved these changes
May 31, 2026
andrinoff
added a commit
to andrinoff/matcha
that referenced
this pull request
Jun 15, 2026
## What? Adds a grace period for actions (move, delete) ## Why? Follow-up on floatpane#1378 --------- Signed-off-by: drew <me@andrinoff.com>
andrinoff
added a commit
that referenced
this pull request
Jun 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What?
Delegates email operations (delete, archive, move) to the daemon instead of blocking the UI with loading spinners.
Why?
Email operations can take time, especially for batch actions or slower IMAP connections. By delegating them to the daemon, the UI remains responsive, operations continue in the background, and users can safely close the TUI without interrupting the work.
Closes #1255