File: semi-setup.el

package info (click to toggle)
semi 1.14.6%2B0.20070618-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 836 kB
  • ctags: 533
  • sloc: lisp: 7,462; sh: 205; makefile: 103
file content (208 lines) | stat: -rw-r--r-- 5,652 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
;;; semi-setup.el --- setup file for MIME-View.

;; Copyright (C) 1994,95,96,97,98,99,2000 Free Software Foundation, Inc.

;; Author: MORIOKA Tomohiko <tomo@m17n.org>
;; Keywords: mail, news, MIME, multimedia, multilingual, encoded-word

;; This file is part of SEMI (Setting for Emacs MIME Interfaces).

;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2, or (at
;; your option) any later version.

;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;; General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.

;;; Code:

(require 'semi-def)
(require 'path-util)

(defun call-after-loaded (module func &optional hook-name)
  "If MODULE is provided, then FUNC is called.
Otherwise func is set to MODULE-load-hook.
If optional argument HOOK-NAME is specified,
it is used as hook to set."
  (if (featurep module)
      (funcall func)
    (or hook-name
	(setq hook-name (intern (concat (symbol-name module) "-load-hook")))
	)
    (add-hook hook-name func)
    ))


;; for image/*
(defvar mime-setup-enable-inline-image
  (and window-system
       (or (featurep 'xemacs)(featurep 'mule)))
  "*If it is non-nil, semi-setup sets up to use mime-image.")

(if mime-setup-enable-inline-image
    (eval-after-load "mime-view"
      '(require 'mime-image)))

;; for text/html
(defvar mime-setup-enable-inline-html
  (module-installed-p 'w3)
  "*If it is non-nil, semi-setup sets up to use mime-w3.")

(if mime-setup-enable-inline-html
    (eval-after-load "mime-view"
      '(progn
	 (autoload 'mime-preview-text/html "mime-w3")
	 
	 (ctree-set-calist-strictly
	  'mime-preview-condition
	  '((type . text)(subtype . html)
	    (body . visible)
	    (body-presentation-method . mime-preview-text/html)))
	 
	 (set-alist 'mime-view-type-subtype-score-alist
		    '(text . html) 3)
	 )))


;; for PGP
(defvar mime-setup-enable-pgp t
  "*If it is non-nil, semi-setup sets uf to use mime-pgp.")

(if mime-setup-enable-pgp
    (eval-after-load "mime-view"
      '(progn
	 (mime-add-condition
	  'preview '((type . application)(subtype . pgp)
		     (message-button . visible)))
	 (mime-add-condition
	  'action '((type . application)(subtype . pgp)
		    (method . mime-view-application/pgp))
	  'strict "mime-pgp")
	 (mime-add-condition
	  'action '((type . text)(subtype . x-pgp)
		    (method . mime-view-application/pgp)))
	 
	 (mime-add-condition
	  'action '((type . multipart)(subtype . signed)
		    (method . mime-verify-multipart/signed))
	  'strict "mime-pgp")
	 
	 (mime-add-condition
	  'action
	  '((type . application)(subtype . pgp-signature)
	    (method . mime-verify-application/pgp-signature))
	  'strict "mime-pgp")
	 
	 (mime-add-condition
	  'action
	  '((type . application)(subtype . pgp-encrypted)
	    (method . mime-decrypt-application/pgp-encrypted))
	  'strict "mime-pgp")
	 
	 (mime-add-condition
	  'action
	  '((type . application)(subtype . pgp-keys)
	    (method . mime-add-application/pgp-keys))
	  'strict "mime-pgp")

	 (mime-add-condition
	  'action
	  '((type . application)(subtype . pkcs7-signature)
	    (method . mime-verify-application/pkcs7-signature))
	  'strict "mime-pgp")

	 (mime-add-condition
	  'action
	  '((type . application)(subtype . x-pkcs7-signature)
	    (method . mime-verify-application/pkcs7-signature))
	  'strict "mime-pgp")
	 
	 (mime-add-condition
	  'action
	  '((type . application)(subtype . pkcs7-mime)
	    (method . mime-view-application/pkcs7-mime))
	  'strict "mime-pgp")

	 (mime-add-condition
	  'action
	  '((type . application)(subtype . x-pkcs7-mime)
	    (method . mime-view-application/pkcs7-mime))
	  'strict "mime-pgp")
	 ))
  )


;;; @ for mime-edit
;;;

;; (defun mime-setup-decode-message-header ()
;;   (save-excursion
;;     (save-restriction
;;       (goto-char (point-min))
;;       (narrow-to-region
;;        (point-min)
;;        (if (re-search-forward
;;             (concat "^" (regexp-quote mail-header-separator) "$")
;;             nil t)
;;            (match-beginning 0)
;;          (point-max)
;;          ))
;;       (mime-decode-header-in-buffer)
;;       (set-buffer-modified-p nil)
;;       )))

;; (add-hook 'mime-edit-mode-hook 'mime-setup-decode-message-header)


;;; @@ variables
;;;

(defvar mime-setup-use-signature t
  "If it is not nil, mime-setup sets up to use signature.el.")

(defvar mime-setup-default-signature-key "\C-c\C-s"
  "*Key to insert signature.")

(defvar mime-setup-signature-key-alist '((mail-mode . "\C-c\C-w"))
  "Alist of major-mode vs. key to insert signature.")


;;; @@ for signature
;;;

(defun mime-setup-set-signature-key ()
  (let ((keymap (current-local-map)))
    (if keymap
	(let ((key
	       (or (cdr (assq major-mode mime-setup-signature-key-alist))
		   mime-setup-default-signature-key)))
	  (define-key keymap key (function insert-signature))
	  ))))

(when mime-setup-use-signature
  (autoload 'insert-signature "signature" "Insert signature" t)
  (add-hook 'mime-edit-mode-hook 'mime-setup-set-signature-key)
  ;; (setq message-signature nil)
  )


;;; @ for mu-cite
;;;

;; (add-hook 'mu-cite/pre-cite-hook 'eword-decode-header)


;;; @ end
;;;

(provide 'semi-setup)

;;; semi-setup.el ends here