From 39446bbef90f57934eb1c5e3f48c6427cc87fad0 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Sat, 28 Dec 2002 04:00:23 +0000 Subject: [PATCH] - workaround imap server bug: lock files are no mailboxes --- src/imap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/imap.c b/src/imap.c index ed2baaf..42cea45 100644 --- a/src/imap.c +++ b/src/imap.c @@ -505,6 +505,8 @@ imap_exec (imap_t * imap, const char *fmt, ...) if (memcmp (arg, global.folder, l)) goto next; arg += l; + if (!memcmp (arg + strlen (arg) - 5, ".lock", 5)) + goto next; for (box = boxes; box; box = box->next) if (!strcmp (box->box, arg)) goto next;