From cfd4673f6df4e165aeb7337627d97c07a1445f0b Mon Sep 17 00:00:00 2001 From: kaoru Date: Sun, 18 Apr 2004 04:14:02 +0000 Subject: [PATCH] * mime-edit.el (mime-file-types): Add application/pdf. Use base64 for application/postscript. (mime-content-types): Add application/pdf. --- ChangeLog | 6 ++++++ mime-edit.el | 8 +++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bcd80d1..5276696 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-04-18 TAKAHASHI Kaoru + + * mime-edit.el (mime-file-types): Add application/pdf. Use base64 + for application/postscript. + (mime-content-types): Add application/pdf. + 2004-04-04 Yoichi NAKAYAMA * mime-edit.el (mime-file-types): Add application/vnd.ms-excel. diff --git a/mime-edit.el b/mime-edit.el index bfcc6a8..4b3c704 100644 --- a/mime-edit.el +++ b/mime-edit.el @@ -236,6 +236,7 @@ To insert a signature file automatically, call the function ("application" ("octet-stream" ("type" "" "tar" "shar")) ("postscript") + ("pdf") ("msword") ("vnd.ms-excel") ("vnd.ms-powerpoint") @@ -341,7 +342,12 @@ To insert a signature file automatically, call the function ) ("\\.ps$" "application" "postscript" nil - "quoted-printable" + "base64" + "attachment" (("filename" . file)) + ) + ("\\.pdf$" + "application" "pdf" nil + "base64" "attachment" (("filename" . file)) ) -- 1.7.10.4