From 956af710226d90d1ae21500165d22f967fbb2370 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 12 Jun 2014 23:51:28 +0300 Subject: [PATCH] mbox: X-Delivery-ID: and X-IMAP: headers weren't dropped from incoming mails. Because of a missing comma.. Found by Coverity. --- src/lib-storage/index/mbox/mbox-storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib-storage/index/mbox/mbox-storage.c b/src/lib-storage/index/mbox/mbox-storage.c index 48f7d20657..46b604952a 100644 --- a/src/lib-storage/index/mbox/mbox-storage.c +++ b/src/lib-storage/index/mbox/mbox-storage.c @@ -53,7 +53,7 @@ unsigned int mbox_hide_headers_count = N_ELEMENTS(mbox_hide_headers); const char *mbox_save_drop_headers[] = { "Content-Length", "Status", - "X-Delivery-ID" + "X-Delivery-ID", "X-IMAP", "X-IMAPbase", "X-Keywords", -- 2.47.3