* mime-edit.el (mime-file-types): Add application/pdf. Use base64
authorkaoru <kaoru>
Sun, 18 Apr 2004 04:14:02 +0000 (04:14 +0000)
committerkaoru <kaoru>
Sun, 18 Apr 2004 04:14:02 +0000 (04:14 +0000)
for application/postscript.
(mime-content-types): Add application/pdf.

ChangeLog
mime-edit.el

index bcd80d1..5276696 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-04-18  TAKAHASHI Kaoru  <kaoru@kaisei.org>
+
+       * 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  <yoichi@geiin.org>
 
        * mime-edit.el (mime-file-types): Add application/vnd.ms-excel.
index bfcc6a8..4b3c704 100644 (file)
@@ -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))
      )