mail without References or Message-Id. (Bug#4525)
+2009-09-23 Glenn Morris <rgm@gnu.org>
+
+ * mail/rmail.el (rmail-reply): Don't try to add a References header when
+ replying to mail without References or Message-Id. (Bug#4525)
+
2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
* term/ns-win.el (ns-reg-to-script): New variable.
(aref rmail-msgref-vector msgnum))
rmail-answered-attr-index))
nil
- (list (cons "References" (if references
- (concat (mapconcat 'identity references " ")
- " " message-id)
- message-id))))))
+ (if (or references message-id)
+ (list (cons "References" (if references
+ (concat
+ (mapconcat 'identity references " ")
+ " " message-id)
+ message-id)))))))
\f
(defun rmail-mark-message (buffer msgnum-list attribute)
"Give BUFFER's message number in MSGNUM-LIST the attribute ATTRIBUTE.