Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions src/chat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1450,17 +1450,23 @@ impl ChatId {
// received message purely by timestamp. We could place it just before that seen
// message, but anyway the user may not notice it.
//
// NB: Received outgoing messages may break sorting of fresh incoming ones, but this
// shouldn't happen frequently. Seen incoming messages don't really break sorting of
// fresh ones, they rather mean that older incoming messages are actually seen as well.
// NB: Seen incoming messages don't really break sorting of fresh ones, they rather mean
// that older incoming messages are actually seen as well.
// NB: Locally sent messages have zero `timestamp_sent`.
context
.sql
.query_row_optional(
"SELECT MAX(timestamp), MAX(IIF(state=?,timestamp_sent,0))
FROM msgs
WHERE chat_id=? AND hidden=0 AND state>?
AND (state!=? OR timestamp_sent=0)
HAVING COUNT(*) > 0",
(MessageState::InSeen, self, MessageState::InFresh),
(
MessageState::InSeen,
self,
MessageState::InFresh,
MessageState::OutDelivered,
),
|row| {
let ts: i64 = row.get(0)?;
let ts_sent_seen: i64 = row.get(1)?;
Expand Down
2 changes: 1 addition & 1 deletion src/events/payload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub enum EventType {
/// Emitted when an IMAP message has been moved
ImapMessageMoved(String),

/// Emitted before going into IDLE on the Inbox folder.
/// Emitted before going into IDLE on any folder.
ImapInboxIdle,

/// Emitted when an new file in the $BLOBDIR was created
Expand Down
1 change: 1 addition & 0 deletions src/scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,7 @@ async fn fetch_idle(

connection.connectivity.set_idle(ctx);

// Maybe we'll remove watching other folders soon, so use this event for all folders for now.
ctx.emit_event(EventType::ImapInboxIdle);

if !session.can_idle() {
Expand Down
2 changes: 1 addition & 1 deletion src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1521,7 +1521,7 @@ async fn write_msg(context: &Context, prefix: &str, msg: &Message, buf: &mut Str

let statestr = match msg.get_state() {
MessageState::OutPending => " o",
MessageState::OutDelivered => " √",
MessageState::OutDelivered if msg.timestamp_sent == 0 => " √",
MessageState::OutMdnRcvd => " √√",
MessageState::OutFailed => " !!",
_ => "",
Expand Down
13 changes: 9 additions & 4 deletions src/tests/verified_chats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,9 +316,9 @@ async fn test_old_message_4() -> Result<()> {
Ok(())
}

/// Alice is offline for some time.
/// When they come online, first their sentbox is synced and then their inbox.
/// This test tests that the messages are still in the right order.
/// Alice's device#0 is offline for some time.
/// When it comes online, it sees a message from another device and an incoming message. Messages
/// may come from different folders.
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn test_old_message_5() -> Result<()> {
let alice = TestContext::new_alice().await;
Expand Down Expand Up @@ -348,7 +348,12 @@ async fn test_old_message_5() -> Result<()> {
.await?
.unwrap();

assert!(msg_sent.sort_timestamp == msg_incoming.sort_timestamp);
// If the messages come from the same folder and `msg_sent` is sent by Alice, it's better to
// sort `msg_incoming` after it so that it's more visible, but if Alice shares her account with
// someone else or has some auto-reply bot, messages should be sorted just by "Date". If the
// messages come from different folders, probably `msg_incoming` is already noticed by Alice on
// another device (and this is the most often case in practice).
assert!(msg_incoming.sort_timestamp < msg_sent.sort_timestamp);
alice
.golden_test_chat(msg_sent.chat_id, "test_old_message_5")
.await;
Expand Down
2 changes: 1 addition & 1 deletion test-data/golden/receive_imf_older_message_from_2nd_device
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Single#Chat#10: bob@example.net [bob@example.net] Icon: 4138c52e5bc1c576cda7dd44d088c07.png
--------------------------------------------------------------------------------
Msg#10: Me (Contact#Contact#Self): We share this account √
Msg#11: Me (Contact#Contact#Self): I'm Alice too
Msg#11: Me (Contact#Contact#Self): I'm Alice too
--------------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion test-data/golden/test_old_message_5
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Single#Chat#10: Bob [bob@example.net] Icon: 4138c52e5bc1c576cda7dd44d088c07.png
--------------------------------------------------------------------------------
Msg#10: Me (Contact#Contact#Self): Happy birthday, Bob! √
Msg#11: (Contact#Contact#10): Happy birthday to me, Alice! [FRESH]
Msg#10: Me (Contact#Contact#Self): Happy birthday, Bob!
--------------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion test-data/golden/test_outgoing_encrypted_msg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Single#Chat#10: bob@example.net [KEY bob@example.net] 🛡️
--------------------------------------------------------------------------------
Msg#10: info (Contact#Contact#Info): Messages are end-to-end encrypted. [NOTICED][INFO 🛡️]
Msg#11🔒: Me (Contact#Contact#Self): Test – This is encrypted, signed, and has an Autocrypt Header without prefer-encrypt=mutual.
Msg#11🔒: Me (Contact#Contact#Self): Test – This is encrypted, signed, and has an Autocrypt Header without prefer-encrypt=mutual.
--------------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion test-data/golden/test_outgoing_mua_msg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Single#Chat#11: bob@example.net [bob@example.net] Icon: 4138c52e5bc1c576cda7dd44d088c07.png
--------------------------------------------------------------------------------
Msg#12: Me (Contact#Contact#Self): One classical MUA message
Msg#12: Me (Contact#Contact#Self): One classical MUA message
--------------------------------------------------------------------------------
Loading