Skip to content

Commit

Permalink
new_uids
Browse files Browse the repository at this point in the history
  • Loading branch information
squeaky-pl committed Nov 8, 2024
1 parent 229e428 commit c12ff2e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions inbox/mailsync/backends/imap/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -877,11 +877,15 @@ def condstore_refresh_flags(self, crispin_client: CrispinClient) -> None:
self.account_id, db_session, self.folder_id
)

new_uids = remote_uids.difference(local_uids)
expunged_uids = local_uids.difference(remote_uids)
del local_uids # free memory as soon as possible
max_remote_uid = max(remote_uids) if remote_uids else 0
del remote_uids # free memory as soon as possible

if new_uids:
self.download_and_commit_uids(crispin_client, new_uids)

if expunged_uids:
# If new UIDs have appeared since we last checked in
# get_new_uids, save them first. We want to always have the
Expand Down Expand Up @@ -929,10 +933,14 @@ def refresh_flags_impl(self, crispin_client: CrispinClient, max_uids: int) -> No
self.account_id, db_session, self.folder_id
)

new_uids = remote_uids.difference(local_uids)
expunged_uids = local_uids.difference(remote_uids)
del local_uids # free memory as soon as possible
del remote_uids # free memory as soon as possible

if new_uids:
self.download_and_commit_uids(crispin_client, new_uids)

if expunged_uids:
with self.syncmanager_lock:
common.remove_deleted_uids(
Expand Down

0 comments on commit c12ff2e

Please sign in to comment.