1998-09-28 Tatsuya Ichikawa <t-ichi@po.shiojiri.ne.jp>
authoryamaoka <yamaoka>
Mon, 28 Sep 1998 12:35:11 +0000 (12:35 +0000)
committeryamaoka <yamaoka>
Mon, 28 Sep 1998 12:35:11 +0000 (12:35 +0000)
* lisp/nnmh.el (nnmh-request-accept-article): Insert `Message-ID'
only if `group' name is neither "queue" nor "draft".

ChangeLog
lisp/nnmh.el

index 8944e4d..1c7cd7f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1998-09-28  Tatsuya Ichikawa  <t-ichi@po.shiojiri.ne.jp>
+
+       * lisp/nnmh.el (nnmh-request-accept-article): Insert `Message-ID'
+       only if `group' name is neither "queue" nor "draft".
+
 1998-09-26  Katsumi Yamaoka   <yamaoka@jpl.org>
 
        * texi/gnus-ja.texi: Sync up with Semi-gnus 6.8.19.
index 6dcdb5d..2c4dd68 100644 (file)
 
 (deffoo nnmh-request-accept-article (group &optional server last noinsert)
   (nnmh-possibly-change-directory group server)
-  (nnmail-check-syntax)
+  (if (or (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)