This commit was generated by cvs2svn to compensate for changes in r533,
[elisp/tm.git] / mime-setup.el.in
1 ;;; mime-setup.el --- setup file for tm viewer and composer.
2
3 ;; Copyright (C) 1995,1996,1997 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Version:
7 ;;      $Id: mime-setup.el.in,v 7.31 1997/01/30 09:10:29 morioka Exp $
8 ;; Keywords: mail, news, MIME, multimedia, multilingual, encoded-word
9
10 ;; This file is part of tm (Tools for MIME).
11
12 ;; This program is free software; you can redistribute it and/or
13 ;; modify it under the terms of the GNU General Public License as
14 ;; published by the Free Software Foundation; either version 2, or (at
15 ;; your option) any later version.
16
17 ;; This program is distributed in the hope that it will be useful, but
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
20 ;; General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26
27 ;;; Code:
28
29 (require 'tm-setup)
30
31 (autoload 'mime/editor-mode "tm-edit"
32   "Minor mode for editing MIME message." t)
33 (autoload 'mime/decode-message-header "tm-ew-d"
34   "Decode MIME encoded-words in message header." t)
35
36 (defun mime-setup-decode-message-header ()
37   (save-excursion
38     (save-restriction
39       (goto-char (point-min))
40       (narrow-to-region
41        (point-min)
42        (if (re-search-forward
43             (concat "^" (regexp-quote mail-header-separator) "$")
44             nil t)
45            (match-beginning 0)
46          (point-max)
47          ))
48       (mime/decode-message-header)
49       (set-buffer-modified-p nil)
50       )))
51
52 (add-hook 'mime/editor-mode-hook 'mime-setup-decode-message-header)
53
54
55 ;;; @ variables
56 ;;;
57
58 (defvar mime-setup-use-sc nil
59   "If it is not nil, mime-setup requires sc-setup. [mime-setup.el]")
60
61 (defvar mime-setup-use-signature t
62   "If it is not nil, mime-setup sets up to use signature.el.
63 \[mime-setup.el]")
64
65 (defvar mime-setup-default-signature-key "\C-c\C-s"
66   "*Key to insert signature. [mime-setup.el]")
67
68 (defvar mime-setup-signature-key-alist '((mail-mode . "\C-c\C-w"))
69   "Alist of major-mode vs. key to insert signature. [mime-setup.el]")
70
71
72 ;;; @ for signature
73 ;;;
74
75 (defun mime-setup-set-signature-key ()
76   (let ((key (or (cdr (assq major-mode mime-setup-signature-key-alist))
77                  mime-setup-default-signature-key)))
78     (define-key (current-local-map) key (function insert-signature))
79     ))
80
81 (if mime-setup-use-signature
82     (progn
83       (autoload 'insert-signature "signature" "Insert signature" t)
84       (add-hook 'mime/editor-mode-hook 'mime-setup-set-signature-key)
85       (setq gnus-signature-file nil)
86       (setq mail-signature nil)
87       (setq message-signature nil)
88       ))
89
90
91 ;;; @ about SuperCite
92 ;;;
93
94 (if mime-setup-use-sc
95     (require 'sc-setup)
96   )
97
98
99 ;;; @ for mu-cite
100 ;;;
101
102 (add-hook 'mu-cite/pre-cite-hook 'mime/decode-message-header)
103
104
105 ;;; @ for mail-mode, RMAIL and VM
106 ;;;
107
108 (add-hook 'mail-setup-hook 'mime/decode-message-header)
109 (add-hook 'mail-setup-hook 'mime/editor-mode 'append)
110 (add-hook 'mail-send-hook  'mime-editor/maybe-translate)
111 (set-alist 'mime-editor/split-message-sender-alist
112            'mail-mode (function
113                        (lambda ()
114                          (interactive)
115                          (funcall send-mail-function)
116                          )))
117
118 ;;; @ for mh-e
119 ;;;
120
121 (defun mime-setup-mh-draft-setting ()
122   (mime/editor-mode)
123   (make-local-variable 'mail-header-separator)
124   (setq mail-header-separator "--------")
125   (save-excursion
126     (goto-char (point-min))
127     (setq buffer-read-only nil)
128     (if (re-search-forward "^-*$" nil t)
129         (progn
130           (replace-match mail-header-separator)
131           (set-buffer-modified-p (buffer-modified-p))
132           ))
133     ))
134
135 (add-hook 'mh-letter-mode-hook 'mime-setup-mh-draft-setting t)
136 (add-hook 'mh-before-send-letter-hook 'mime-editor/maybe-translate)
137
138
139 ;;; @ for GNUS
140 ;;;
141
142 (add-hook 'news-reply-mode-hook 'mime/editor-mode)
143 (add-hook 'news-inews-hook      'mime-editor/maybe-translate)
144
145
146 ;;; @ for message (September Gnus 0.58 or later)
147 ;;;
148
149 (defun message-maybe-setup-default-charset ()
150   (let ((charset
151          (and (boundp 'gnus-summary-buffer)
152               (buffer-live-p gnus-summary-buffer)
153               (save-excursion
154                 (set-buffer gnus-summary-buffer)
155                 default-mime-charset))))
156     (if charset
157         (progn
158           (make-local-variable 'default-mime-charset)
159           (setq default-mime-charset charset)
160           ))))
161
162 (or (boundp 'epoch::version)
163     (progn
164       (add-hook 'message-setup-hook 'mime/editor-mode)
165       (add-hook 'message-setup-hook 'message-maybe-setup-default-charset)
166       (add-hook 'message-send-hook  'mime-editor/maybe-translate)
167       (add-hook 'message-header-hook 'mime/encode-message-header)
168       
169       (call-after-loaded
170        'message
171        (function
172         (lambda ()
173           (require 'message-mime)
174           )))
175       ))
176
177
178 ;;; @ end
179 ;;;
180
181 (provide 'mime-setup)
182
183 (run-hooks 'mime-setup-load-hook)
184
185 ;;; mime-setup.el ends here
186 ;;;
187 ;;; Local Variables:
188 ;;; mode: emacs-lisp
189 ;;; End: