From 584179bd3daff862acde65a1e9b646ebf69dd3a2 Mon Sep 17 00:00:00 2001 From: yoichi Date: Sat, 3 Apr 2004 17:35:28 +0000 Subject: [PATCH] * mime-edit.el (mime-file-types): Add application/vnd.ms-excel. (mime-content-types): Add application/vnd.ms-excel and application/msword. --- ChangeLog | 6 ++++++ mime-edit.el | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/ChangeLog b/ChangeLog index 832fba1..bcd80d1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-04-04 Yoichi NAKAYAMA + + * mime-edit.el (mime-file-types): Add application/vnd.ms-excel. + (mime-content-types): Add application/vnd.ms-excel and + application/msword. + 2004-02-12 MORIOKA Tomohiko * mime-image.el (mime-display-image): Ignore errors about image diff --git a/mime-edit.el b/mime-edit.el index 4138333..bfcc6a8 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -236,6 +236,8 @@ To insert a signature file automatically, call the function ("application" ("octet-stream" ("type" "" "tar" "shar")) ("postscript") + ("msword") + ("vnd.ms-excel") ("vnd.ms-powerpoint") ("x-kiss" ("x-cnf"))) ("image" @@ -321,6 +323,11 @@ To insert a signature file automatically, call the function "base64" "attachment" (("filename" . file)) ) + ("\\.xls$" ; MS Excel + "application" "vnd.ms-excel" nil + "base64" + "attachment" (("filename" . file)) + ) ("\\.ppt$" ; MS Power Point "application" "vnd.ms-powerpoint" nil "base64" -- 1.7.10.4