+1998-04-23 Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
+
+ * eword-decode.el (eword-decode-ignored-field-list): Add
+ `received'.
+
+ * mel.el (mime-temp-directory): Use TMPDIR, TMP, or TEMP
+ environment variables.
+
1998-04-23 Tanaka Akira <akr@jaist.ac.jp>
* eword-decode.el (eword-encoded-word-prefix-regexp): New constant.
;;;
(defcustom eword-decode-ignored-field-list
- '(newsgroups path lines nntp-posting-host message-id date)
+ '(newsgroups path lines nntp-posting-host received message-id date)
"*List of field-names to be ignored when decoding.
Each field name must be symbol."
:group 'eword-decode
(defvar mime-temp-directory (or (getenv "MIME_TMP_DIR")
(getenv "TM_TMP_DIR")
+ (getenv "TMPDIR")
+ (getenv "TMP")
+ (getenv "TEMP")
"/tmp/")
"*Directory for temporary files.")