(mime-edit-normalize-body): Fix a comment that the problem related to
[elisp/semi.git] / semi-setup.el
1 ;;; semi-setup.el --- setup file for MIME-View.
2
3 ;; Copyright (C) 1994,95,96,97,98,99,2000 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
6 ;; Keywords: mail, news, MIME, multimedia, multilingual, encoded-word
7
8 ;; This file is part of SEMI (Setting for Emacs MIME Interfaces).
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 (require 'semi-def)
28 (require 'path-util)
29
30 (defun call-after-loaded (module func &optional hook-name)
31   "If MODULE is provided, then FUNC is called.
32 Otherwise func is set to MODULE-load-hook.
33 If optional argument HOOK-NAME is specified,
34 it is used as hook to set."
35   (if (featurep module)
36       (funcall func)
37     (or hook-name
38         (setq hook-name (intern (concat (symbol-name module) "-load-hook")))
39         )
40     (add-hook hook-name func)
41     ))
42
43
44 ;; for image/*
45 (defvar mime-setup-enable-inline-image
46   (and window-system
47        (or (featurep 'xemacs)(featurep 'mule)))
48   "*If it is non-nil, semi-setup sets up to use mime-image.")
49
50 (if mime-setup-enable-inline-image
51     (eval-after-load "mime-view"
52       '(require 'mime-image)))
53
54 ;; for text/html
55 (defvar mime-setup-enable-inline-html
56   (module-installed-p 'w3)
57   "*If it is non-nil, semi-setup sets up to use mime-w3.")
58
59 (if mime-setup-enable-inline-html
60     (eval-after-load "mime-view"
61       '(progn
62          (autoload 'mime-preview-text/html "mime-w3")
63          
64          (ctree-set-calist-strictly
65           'mime-preview-condition
66           '((type . text)(subtype . html)
67             (body . visible)
68             (body-presentation-method . mime-preview-text/html)))
69          
70          (set-alist 'mime-view-type-subtype-score-alist
71                     '(text . html) 3)
72          )))
73
74
75 ;; for PGP
76 (defvar mime-setup-enable-pgp t
77   "*If it is non-nil, semi-setup sets uf to use mime-pgp.")
78
79 (if mime-setup-enable-pgp
80     (eval-after-load "mime-view"
81       '(progn
82          (mime-add-condition
83           'preview '((type . application)(subtype . pgp)
84                      (message-button . visible)))
85          (mime-add-condition
86           'action '((type . application)(subtype . pgp)
87                     (method . mime-view-application/pgp))
88           'strict "mime-pgp")
89          (mime-add-condition
90           'action '((type . text)(subtype . x-pgp)
91                     (method . mime-view-application/pgp)))
92          
93          (mime-add-condition
94           'action '((type . multipart)(subtype . signed)
95                     (method . mime-verify-multipart/signed))
96           'strict "mime-pgp")
97          
98          (mime-add-condition
99           'action
100           '((type . application)(subtype . pgp-signature)
101             (method . mime-verify-application/pgp-signature))
102           'strict "mime-pgp")
103          
104          (mime-add-condition
105           'action
106           '((type . application)(subtype . pgp-encrypted)
107             (method . mime-decrypt-application/pgp-encrypted))
108           'strict "mime-pgp")
109          
110          (mime-add-condition
111           'action
112           '((type . application)(subtype . pgp-keys)
113             (method . mime-add-application/pgp-keys))
114           'strict "mime-pgp")
115
116          (mime-add-condition
117           'action
118           '((type . application)(subtype . pkcs7-signature)
119             (method . mime-verify-application/pkcs7-signature))
120           'strict "mime-pgp")
121
122          (mime-add-condition
123           'action
124           '((type . application)(subtype . x-pkcs7-signature)
125             (method . mime-verify-application/pkcs7-signature))
126           'strict "mime-pgp")
127          
128          (mime-add-condition
129           'action
130           '((type . application)(subtype . pkcs7-mime)
131             (method . mime-view-application/pkcs7-mime))
132           'strict "mime-pgp")
133
134          (mime-add-condition
135           'action
136           '((type . application)(subtype . x-pkcs7-mime)
137             (method . mime-view-application/pkcs7-mime))
138           'strict "mime-pgp")
139          ))
140   )
141
142
143 ;;; @ for mime-edit
144 ;;;
145
146 ;; (defun mime-setup-decode-message-header ()
147 ;;   (save-excursion
148 ;;     (save-restriction
149 ;;       (goto-char (point-min))
150 ;;       (narrow-to-region
151 ;;        (point-min)
152 ;;        (if (re-search-forward
153 ;;             (concat "^" (regexp-quote mail-header-separator) "$")
154 ;;             nil t)
155 ;;            (match-beginning 0)
156 ;;          (point-max)
157 ;;          ))
158 ;;       (mime-decode-header-in-buffer)
159 ;;       (set-buffer-modified-p nil)
160 ;;       )))
161
162 ;; (add-hook 'mime-edit-mode-hook 'mime-setup-decode-message-header)
163
164
165 ;;; @@ variables
166 ;;;
167
168 (defvar mime-setup-use-signature t
169   "If it is not nil, mime-setup sets up to use signature.el.")
170
171 (defvar mime-setup-default-signature-key "\C-c\C-s"
172   "*Key to insert signature.")
173
174 (defvar mime-setup-signature-key-alist '((mail-mode . "\C-c\C-w"))
175   "Alist of major-mode vs. key to insert signature.")
176
177
178 ;;; @@ for signature
179 ;;;
180
181 (defun mime-setup-set-signature-key ()
182   (let ((keymap (current-local-map)))
183     (if keymap
184         (let ((key
185                (or (cdr (assq major-mode mime-setup-signature-key-alist))
186                    mime-setup-default-signature-key)))
187           (define-key keymap key (function insert-signature))
188           ))))
189
190 (when mime-setup-use-signature
191   (autoload 'insert-signature "signature" "Insert signature" t)
192   (add-hook 'mime-edit-mode-hook 'mime-setup-set-signature-key)
193   ;; (setq message-signature nil)
194   )
195
196
197 ;;; @ for mu-cite
198 ;;;
199
200 ;; (add-hook 'mu-cite/pre-cite-hook 'eword-decode-header)
201
202
203 ;;; @ end
204 ;;;
205
206 (provide 'semi-setup)
207
208 ;;; semi-setup.el ends here