melib/imap: check for max uid == 0 when resyncing

pull/234/head
Manos Pitsidianakis 4 years ago
parent 64a2af3777
commit e8f3b6aa24
No known key found for this signature in database
GPG Key ID: 73627C2F690DF710

@ -539,7 +539,7 @@ mod sqlite3_m {
}
}
tx.commit()?;
let new_max_uid = self.max_uid(mailbox_hash)?;
let new_max_uid = self.max_uid(mailbox_hash).unwrap_or(0);
self.uid_store
.max_uids
.lock()

@ -261,8 +261,12 @@ impl ImapConnection {
.unwrap()
.insert_existing_set(payload.iter().map(|(_, env)| env.hash()).collect::<_>());
// 3. tag2 UID FETCH 1:<lastseenuid> FLAGS
self.send_command(format!("UID FETCH 1:{} FLAGS", max_uid).as_bytes())
.await?;
if max_uid == 0 {
self.send_command("UID FETCH 1:* FLAGS".as_bytes()).await?;
} else {
self.send_command(format!("UID FETCH 1:{} FLAGS", max_uid).as_bytes())
.await?;
}
self.read_response(&mut response, RequiredResponses::FETCH_REQUIRED)
.await?;
//1) update cached flags for old messages;
@ -539,14 +543,25 @@ impl ImapConnection {
.unwrap()
.insert_existing_set(payload.iter().map(|(_, env)| env.hash()).collect::<_>());
// 3. tag2 UID FETCH 1:<lastseenuid> FLAGS
self.send_command(
format!(
"UID FETCH 1:{} FLAGS (CHANGEDSINCE {})",
cached_max_uid, cached_highestmodseq
if cached_max_uid == 0 {
self.send_command(
format!(
"UID FETCH 1:* FLAGS (CHANGEDSINCE {})",
cached_highestmodseq
)
.as_bytes(),
)
.as_bytes(),
)
.await?;
.await?;
} else {
self.send_command(
format!(
"UID FETCH 1:{} FLAGS (CHANGEDSINCE {})",
cached_max_uid, cached_highestmodseq
)
.as_bytes(),
)
.await?;
}
self.read_response(&mut response, RequiredResponses::FETCH_REQUIRED)
.await?;
//1) update cached flags for old messages;

Loading…
Cancel
Save