From 22320a20a750224b9f2d6788c4e3cdfef2e96e97 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 27 Jan 2009 22:38:58 +0000 Subject: [PATCH] (unrmail): Record labels in X-RMAIL-* fields, which are recognized by the new Rmail, instead of X-BABYL-V6-*. --- lisp/mail/unrmail.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el index 619e7e2b1c3..a6ec4bffc4d 100644 --- a/lisp/mail/unrmail.el +++ b/lisp/mail/unrmail.el @@ -203,9 +203,9 @@ For example, invoke `emacs -batch -f batch-unrmail RMAIL'." ;; Insert the `From ' line. (insert mail-from "\n") ;; Record the keywords and attributes in our special way. - (insert "X-BABYL-V6-ATTRIBUTES: " (apply 'string attrs) "\n") + (insert "X-RMAIL-ATTRIBUTES: " (apply 'string attrs) "\n") (when keywords - (insert "X-BABYL-V6-KEYWORDS: " keywords "\n")) + (insert "X-RMAIL-KEYWORDS: " keywords "\n")) (goto-char (point-min)) ;; ``Quote'' "\nFrom " as "\n>From " ;; (note that this isn't really quoting, as there is no requirement -- 2.11.4.GIT