From 8b62f12f7bdf83980c107f9cf92858196a9f609e Mon Sep 17 00:00:00 2001 From: Mauro Iazzi Date: Wed, 8 Apr 2009 22:07:43 +0200 Subject: [PATCH] fixed message ids --- mime.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mime.lua b/mime.lua index f2e5570..e8c7f31 100644 --- a/mime.lua +++ b/mime.lua @@ -291,8 +291,9 @@ local fields = function () ["in-reply-to"] = P"In-Reply-To:" * V"msg-id"^1 * V"CRLF", -- RFC 2822 Section 3.6.4 ["msg-id"] = V"CFWS"^-1 * P"<" * V"id-left" * P"@" * V"id-right" * P">" * V"CFWS"^-1, -- RFC 2822 Section 3.6.4 ["id-left"] = V"dot-atom-text" + V"no-fold-quote" * V"obs-id-left", -- RFC 2822 Section 3.6.4 - ["id-right"] = V"dot-atom-text" + V"no-fold-quote" * V"obs-id-right", -- RFC 2822 Section 3.6.4 - ["no-fold-quote"] = P"\"" + (V"qtext" + V"quoted-pair")^0 * P"\"", -- RFC 2822 Section 3.6.4 + ["id-right"] = V"dot-atom-text" + V"no-fold-literal" * V"obs-id-right", -- RFC 2822 Section 3.6.4 + ["no-fold-quote"] = P"\"" * (V"qtext" + V"quoted-pair")^0 * P"\"", -- RFC 2822 Section 3.6.4 + ["no-fold-literal"] = P"[" * (V"dtext" + V"quoted-pair")^0 * P"]", -- RFC 2822 Section 3.6.4 } end -- 2.11.4.GIT