aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pop3.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/pop3.c b/pop3.c
index 466bc347..cf950545 100644
--- a/pop3.c
+++ b/pop3.c
@@ -1115,8 +1115,11 @@ static int pop3_getrange(int sock,
old_rec = uid_db_insert(&ctl->oldsaved, id, UID_UNSEEN);
}
- /* save the number */
- if (new_rec->status == UID_UNSEEN || !ctl->keep) {
+ /*
+ * save the number if it will be needed later on
+ * (messsage will either be fetched or deleted)
+ */
+ if (new_rec->status == UID_UNSEEN || ctl->flush) {
set_uid_db_num(&ctl->oldsaved, old_rec, unum);
set_uid_db_num(&ctl->newsaved, new_rec, unum);
}