From 41e405bedef99d1a06808d5bbade8d8f27b7c62c Mon Sep 17 00:00:00 2001 From: yamaoka Date: Mon, 11 Jan 1999 12:19:12 +0000 Subject: [PATCH] * (nnmh-request-accept-article): Insert `Message-ID' only if `group' name is neither "queue" nor "draft". --- lisp/nnmh.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/nnmh.el b/lisp/nnmh.el index 3a4c27a..462c60a 100644 --- a/lisp/nnmh.el +++ b/lisp/nnmh.el @@ -293,7 +293,9 @@ (deffoo nnmh-request-accept-article (group &optional server last noinsert) (nnmh-possibly-change-directory group server) - (nnmail-check-syntax) + (if (and (not (equal group "queue")) + (not (equal group "draft"))) + (nnmail-check-syntax)) (when nnmail-cache-accepted-message-ids (nnmail-cache-insert (nnmail-fetch-field "message-id"))) (nnheader-init-server-buffer) -- 1.7.10.4