From bc20acd6c385612fd19bc3ce40f56c32983748f1 Mon Sep 17 00:00:00 2001 From: Ken Hornstein Date: Mon, 12 Dec 2011 12:59:42 -0500 Subject: [PATCH] Make sure to not reset hghnum (in the Maildir code) if we are incorporating mail from a POP mailbox. --- uip/inc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uip/inc.c b/uip/inc.c index 1bc0766..3dd1872 100644 --- a/uip/inc.c +++ b/uip/inc.c @@ -875,7 +875,7 @@ go_to_it: */ break; } - } else { /* Maildir inbox to process */ + } else if (inc_type == INC_FILE) { /* Maildir inbox to process */ char *sp; FILE *sf; int i; -- 1.7.10.4