メールヘッダが表示されない

Yuuichi Teranishi teranisi @ gohome.org
2000年 5月 12日 (金) 10:04:40 JST


;; Cc: emacs-mime-ja

At Fri, 12 May 2000 00:23:55 +0900,
MIZUHARA Bun wrote:
> 
> User-Agent: Wanderlust/1.1.0 (Overjoyed) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.4 (i386-*-nt4.0.1381) MULE/4.1 (AOI) Meadow/1.10 (TSUYU)
> 
> という環境で、ブランクの Draft バッファで C-c C-x TAB としてファイルを
> 添付して送信したところ、添付ファイルのようなメールが届きました。これを
> 
> User-Agent: Wanderlust/1.1.0 (Overjoyed) EMY/1.13.4 (Nothing comes of nothing) FLIM/1.13.2 (Kasanui) Emacs/20.5 (i386-debian-linux-gnu) MULE/4.1 (AOI)
> 
> という環境で表示すると、不思議なことにその後 Message バッファにメール
> ヘッダがいっさい表示されなくなってしまいます。メッセージや、フォルダを
> 移動しても変わりません。一度 wl を抜けて、再度起動してもだめです。
> 

再現しました。たぶん EMY の場合のみこうなると思います。
トップの mime-entity が

 Content-Type: application/octet-stream
 Content-Disposition: attachment

のメッセージを表示すると以後ヘッダが非表示になってしまうように思います。
mime-view.el を以下の通り変更するとなぜか回避できるみたいなのですが、
結局何が問題なのかよくわかりませんでした。

-------------- next part --------------
Index: mime-view.el
===================================================================
RCS file: /cvs/root/semi/mime-view.el,v
retrieving revision 1.149.2.20.4.19
diff -u -r1.149.2.20.4.19 mime-view.el
--- mime-view.el	2000/04/17 08:48:07	1.149.2.20.4.19
+++ mime-view.el	2000/05/12 00:52:14
@@ -1349,9 +1349,9 @@
       (setq major-mode 'mime-view-mode)
       (setq mode-name "MIME-View")
       (mime-display-entity message nil
-			   `((entity-button . invisible)
-			     (header . visible)
-			     (major-mode . ,original-major-mode))
+			   (list (cons 'entity-button 'invisible)
+				 (cons 'header 'visible)
+				 (cons 'major-mode original-major-mode))
 			   preview-buffer)
       (mime-view-define-keymap default-keymap-or-function)
       (set (make-local-variable 'line-move-ignore-invisible) t)
-------------- next part --------------
--
Yuuichi Teranishi (寺西裕一) <teranisi @ gohome.org>
PGP 5.0i Public Key: http://www.gohome.org/pgp5/teranisi.key
"Love is needing to be loved..."


More information about the Emacs-mime-ja mailing list