Fix encoding.
[elisp/semi.git] / semi-setup.el
1 ;;; semi-setup.el --- setup file for MIME-View.
2
3 ;; Copyright (C) 1994,1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
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/* and X-Face
45 (defvar mime-setup-enable-inline-image
46   (and window-system
47        (or (featurep 'xemacs)
48            (and (featurep 'mule)(module-installed-p 'bitmap))
49            ))
50   "*If it is non-nil, semi-setup sets up to use mime-image.")
51
52 (if mime-setup-enable-inline-image
53     (call-after-loaded 'mime-view
54                        (function
55                         (lambda ()
56                           (require 'mime-image)
57                           )))
58   )
59
60
61 ;; for text/html
62 (defvar mime-setup-enable-inline-html
63   (module-installed-p 'w3)
64   "*If it is non-nil, semi-setup sets up to use mime-w3.")
65
66 (if mime-setup-enable-inline-html
67     (call-after-loaded
68      'mime-view
69      (function
70       (lambda ()
71         (autoload 'mime-preview-text/html "mime-w3")
72         
73         (ctree-set-calist-strictly
74          'mime-preview-condition
75          '((type . text)(subtype . html)
76            (body . visible)
77            (body-presentation-method . mime-preview-text/html)))
78         
79         (set-alist 'mime-view-type-subtype-score-alist
80                    '(text . html) 3)
81         )))
82   )
83
84
85 ;; for PGP
86 (defvar mime-setup-enable-pgp t
87   "*If it is non-nil, semi-setup sets uf to use mime-pgp.")
88
89 (if mime-setup-enable-pgp
90     (eval-after-load "mime-view"
91       '(progn
92          (mime-add-condition
93           'preview '((type . application)(subtype . pgp)
94                      (message-button . visible)))
95          (mime-add-condition
96           'action '((type . application)(subtype . pgp)
97                     (method . mime-view-application/pgp))
98           'strict "mime-pgp")
99          (mime-add-condition
100           'action '((type . text)(subtype . x-pgp)
101                     (method . mime-view-application/pgp)))
102          
103          (mime-add-condition
104           'action '((type . multipart)(subtype . signed)
105                     (method . mime-verify-multipart/signed))
106           'strict "mime-pgp")
107          
108          (mime-add-condition
109           'action
110           '((type . application)(subtype . pgp-signature)
111             (method . mime-verify-application/pgp-signature))
112           'strict "mime-pgp")
113          
114          (mime-add-condition
115           'action
116           '((type . application)(subtype . pgp-encrypted)
117             (method . mime-decrypt-application/pgp-encrypted))
118           'strict "mime-pgp")
119          
120          (mime-add-condition
121           'action
122           '((type . application)(subtype . pgp-keys)
123             (method . mime-add-application/pgp-keys))
124           'strict "mime-pgp")
125
126          (mime-add-condition
127           'action
128           '((type . application)(subtype . pkcs7-signature)
129             (method . mime-verify-application/pkcs7-signature))
130           'strict "mime-pgp")
131
132          (mime-add-condition
133           'action
134           '((type . application)(subtype . x-pkcs7-signature)
135             (method . mime-verify-application/pkcs7-signature))
136           'strict "mime-pgp")
137          
138          (mime-add-condition
139           'action
140           '((type . application)(subtype . pkcs7-mime)
141             (method . mime-view-application/pkcs7-mime))
142           'strict "mime-pgp")
143
144          (mime-add-condition
145           'action
146           '((type . application)(subtype . x-pkcs7-mime)
147             (method . mime-view-application/pkcs7-mime))
148           'strict "mime-pgp")
149          ))
150   )
151
152
153 ;;; @ for mime-edit
154 ;;;
155
156 (defun mime-setup-decode-message-header ()
157   (save-excursion
158     (save-restriction
159       (goto-char (point-min))
160       (narrow-to-region
161        (point-min)
162        (if (re-search-forward
163             (concat "^" (regexp-quote mail-header-separator) "$")
164             nil t)
165            (match-beginning 0)
166          (point-max)
167          ))
168       (mime-decode-header-in-buffer)
169       (set-buffer-modified-p nil)
170       )))
171
172 (add-hook 'mime-edit-mode-hook 'mime-setup-decode-message-header)
173
174
175 ;;; @@ variables
176 ;;;
177
178 (defvar mime-setup-use-signature t
179   "If it is not nil, mime-setup sets up to use signature.el.")
180
181 (defvar mime-setup-default-signature-key "\C-c\C-s"
182   "*Key to insert signature.")
183
184 (defvar mime-setup-signature-key-alist '((mail-mode . "\C-c\C-w"))
185   "Alist of major-mode vs. key to insert signature.")
186
187
188 ;;; @@ for signature
189 ;;;
190
191 (defun mime-setup-set-signature-key ()
192   (let ((keymap (current-local-map)))
193     (if keymap
194         (let ((key
195                (or (cdr (assq major-mode mime-setup-signature-key-alist))
196                    mime-setup-default-signature-key)))
197           (define-key keymap key (function insert-signature))
198           ))))
199
200 (when mime-setup-use-signature
201   (autoload 'insert-signature "signature" "Insert signature" t)
202   (add-hook 'mime-edit-mode-hook 'mime-setup-set-signature-key)
203   ;; (setq message-signature nil)
204   )
205
206
207 ;;; @ for mu-cite
208 ;;;
209
210 (add-hook 'mu-cite/pre-cite-hook 'eword-decode-header)
211
212
213 ;;; @ end
214 ;;;
215
216 (provide 'semi-setup)
217
218 ;;; semi-setup.el ends here