isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 83b834cdfdc68334a365894bd9250147e4ca4862
parent 9e186ae88ba72f249ac3f5916f2ba90be936da35
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sun, 10 Nov 2013 19:57:08 +0100

count unread messages like flagged messages when expiring

that is, don't count them towards the total only below the cut-off
point. making them extend the working set even though they are inside it
is counterintuitive.

Diffstat:
Msrc/sync.c | 17++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/src/sync.c b/src/sync.c @@ -1354,8 +1354,8 @@ box_loaded( int sts, void *aux ) if ((svars->chan->ops[S] & (OP_NEW|OP_RENEW|OP_FLAGS)) && svars->chan->max_messages) { /* Note: When this branch is entered, we have loaded all slave messages. */ - /* Expire excess messages. Flagged messages and not yet synced messages older - * than the first not expired message are not counted towards the total. */ + /* Expire excess messages. Important (flagged, unread, or unpropagated) messages + * older than the first not expired message are not counted towards the total. */ todel = svars->ctx[S]->count + svars->new_total[S] - svars->chan->max_messages; debug( "%d excess messages on slave\n", todel ); for (tmsg = svars->ctx[S]->msgs; tmsg && todel > 0; tmsg = tmsg->next) { @@ -1377,14 +1377,13 @@ box_loaded( int sts, void *aux ) nflags = (tmsg->flags | srec->aflags[S]) & ~srec->dflags[S]; if (!(nflags & F_DELETED) || (srec->status & (S_EXPIRE|S_EXPIRED))) { /* The message is not deleted, or is already (being) expired. */ - if (nflags & F_FLAGGED) { - /* Flagged messages are always kept. */ + if ((nflags & F_FLAGGED) || !(nflags & F_SEEN)) { + /* Important messages are always kept. */ todel--; - } else if ((nflags & F_SEEN) && - (todel > 0 || - ((srec->status & (S_EXPIRE|S_EXPIRED)) == (S_EXPIRE|S_EXPIRED)) || - ((srec->status & (S_EXPIRE|S_EXPIRED)) && (tmsg->flags & F_DELETED)))) { - /* The message is not new, and it is excess or was already (being) expired. */ + } else if (todel > 0 || + ((srec->status & (S_EXPIRE|S_EXPIRED)) == (S_EXPIRE|S_EXPIRED)) || + ((srec->status & (S_EXPIRE|S_EXPIRED)) && (tmsg->flags & F_DELETED))) { + /* The message is excess or was already (being) expired. */ srec->status |= S_NEXPIRE; debug( " pair(%d,%d)\n", srec->uid[M], srec->uid[S] ); todel--;