Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: markseen_msgs: Limit not yet downloaded messages state to InNoticed (#2970) #5999

Merged
merged 3 commits into from
Nov 20, 2024

Conversation

iequidoo
Copy link
Collaborator

@iequidoo iequidoo commented Sep 28, 2024

Closes #2970

@iequidoo iequidoo marked this pull request as ready for review September 28, 2024 22:40
@iequidoo iequidoo changed the title test: Mark not downloaded message as seen (#2970) fix: Downgrade message state to InNoticed when it's fully downloaded (#2970) Sep 29, 2024
@iequidoo
Copy link
Collaborator Author

iequidoo commented Sep 29, 2024

So the question is if it's doable in the apps to mark a fully downloaded message as seen again (when the user sees it) so that it's InSeen and an MDN is issued.

@Simon-Laux Simon-Laux requested review from gerryfrancis, Hocuri and link2xt and removed request for Simon-Laux October 1, 2024 04:44
src/receive_imf.rs Outdated Show resolved Hide resolved
src/receive_imf.rs Outdated Show resolved Hide resolved
@iequidoo iequidoo force-pushed the iequidoo/markseen_not_downloaded_msg branch 2 times, most recently from 5a15031 to be59fd4 Compare October 14, 2024 23:20
@Hocuri Hocuri mentioned this pull request Oct 15, 2024
Copy link
Collaborator

@Hocuri Hocuri left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, the new logic is:

  • When fully downloading a big message, set state to InNoticed (if it's \Seen on IMAP) or InFresh. The SQL code then calculates max(?,13), i.e. if it was InFresh, it's also changed to InNoticed.
  • The state of the existing message is then changed to InNoticed if it was InSeen.

I think the logic could be simplified a bit, see #6047 (maybe it's possible to do it in an even simpler way, idk).

But, I'm concerned that we will send duplicate MDNs by doing this: Right now, even if the message is marked as \Seen on IMAP, it's changed to InNoticed and a read receipt is sent. So, every device downloading the message is going to send a read receipt.

Also, what I don't understand in the existing code: Why isn't a read receipt sent when the user sees the partially downloaded message? markseen_msgs() looks like it unconditionally sends an MDN.

src/receive_imf.rs Outdated Show resolved Hide resolved
@iequidoo
Copy link
Collaborator Author

iequidoo commented Oct 16, 2024

But, I'm concerned that we will send duplicate MDNs by doing this: Right now, even if the message is marked as \Seen on IMAP, it's changed to InNoticed and a read receipt is sent. So, every device downloading the message is going to send a read receipt.

Yes, but currently there are no MDNs for big encrypted messages at all. Probably the correct solution is to set the IMAP \Seen flag only for messages for which an MDN is sent (if it should be), what exactly happens for small messages. But this means that a partially downloaded messages may be InSeen, but w/o the \Seen IMAP flag. Maybe then ignore markseen_msgs() call for partially downloaded messages at all?

Also, what I don't understand in the existing code: Why isn't a read receipt sent when the user sees the partially downloaded message? markseen_msgs() looks like it unconditionally sends an MDN.

Because if it's an encrypted message, it "doesn't want" MDN until it's fully downloaded :)

EDIT: So, if a big message isn't encrypted, with this change there will be two MDNs even in a single-device setup. Looks not good.

@iequidoo iequidoo force-pushed the iequidoo/markseen_not_downloaded_msg branch from be59fd4 to f2abfd5 Compare October 16, 2024 01:21
@link2xt
Copy link
Collaborator

link2xt commented Oct 16, 2024

Maybe then ignore markseen_msgs() call for partially downloaded messages at all?

At least \Seen flag should not be set when message is not fully downloaded. Otherwise if you have two devices, and the second device has fully downloaded the message, first device may "read" not fully downloaded message and set \Seen flag without sending MDN. Then second device will not send MDN even if user actually reads the message.

@iequidoo iequidoo marked this pull request as draft October 16, 2024 18:30
@iequidoo iequidoo force-pushed the iequidoo/markseen_not_downloaded_msg branch from f2abfd5 to 1a7f108 Compare October 17, 2024 01:17
@iequidoo iequidoo changed the title fix: Downgrade message state to InNoticed when it's fully downloaded (#2970) fix: markseen_msgs: Limit not yet downloaded messages state to InNoticed (#2970) Oct 17, 2024
@iequidoo
Copy link
Collaborator Author

Fixed it in another way, now should work correctly even for multi-device

@iequidoo iequidoo requested a review from Hocuri October 17, 2024 01:20
@iequidoo iequidoo marked this pull request as ready for review October 17, 2024 01:21
src/message.rs Outdated Show resolved Hide resolved
src/message.rs Outdated Show resolved Hide resolved
@iequidoo iequidoo marked this pull request as draft October 17, 2024 15:05
@iequidoo iequidoo force-pushed the iequidoo/markseen_not_downloaded_msg branch from 1a7f108 to b142273 Compare October 17, 2024 19:16
@iequidoo
Copy link
Collaborator Author

iequidoo commented Oct 17, 2024

Fixed one more bug, see fix: Update state of message when fully downloading it.

Overall the logic seems complicated, so probably more tests are needed. This has already failed several review iterations, so let it be draft for now.

EDIT: At least there must be a test that the message state isn't downgraded to InFresh after fully downloading it.
EDIT: This is already covered by test_markseen_not_downloaded_msg() after i pushed the last commit. Added a comment on this.

@iequidoo iequidoo force-pushed the iequidoo/markseen_not_downloaded_msg branch from b142273 to 7184237 Compare October 17, 2024 19:43
@iequidoo
Copy link
Collaborator Author

Fixed one more bug, see fix: Update state of message when fully downloading it.

In fact this bug was a little hidden, fix: markseen_msgs: Limit not yet downloaded messages state to InNoticed exposes it completely. Before, a partially downloaded message was often already InSeen, so its state didn't need to be updated from IMAP. Still, the bug was already there, just not being catched by any tests.

@Hocuri
Copy link
Collaborator

Hocuri commented Oct 22, 2024

@iequidoo just re-request a review from & mark the PR as ready for review (= not a draft) once it's ready

@iequidoo iequidoo force-pushed the iequidoo/markseen_not_downloaded_msg branch from 7184237 to c4dd912 Compare October 30, 2024 14:50
@iequidoo iequidoo marked this pull request as ready for review October 30, 2024 15:10
@iequidoo iequidoo requested a review from Hocuri October 30, 2024 15:10
@iequidoo iequidoo requested review from Hocuri and removed request for Hocuri November 15, 2024 19:14
@iequidoo
Copy link
Collaborator Author

I suggest to merge this as this fixes the bug and to avoid any merge conflicts when doing #6210. @Hocuri

Copy link
Collaborator

@Hocuri Hocuri left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One bug less 🎉!

Add a test on what happens currently when apps call `markseen_msgs()` for not downloaded encrypted
messages. Such messages are marked as seen, but MDNs aren't sent for them. Also currently when such
a message is downloaded, it remains `InSeen` despite the full content hasn't yet been seen by the
user.
…ced (#2970)

This fixes sending MDNs for big messages when they are downloaded and really seen. Otherwise MDNs
are not sent for big encrypted messages because they "don't want MDN" until downloaded.
If a message partially downloaded before is already IMAP-seen upon a full download, it should be
updated to `InSeen`. OTOH if it's not IMAP-seen, but already `InNoticed` locally, its state should
be preserved. So we take the maximum of two states.
@iequidoo iequidoo force-pushed the iequidoo/markseen_not_downloaded_msg branch from c4dd912 to 0aa5886 Compare November 20, 2024 17:08
@iequidoo iequidoo merged commit 5399cbf into main Nov 20, 2024
36 checks passed
@iequidoo iequidoo deleted the iequidoo/markseen_not_downloaded_msg branch November 20, 2024 17:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants