From: Takahashi Tamotsu Date: Fri, 15 May 2009 12:54:04 +0000 (+0200) Subject: POP: Ignore already-deleted messages while syncing. Closes #2225. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=46bafc3f7347170fd5727ed487aecb79862da40e;p=neomutt POP: Ignore already-deleted messages while syncing. Closes #2225. --- diff --git a/ChangeLog b/ChangeLog index a9fca3c1e..5141d1448 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2009-05-13 18:03 +0200 Rocco Rutte (0563c88ad6f0) + + * attach.c, recvattach.c: Don't loose error message when attachment + saving fails. Closes #3156. + +2009-05-15 12:46 +0200 Seth Arnold (1cea1ecf9f79) + + * UPDATING, color.c, doc/manual.xml.head: Make "uncolor" also work + header and body objects. Closes #1046. + +2009-05-13 14:20 +0200 Rocco Rutte (f96a176bb14c) + + * ChangeLog, send.c: Don't set 'replied' flag if user changes + References/IRT. Closes #2044. + 2009-05-13 14:19 +0200 Rocco Rutte (c46e734a9f9f) * mutt.h, muttlib.c: Add mutt_find_list() to lookup data in lists diff --git a/pop.c b/pop.c index 1768e614a..35b199bc3 100644 --- a/pop.c +++ b/pop.c @@ -657,7 +657,7 @@ int pop_sync_mailbox (CONTEXT *ctx, int *index_hint) for (i = 0, j = 0, ret = 0; ret == 0 && i < ctx->msgcount; i++) { - if (ctx->hdrs[i]->deleted) + if (ctx->hdrs[i]->deleted && ctx->hdrs[i]->refno != -1) { j++; if (!ctx->quiet)