Browse Source

MaxMessages: make condition exactly symmetrical to condition below

Oswald Buddenhagen 12 years ago
parent
commit
61ef099cd5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sync.c

+ 1 - 1
src/sync.c

@@ -1300,7 +1300,7 @@ box_loaded( int sts, void *aux )
 		for (tmsg = svars->ctx[S]->msgs; tmsg && todel > 0; tmsg = tmsg->next) {
 			if (tmsg->status & M_DEAD)
 				continue;
-			if ((srec = tmsg->srec) &&
+			if ((srec = tmsg->srec) && srec->uid[M] > 0 &&
 			    ((tmsg->flags | srec->aflags[S]) & ~srec->dflags[S] & F_DELETED) &&
 			    !(srec->status & (S_EXPIRE|S_EXPIRED)))
 				todel--;