From: kaoru Date: Sun, 18 Apr 2004 04:14:02 +0000 (+0000) Subject: * mime-edit.el (mime-file-types): Add application/pdf. Use base64 X-Git-Tag: semi-1_14-wl-root~41 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=cfd4673f6df4e165aeb7337627d97c07a1445f0b;p=elisp%2Fsemi.git * mime-edit.el (mime-file-types): Add application/pdf. Use base64 for application/postscript. (mime-content-types): Add application/pdf. --- 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)) )