aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/imap.c b/imap.c
index 39aa3695..564f6354 100644
--- a/imap.c
+++ b/imap.c
@@ -904,10 +904,12 @@ static int imap_getrange(int sock,
{
/*
* We have to have an expunge here, otherwise the re-poll will
- * infinite-loop picking up un-expunged messages.
+ * infinite-loop picking up un-expunged messages -- unless the
+ * expunge period is one and we've been nuking each message
+ * just after deletion.
*/
ok = 0;
- if (deletions && expunge_period > 1)
+ if (deletions && expunge_period != 1)
internal_expunge(sock);
count = -1;
if (ok || gen_transact(sock, "NOOP"))