(four_corners_best): New arg CORNERS specifies what pixels
[bpt/emacs.git] / lisp / mh-e / mh-letter.el
CommitLineData
dda00b2c
BW
1;;; mh-letter.el --- MH-Letter mode
2
3;; Copyright (C) 1993, 1995, 1997,
4;; 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5
6;; Author: Bill Wohler <wohler@newt.com>
7;; Maintainer: Bill Wohler <wohler@newt.com>
8;; Keywords: mail
9;; See: mh-e.el
10
11;; This file is part of GNU Emacs.
12
13;; GNU Emacs is free software; you can redistribute it and/or modify
14;; it under the terms of the GNU General Public License as published by
15;; the Free Software Foundation; either version 2, or (at your option)
16;; any later version.
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
24;; along with GNU Emacs; see the file COPYING. If not, write to the
25;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26;; Boston, MA 02110-1301, USA.
27
28;;; Commentary:
29
30;; Mode for composing and sending a draft message.
31
32;; Functions that would ordinarily be in here that are needed by
33;; mh-show.el should be placed in the Message Utilities section in
34;; mh-utils.el. That will help prevent the loading of this file until
35;; a message is actually composed.
36
37;;; Change Log:
38
39;;; Code:
40
41(require 'mh-e)
42
43(require 'gnus-util)
44
efc27af6 45;; Dynamically-created functions not found in mh-loaddefs.el.
dda00b2c 46(autoload 'mh-tool-bar-letter-buttons-init "mh-tool-bar")
efc27af6 47(autoload 'mh-tool-bar-init "mh-tool-bar")
dda00b2c
BW
48
49(autoload 'mml-insert-tag "mml")
50
51;;; Variables
52
53(defvar mh-letter-complete-function-alist
54 '((bcc . mh-alias-letter-expand-alias)
55 (cc . mh-alias-letter-expand-alias)
56 (dcc . mh-alias-letter-expand-alias)
57 (fcc . mh-folder-expand-at-point)
58 (from . mh-alias-letter-expand-alias)
59 (mail-followup-to . mh-alias-letter-expand-alias)
60 (mail-reply-to . mh-alias-letter-expand-alias)
61 (reply-to . mh-alias-letter-expand-alias)
62 (to . mh-alias-letter-expand-alias))
63 "Alist of header fields and completion functions to use.")
64
dda00b2c
BW
65(defvar mh-yank-hooks nil
66 "Obsolete hook for modifying a citation just inserted in the mail buffer.
67
68Each hook function can find the citation between point and mark.
69And each hook function should leave point and mark around the
70citation text as modified.
71
72This is a normal hook, misnamed for historical reasons. It is
73semi-obsolete and is only used if `mail-citation-hook' is nil.")
74
75\f
76
77;;; Letter Menu
78
dda00b2c
BW
79(easy-menu-define
80 mh-letter-menu mh-letter-mode-map "Menu for MH-E letter mode."
81 '("Letter"
82 ["Send This Draft" mh-send-letter t]
83 ["Split Current Line" mh-open-line t]
84 ["Check Recipient" mh-check-whom t]
85 ["Yank Current Message" mh-yank-cur-msg t]
86 ["Insert a Message..." mh-insert-letter t]
87 ["Insert Signature" mh-insert-signature t]
88 ("Encrypt/Sign Message"
89 ["Sign Message"
90 mh-mml-secure-message-sign mh-pgp-support-flag]
91 ["Encrypt Message"
92 mh-mml-secure-message-encrypt mh-pgp-support-flag]
93 ["Sign+Encrypt Message"
94 mh-mml-secure-message-signencrypt mh-pgp-support-flag]
95 ["Disable Security"
96 mh-mml-unsecure-message mh-pgp-support-flag]
97 "--"
98 "Security Method"
99 ["PGP (MIME)" (setq mh-mml-method-default "pgpmime")
100 :style radio
101 :selected (equal mh-mml-method-default "pgpmime")]
102 ["PGP" (setq mh-mml-method-default "pgp")
103 :style radio
104 :selected (equal mh-mml-method-default "pgp")]
105 ["S/MIME" (setq mh-mml-method-default "smime")
106 :style radio
107 :selected (equal mh-mml-method-default "smime")]
108 "--"
109 ["Save Method as Default"
110 (customize-save-variable 'mh-mml-method-default mh-mml-method-default) t]
111 )
112 ["Compose Insertion..." mh-compose-insertion t]
113 ["Compose Compressed tar (MH)..."
114 mh-mh-compose-external-compressed-tar t]
115 ["Compose Get File (MH)..." mh-mh-compose-anon-ftp t]
116 ["Compose Forward..." mh-compose-forward t]
117 ;; The next two will have to be merged. But I also need to make sure the
118 ;; user can't mix tags of both types.
119 ["Pull in All Compositions (MH)"
120 mh-mh-to-mime (mh-mh-directive-present-p)]
121 ["Pull in All Compositions (MML)"
122 mh-mml-to-mime (mh-mml-tag-present-p)]
123 ["Revert to Non-MIME Edit (MH)"
124 mh-mh-to-mime-undo (equal mh-compose-insertion 'mh)]
125 ["Kill This Draft" mh-fully-kill-draft t]))
126
127\f
128
129;;; MH-Letter Keys
130
131;; If this changes, modify mh-letter-mode-help-messages accordingly, above.
132(gnus-define-keys mh-letter-mode-map
133 " " mh-letter-complete-or-space
134 "," mh-letter-confirm-address
135 "\C-c?" mh-help
136 "\C-c\C-\\" mh-fully-kill-draft ;if no C-q
137 "\C-c\C-^" mh-insert-signature ;if no C-s
138 "\C-c\C-c" mh-send-letter
139 "\C-c\C-d" mh-insert-identity
140 "\C-c\C-e" mh-mh-to-mime
141 "\C-c\C-f\C-a" mh-to-field
142 "\C-c\C-f\C-b" mh-to-field
143 "\C-c\C-f\C-c" mh-to-field
144 "\C-c\C-f\C-d" mh-to-field
145 "\C-c\C-f\C-f" mh-to-fcc
146 "\C-c\C-f\C-l" mh-to-field
147 "\C-c\C-f\C-m" mh-to-field
148 "\C-c\C-f\C-r" mh-to-field
149 "\C-c\C-f\C-s" mh-to-field
150 "\C-c\C-f\C-t" mh-to-field
151 "\C-c\C-fa" mh-to-field
152 "\C-c\C-fb" mh-to-field
153 "\C-c\C-fc" mh-to-field
154 "\C-c\C-fd" mh-to-field
155 "\C-c\C-ff" mh-to-fcc
156 "\C-c\C-fl" mh-to-field
157 "\C-c\C-fm" mh-to-field
158 "\C-c\C-fr" mh-to-field
159 "\C-c\C-fs" mh-to-field
160 "\C-c\C-ft" mh-to-field
161 "\C-c\C-i" mh-insert-letter
162 "\C-c\C-m\C-e" mh-mml-secure-message-encrypt
163 "\C-c\C-m\C-f" mh-compose-forward
164 "\C-c\C-m\C-g" mh-mh-compose-anon-ftp
165 "\C-c\C-m\C-i" mh-compose-insertion
166 "\C-c\C-m\C-m" mh-mml-to-mime
167 "\C-c\C-m\C-n" mh-mml-unsecure-message
168 "\C-c\C-m\C-s" mh-mml-secure-message-sign
169 "\C-c\C-m\C-t" mh-mh-compose-external-compressed-tar
170 "\C-c\C-m\C-u" mh-mh-to-mime-undo
171 "\C-c\C-m\C-x" mh-mh-compose-external-type
172 "\C-c\C-mee" mh-mml-secure-message-encrypt
173 "\C-c\C-mes" mh-mml-secure-message-signencrypt
174 "\C-c\C-mf" mh-compose-forward
175 "\C-c\C-mg" mh-mh-compose-anon-ftp
176 "\C-c\C-mi" mh-compose-insertion
177 "\C-c\C-mm" mh-mml-to-mime
178 "\C-c\C-mn" mh-mml-unsecure-message
179 "\C-c\C-mse" mh-mml-secure-message-signencrypt
180 "\C-c\C-mss" mh-mml-secure-message-sign
181 "\C-c\C-mt" mh-mh-compose-external-compressed-tar
182 "\C-c\C-mu" mh-mh-to-mime-undo
183 "\C-c\C-mx" mh-mh-compose-external-type
184 "\C-c\C-o" mh-open-line
185 "\C-c\C-q" mh-fully-kill-draft
186 "\C-c\C-s" mh-insert-signature
187 "\C-c\C-t" mh-letter-toggle-header-field-display
188 "\C-c\C-w" mh-check-whom
189 "\C-c\C-y" mh-yank-cur-msg
190 "\C-c\M-d" mh-insert-auto-fields
191 "\M-\t" mh-letter-complete
192 "\t" mh-letter-next-header-field-or-indent
193 [backtab] mh-letter-previous-header-field)
194
195;; "C-c /" prefix is used in mh-letter-mode by pgp.el and mailcrypt.el.
196
197\f
198
199;;; MH-Letter Help Messages
200
201;; Group messages logically, more or less.
202(defvar mh-letter-mode-help-messages
203 '((nil
204 "Send letter: \\[mh-send-letter] "
205 "Open line: \\[mh-open-line]\n"
206 "Kill letter: \\[mh-fully-kill-draft] "
207 "Check recipients: \\[mh-check-whom]\n\n"
208 "Insert:\n"
209 " Current message: \\[mh-yank-cur-msg]\n"
210 " Attachment: \\[mh-compose-insertion]\n"
211 " Message to forward: \\[mh-compose-forward]\n"
212 " Signature: \\[mh-insert-signature]\n\n"
213 "Security:\n"
214 " Encrypt message: \\[mh-mml-secure-message-encrypt]\n"
215 " Sign message: \\[mh-mml-secure-message-sign]\n"
216 " Sign+Encrypt message: \\[mh-mml-secure-message-signencrypt]"))
217 "Key binding cheat sheet.
218
219This is an associative array which is used to show the most
220common commands. The key is a prefix char. The value is one or
221more strings which are concatenated together and displayed in the
222minibuffer if ? is pressed after the prefix character. The
223special key nil is used to display the non-prefixed commands.
224
225The substitutions described in `substitute-command-keys' are
226performed as well.")
227
228\f
229
230;;; MH-Letter Font Lock
231
232(defvar mh-letter-font-lock-keywords
233 `(,@(mh-show-font-lock-keywords-with-cite)
234 (mh-font-lock-field-data
235 (1 'mh-letter-header-field prepend t)))
236 "Additional expressions to highlight in MH-Letter buffers.")
237
238(defun mh-font-lock-field-data (limit)
239 "Find header field region between point and LIMIT."
240 (and (< (point) (mh-letter-header-end))
241 (< (point) limit)
242 (let ((end (min limit (mh-letter-header-end)))
243 (point (point))
244 data-end data-begin field)
245 (end-of-line)
246 (setq data-end (if (re-search-forward "^[^ \t]" end t)
247 (match-beginning 0)
248 end))
249 (goto-char (1- data-end))
250 (if (not (re-search-backward "\\(^[^ \t][^:]*\\):[ \t]*" nil t))
251 (setq data-begin (point-min))
252 (setq data-begin (match-end 0))
253 (setq field (match-string 1)))
254 (setq data-begin (max point data-begin))
255 (goto-char (if (equal point data-end) (1+ data-end) data-end))
256 (cond ((and field (mh-letter-skipped-header-field-p field))
257 (set-match-data nil)
258 nil)
259 (t (set-match-data
260 (list data-begin data-end data-begin data-end))
261 t)))))
262
263(defun mh-letter-header-end ()
264 "Find the end of the message header.
265This function is to be used only for font locking. It works by
266searching for `mh-mail-header-separator' in the buffer."
267 (save-excursion
268 (goto-char (point-min))
269 (cond ((equal mh-mail-header-separator "") (point-min))
270 ((search-forward (format "\n%s\n" mh-mail-header-separator) nil t)
d5dc8c56 271 (mh-line-beginning-position 0))
dda00b2c
BW
272 (t (point-min)))))
273
274\f
275
276;;; MH-Letter Mode
277
dda00b2c 278;; Shush compiler.
42f8c37f 279(defvar font-lock-defaults) ; XEmacs
dda00b2c
BW
280
281;; Ensure new buffers won't get this mode if default-major-mode is nil.
282(put 'mh-letter-mode 'mode-class 'special)
283
284;;;###mh-autoload
285(define-derived-mode mh-letter-mode mail-mode "MH-Letter"
286 "Mode for composing letters in MH-E\\<mh-letter-mode-map>.
287
288When you have finished composing, type \\[mh-send-letter] to send
289the message using the MH mail handling system.
290
291There are two types of tags used by MH-E when composing MIME
292messages: MML and MH. The option `mh-compose-insertion' controls
293what type of tags are inserted by MH-E commands. These tags can
294be converted to MIME body parts by running \\[mh-mh-to-mime] for
295MH-style directives or \\[mh-mml-to-mime] for MML tags.
296
297Options that control this mode can be changed with
298\\[customize-group]; specify the \"mh-compose\" group.
299
300When a message is composed, the hooks `text-mode-hook',
301`mail-mode-hook', and `mh-letter-mode-hook' are run (in that
302order).
303
304\\{mh-letter-mode-map}"
305 (mh-find-path)
306 (make-local-variable 'mh-send-args)
307 (make-local-variable 'mh-annotate-char)
308 (make-local-variable 'mh-annotate-field)
309 (make-local-variable 'mh-previous-window-config)
310 (make-local-variable 'mh-sent-from-folder)
311 (make-local-variable 'mh-sent-from-msg)
312 (mh-do-in-gnu-emacs
d2464a9f
BW
313 (unless mh-letter-tool-bar-map
314 (mh-tool-bar-letter-buttons-init))
efc27af6
BW
315 (set (make-local-variable 'tool-bar-map) mh-letter-tool-bar-map))
316 (mh-do-in-xemacs
317 (mh-tool-bar-init :letter))
dda00b2c
BW
318 ;; Set the local value of mh-mail-header-separator according to what is
319 ;; present in the buffer...
320 (set (make-local-variable 'mh-mail-header-separator)
321 (save-excursion
322 (goto-char (mh-mail-header-end))
d5dc8c56 323 (buffer-substring-no-properties (point) (mh-line-end-position))))
dda00b2c
BW
324 (make-local-variable 'mail-header-separator)
325 (setq mail-header-separator mh-mail-header-separator) ;override sendmail.el
326 (mh-set-help mh-letter-mode-help-messages)
327 (setq buffer-invisibility-spec '((vanish . t) t))
328 (set (make-local-variable 'line-move-ignore-invisible) t)
329
330 ;; Enable undo since a show-mode buffer might have been reused.
331 (buffer-enable-undo)
dda00b2c
BW
332 (make-local-variable 'font-lock-defaults)
333 (cond
334 ((or (equal mh-highlight-citation-style 'font-lock)
335 (equal mh-highlight-citation-style 'gnus))
336 ;; Let's use font-lock even if gnus is used in show-mode. The reason
337 ;; is that gnus uses static text properties which are not appropriate
338 ;; for a buffer that will be edited. So the choice here is either fontify
339 ;; the citations and header...
340 (setq font-lock-defaults '(mh-letter-font-lock-keywords t)))
341 (t
342 ;; ...or the header only
343 (setq font-lock-defaults '((mh-show-font-lock-keywords) t))))
344 (easy-menu-add mh-letter-menu)
0f1f01d6
BW
345 ;; Maybe we want to use the existing Mail menu from mail-mode in
346 ;; 9.0; in the mean time, let's remove it since the redundancy will
347 ;; only produce confusion.
348 (define-key mh-letter-mode-map [menu-bar mail] 'undefined)
349 (mh-do-in-xemacs (easy-menu-remove mail-menubar-menu))
dda00b2c
BW
350 (setq fill-column mh-letter-fill-column)
351 ;; If text-mode-hook turned on auto-fill, tune it for messages
352 (when auto-fill-function
353 (make-local-variable 'auto-fill-function)
354 (setq auto-fill-function 'mh-auto-fill-for-letter)))
355
356\f
357
358;;; MH-Letter Commands
359
360;; Alphabetical.
361;; See also mh-comp.el and mh-mime.el.
362
363(defun mh-check-whom ()
364 "Verify recipients, showing expansion of any aliases.
365
366This command expands aliases so you can check the actual address(es)
367in the alias. A new buffer named \"*MH-E Recipients*\" is created with
368the output of \"whom\"."
369 (interactive)
370 (let ((file-name buffer-file-name))
371 (save-buffer)
372 (message "Checking recipients...")
373 (mh-in-show-buffer (mh-recipients-buffer)
374 (bury-buffer (current-buffer))
375 (erase-buffer)
376 (mh-exec-cmd-output "whom" t file-name))
377 (message "Checking recipients...done")))
378
379(defun mh-insert-letter (folder message verbatim)
380 "Insert a message.
381
382This command prompts you for the FOLDER and MESSAGE number, which
383defaults to the current message in that folder. It then inserts
384the message, indented by `mh-ins-buf-prefix' (\"> \") unless
385`mh-yank-behavior' is set to one of the supercite flavors in
386which case supercite is used to format the message. Certain
387undesirable header fields (see
388`mh-invisible-header-fields-compiled') are removed before
389insertion.
390
391If given a prefix argument VERBATIM, the header is left intact, the
392message is not indented, and \"> \" is not inserted before each line.
393This command leaves the mark before the letter and point after it."
394 (interactive
395 (let* ((folder
396 (mh-prompt-for-folder "Message from"
397 mh-sent-from-folder nil))
398 (default
399 (if (and (equal folder mh-sent-from-folder)
400 (numberp mh-sent-from-msg))
401 mh-sent-from-msg
402 (nth 0 (mh-translate-range folder "cur"))))
403 (message
404 (read-string (concat "Message number"
405 (or (and default
406 (format " (default %d): " default))
407 ": ")))))
408 (list folder message current-prefix-arg)))
409 (save-restriction
410 (narrow-to-region (point) (point))
411 (let ((start (point-min)))
412 (if (and (equal message "") (numberp mh-sent-from-msg))
413 (setq message (int-to-string mh-sent-from-msg)))
414 (insert-file-contents
415 (expand-file-name message (mh-expand-file-name folder)))
416 (when (not verbatim)
417 (mh-clean-msg-header start mh-invisible-header-fields-compiled nil)
418 (goto-char (point-max)) ;Needed for sc-cite-original
419 (push-mark) ;Needed for sc-cite-original
420 (goto-char (point-min)) ;Needed for sc-cite-original
421 (mh-insert-prefix-string mh-ins-buf-prefix)))))
422
423;;;###mh-autoload
424(defun mh-insert-signature (&optional file)
425 "Insert signature in message.
426
427This command inserts your signature at the current cursor location.
428
429By default, the text of your signature is taken from the file
430\"~/.signature\". You can read from other sources by changing the
431option `mh-signature-file-name'.
432
433A signature separator (\"-- \") will be added if the signature block
434does not contain one and `mh-signature-separator-flag' is on.
435
436The hook `mh-insert-signature-hook' is run after the signature is
437inserted. Hook functions may access the actual name of the file or the
438function used to insert the signature with `mh-signature-file-name'.
439
440The signature can also be inserted using Identities (see
441`mh-identity-list').
442
443In a program, you can pass in a signature FILE."
444 (interactive)
445 (save-excursion
446 (insert "\n")
447 (let ((mh-signature-file-name (or file mh-signature-file-name))
448 (mh-mh-p (mh-mh-directive-present-p))
449 (mh-mml-p (mh-mml-tag-present-p)))
450 (save-restriction
451 (narrow-to-region (point) (point))
452 (cond
453 ((mh-file-is-vcard-p mh-signature-file-name)
454 (if (equal mh-compose-insertion 'mml)
455 (insert "<#part type=\"text/x-vcard\" filename=\""
456 mh-signature-file-name
457 "\" disposition=inline description=VCard>\n<#/part>")
458 (insert "#text/x-vcard; name=\""
459 (file-name-nondirectory mh-signature-file-name)
460 "\" [VCard] " (expand-file-name mh-signature-file-name))))
461 (t
462 (cond
463 (mh-mh-p
464 (insert "#\n" "Content-Description: Signature\n"))
465 (mh-mml-p
466 (mml-insert-tag 'part 'type "text/plain" 'disposition "inline"
467 'description "Signature")))
468 (cond ((null mh-signature-file-name))
469 ((and (stringp mh-signature-file-name)
470 (file-readable-p mh-signature-file-name))
471 (insert-file-contents mh-signature-file-name))
472 ((functionp mh-signature-file-name)
473 (funcall mh-signature-file-name)))))
474 (save-restriction
475 (widen)
476 (run-hooks 'mh-insert-signature-hook))
477 (goto-char (point-min))
478 (when (and (not (mh-file-is-vcard-p mh-signature-file-name))
479 mh-signature-separator-flag
480 (> (point-max) (point-min))
481 (not (mh-signature-separator-p)))
482 (cond (mh-mh-p
483 (forward-line 2))
484 (mh-mml-p
485 (forward-line 1)))
486 (insert mh-signature-separator))
487 (if (not (> (point-max) (point-min)))
488 (message "No signature found")))))
489 (force-mode-line-update))
490
491(defun mh-letter-complete (arg)
492 "Perform completion on header field or word preceding point.
493
494If the field contains addresses (for example, \"To:\" or \"Cc:\")
495or folders (for example, \"Fcc:\") then this command will provide
496alias completion. In the body of the message, this command runs
497`mh-letter-complete-function' instead, which is set to
498`ispell-complete-word' by default. This command takes a prefix
499argument ARG that is passed to the
500`mh-letter-complete-function'."
501 (interactive "P")
502 (let ((func nil))
503 (cond ((not (mh-in-header-p))
504 (funcall mh-letter-complete-function arg))
505 ((setq func (cdr (assoc (mh-letter-header-field-at-point)
506 mh-letter-complete-function-alist)))
507 (funcall func))
508 (t (funcall mh-letter-complete-function arg)))))
509
510(defun mh-letter-complete-or-space (arg)
511 "Perform completion or insert space.
512
513Turn on the option `mh-compose-space-does-completion-flag' to use
514this command to perform completion in the header. Otherwise, a
515space is inserted; use a prefix argument ARG to specify more than
516one space."
517 (interactive "p")
518 (let ((func nil)
519 (end-of-prev (save-excursion
520 (goto-char (mh-beginning-of-word))
521 (mh-beginning-of-word -1))))
522 (cond ((not mh-compose-space-does-completion-flag)
523 (self-insert-command arg))
524 ((not (mh-in-header-p)) (self-insert-command arg))
525 ((> (point) end-of-prev) (self-insert-command arg))
526 ((setq func (cdr (assoc (mh-letter-header-field-at-point)
527 mh-letter-complete-function-alist)))
528 (funcall func))
529 (t (self-insert-command arg)))))
530
531(defun mh-letter-confirm-address ()
532 "Flash alias expansion.
533
534Addresses are separated by a comma\; when you press the comma,
535this command flashes the alias expansion in the minibuffer if
536`mh-alias-flash-on-comma' is turned on."
537 (interactive)
538 (cond ((not (mh-in-header-p)) (self-insert-command 1))
539 ((eq (cdr (assoc (mh-letter-header-field-at-point)
540 mh-letter-complete-function-alist))
541 'mh-alias-letter-expand-alias)
542 (mh-alias-reload-maybe)
543 (mh-alias-minibuffer-confirm-address))
544 (t (self-insert-command 1))))
545
546(defun mh-letter-next-header-field-or-indent (arg)
547 "Cycle to next field.
548
549Within the header of the message, this command moves between
550fields that are highlighted with the face
551`mh-letter-header-field', skipping those fields listed in
552`mh-compose-skipped-header-fields'. After the last field, this
553command then moves point to the message body before cycling back
554to the first field. If point is already past the first line of
555the message body, then this command indents by calling
556`indent-relative' with the given prefix argument ARG."
557 (interactive "P")
558 (let ((header-end (save-excursion
559 (goto-char (mh-mail-header-end))
560 (forward-line)
561 (point))))
562 (if (> (point) header-end)
563 (indent-relative arg)
564 (mh-letter-next-header-field))))
565
566(defun mh-letter-previous-header-field ()
567 "Cycle to the previous header field.
568
569This command moves backwards between the fields and cycles to the
570body of the message after the first field. Unlike the command
571\\[mh-letter-next-header-field-or-indent], it will always take
572point to the last field from anywhere in the body."
573 (interactive)
574 (let ((header-end (mh-mail-header-end)))
575 (if (>= (point) header-end)
576 (goto-char header-end)
577 (mh-header-field-beginning))
578 (cond ((re-search-backward mh-letter-header-field-regexp nil t)
579 (if (mh-letter-skipped-header-field-p (match-string 1))
580 (mh-letter-previous-header-field)
581 (goto-char (match-end 0))
582 (mh-letter-skip-leading-whitespace-in-header-field)))
583 (t (goto-char header-end)
584 (forward-line)))))
585
dda00b2c
BW
586(defun mh-open-line ()
587 "Insert a newline and leave point before it.
588
589This command is similar to the command \\[open-line] in that it
590inserts a newline after point. It differs in that it also inserts
591the right number of quoting characters and spaces so that the
592next line begins in the same column as it was. This is useful
593when breaking up paragraphs in replies."
594 (interactive)
595 (let ((column (current-column))
596 (prefix (mh-current-fill-prefix)))
597 (if (> (length prefix) column)
598 (message "Sorry, point seems to be within the line prefix")
599 (newline 2)
600 (insert prefix)
601 (while (> column (current-column))
602 (insert " "))
603 (forward-line -1))))
604
605(defun mh-to-fcc (&optional folder)
606 "Move to \"Fcc:\" header field.
607
608This command will prompt you for the FOLDER name in which to file
609a copy of the draft."
610 (interactive (list (mh-prompt-for-folder
611 "Fcc"
612 (or (and mh-default-folder-for-message-function
613 (save-excursion
614 (goto-char (point-min))
615 (funcall
616 mh-default-folder-for-message-function)))
617 "")
618 t)))
619 (let ((last-input-char ?\C-f))
620 (expand-abbrev)
621 (save-excursion
622 (mh-to-field)
623 (insert (if (mh-folder-name-p folder)
624 (substring folder 1)
625 folder)))))
626
627(defvar mh-to-field-choices '(("a" . "Mail-Reply-To:")
628 ("b" . "Bcc:")
629 ("c" . "Cc:")
630 ("d" . "Dcc:")
631 ("f" . "Fcc:")
632 ("l" . "Mail-Followup-To:")
633 ("m" . "From:")
634 ("r" . "Reply-To:")
635 ("s" . "Subject:")
636 ("t" . "To:"))
637 "Alist of (final-character . field-name) choices for `mh-to-field'.")
638
639(defun mh-to-field ()
640 "Move to specified header field.
641
642The field is indicated by the previous keystroke (the last
643keystroke of the command) according to the list in the variable
644`mh-to-field-choices'.
645Create the field if it does not exist.
646Set the mark to point before moving."
647 (interactive)
648 (expand-abbrev)
649 (let ((target (cdr (or (assoc (char-to-string (logior last-input-char ?`))
650 mh-to-field-choices)
651 ;; also look for a char for version 4 compat
652 (assoc (logior last-input-char ?`)
653 mh-to-field-choices))))
654 (case-fold-search t))
655 (push-mark)
656 (cond ((mh-position-on-field target)
657 (let ((eol (point)))
658 (skip-chars-backward " \t")
659 (delete-region (point) eol))
660 (if (and (not (eq (logior last-input-char ?`) ?s))
661 (save-excursion
662 (backward-char 1)
663 (not (looking-at "[:,]"))))
664 (insert ", ")
665 (insert " ")))
666 (t
667 (if (mh-position-on-field "To:")
668 (forward-line 1))
669 (insert (format "%s \n" target))
670 (backward-char 1)))))
671
672;;;###mh-autoload
673(defun mh-yank-cur-msg ()
674 "Insert the current message into the draft buffer.
675
676It is often useful to insert a snippet of text from a letter that
677someone mailed to provide some context for your reply. This
678command does this by adding an attribution, yanking a portion of
679text from the message to which you're replying, and inserting
680`mh-ins-buf-prefix' (`> ') before each line.
681
682The attribution consists of the sender's name and email address
683followed by the content of the option
684`mh-extract-from-attribution-verb'.
685
686You can also turn on the option
687`mh-delete-yanked-msg-window-flag' to delete the window
688containing the original message after yanking it to make more
689room on your screen for your reply.
690
691You can control how the message to which you are replying is
692yanked into your reply using `mh-yank-behavior'.
693
694If this isn't enough, you can gain full control over the
695appearance of the included text by setting `mail-citation-hook'
696to a function that modifies it. For example, if you set this hook
697to `trivial-cite' (which is NOT part of Emacs), set
698`mh-yank-behavior' to \"Body and Header\" (see URL
699`http://shasta.cs.uiuc.edu/~lrclause/tc.html').
700
701Note that if `mail-citation-hook' is set, `mh-ins-buf-prefix' is
702not inserted. If the option `mh-yank-behavior' is set to one of
703the supercite flavors, the hook `mail-citation-hook' is ignored
704and `mh-ins-buf-prefix' is not inserted."
705 (interactive)
706 (if (and mh-sent-from-folder
707 (save-excursion (set-buffer mh-sent-from-folder) mh-show-buffer)
708 (save-excursion (set-buffer mh-sent-from-folder)
709 (get-buffer mh-show-buffer))
710 mh-sent-from-msg)
711 (let ((to-point (point))
712 (to-buffer (current-buffer)))
713 (set-buffer mh-sent-from-folder)
714 (if mh-delete-yanked-msg-window-flag
715 (delete-windows-on mh-show-buffer))
716 (set-buffer mh-show-buffer) ; Find displayed message
717 (let* ((from-attr (mh-extract-from-attribution))
718 (yank-region (mh-mark-active-p nil))
719 (mh-ins-str
720 (cond ((and yank-region
721 (or (eq 'supercite mh-yank-behavior)
722 (eq 'autosupercite mh-yank-behavior)
723 (eq t mh-yank-behavior)))
724 ;; supercite needs the full header
725 (concat
726 (buffer-substring (point-min) (mh-mail-header-end))
727 "\n"
728 (buffer-substring (region-beginning) (region-end))))
729 (yank-region
730 (buffer-substring (region-beginning) (region-end)))
731 ((or (eq 'body mh-yank-behavior)
732 (eq 'attribution mh-yank-behavior)
733 (eq 'autoattrib mh-yank-behavior))
734 (buffer-substring
735 (save-excursion
736 (goto-char (point-min))
737 (mh-goto-header-end 1)
738 (point))
739 (point-max)))
740 ((or (eq 'supercite mh-yank-behavior)
741 (eq 'autosupercite mh-yank-behavior)
742 (eq t mh-yank-behavior))
743 (buffer-substring (point-min) (point-max)))
744 (t
745 (buffer-substring (point) (point-max))))))
746 (set-buffer to-buffer)
747 (save-restriction
748 (narrow-to-region to-point to-point)
749 (insert (mh-filter-out-non-text mh-ins-str))
750 (goto-char (point-max)) ;Needed for sc-cite-original
751 (push-mark) ;Needed for sc-cite-original
752 (goto-char (point-min)) ;Needed for sc-cite-original
753 (mh-insert-prefix-string mh-ins-buf-prefix)
754 (when (or (eq 'attribution mh-yank-behavior)
755 (eq 'autoattrib mh-yank-behavior))
756 (insert from-attr)
757 (mh-identity-insert-attribution-verb nil)
758 (insert "\n\n"))
759 ;; If the user has selected a region, he has already "edited" the
760 ;; text, so leave the cursor at the end of the yanked text. In
761 ;; either case, leave a mark at the opposite end of the included
762 ;; text to make it easy to jump or delete to the other end of the
763 ;; text.
764 (push-mark)
765 (goto-char (point-max))
766 (if (null yank-region)
767 (mh-exchange-point-and-mark-preserving-active-mark)))))
768 (error "There is no current message")))
769
770\f
771
772;;; Support Routines
773
774(defun mh-auto-fill-for-letter ()
775 "Perform auto-fill for message.
776Header is treated specially by inserting a tab before continuation
777lines."
778 (if (mh-in-header-p)
779 (let ((fill-prefix "\t"))
780 (do-auto-fill))
781 (do-auto-fill)))
782
783(defun mh-filter-out-non-text (string)
784 "Return STRING but without adornments such as MIME buttons and smileys."
785 (with-temp-buffer
786 ;; Insert the string to filter
787 (insert string)
788 (goto-char (point-min))
789
790 ;; Remove the MIME buttons
791 (let ((can-move-forward t)
792 (in-button nil))
793 (while can-move-forward
794 (cond ((and (not (get-text-property (point) 'mh-data))
795 in-button)
796 (delete-region (1- (point)) (point))
797 (setq in-button nil))
798 ((get-text-property (point) 'mh-data)
799 (delete-region (point)
800 (save-excursion (forward-line) (point)))
801 (setq in-button t))
802 (t (setq can-move-forward (= (forward-line) 0))))))
803
804 ;; Return the contents without properties... This gets rid of emphasis
805 ;; and smileys
806 (buffer-substring-no-properties (point-min) (point-max))))
807
808(defun mh-current-fill-prefix ()
809 "Return the `fill-prefix' on the current line as a string."
810 (save-excursion
811 (beginning-of-line)
812 ;; This assumes that the major-mode sets up adaptive-fill-regexp
813 ;; correctly such as mh-letter-mode or sendmail.el's mail-mode. But
814 ;; perhaps I should use the variable and simply inserts its value here,
815 ;; and set it locally in a let scope. --psg
816 (if (re-search-forward adaptive-fill-regexp nil t)
817 (match-string 0)
818 "")))
819
820;;;###mh-autoload
821(defun mh-letter-next-header-field ()
822 "Cycle to the next header field.
823If we are at the last header field go to the start of the message
824body."
825 (let ((header-end (mh-mail-header-end)))
826 (cond ((>= (point) header-end) (goto-char (point-min)))
827 ((< (point) (progn
828 (beginning-of-line)
829 (re-search-forward mh-letter-header-field-regexp
d5dc8c56 830 (mh-line-end-position) t)
dda00b2c
BW
831 (point)))
832 (beginning-of-line))
833 (t (end-of-line)))
834 (cond ((re-search-forward mh-letter-header-field-regexp header-end t)
835 (if (mh-letter-skipped-header-field-p (match-string 1))
836 (mh-letter-next-header-field)
837 (mh-letter-skip-leading-whitespace-in-header-field)))
838 (t (goto-char header-end)
839 (forward-line)))))
840
dda00b2c
BW
841;;;###mh-autoload
842(defun mh-position-on-field (field &optional ignored)
843 "Move to the end of the FIELD in the header.
844Move to end of entire header if FIELD not found.
845Returns non-nil iff FIELD was found.
846The optional second arg is for pre-version 4 compatibility and is
847IGNORED."
848 (cond ((mh-goto-header-field field)
849 (mh-header-field-end)
850 t)
851 ((mh-goto-header-end 0)
852 nil)))
853
854(defun mh-letter-header-field-at-point ()
855 "Return the header field name at point.
856A symbol is returned whose name is the string obtained by
857downcasing the field name."
858 (save-excursion
859 (end-of-line)
860 (and (re-search-backward mh-letter-header-field-regexp nil t)
861 (intern (downcase (match-string 1))))))
862
863(defun mh-folder-expand-at-point ()
864 "Do folder name completion in Fcc header field."
865 (let* ((end (point))
866 (beg (mh-beginning-of-word))
867 (folder (buffer-substring beg end))
868 (leading-plus (and (> (length folder) 0) (equal (aref folder 0) ?+)))
869 (last-slash (mh-search-from-end ?/ folder))
870 (prefix (and last-slash (substring folder 0 last-slash)))
871 (choices (mapcar #'(lambda (x)
872 (list (cond (prefix (format "%s/%s" prefix x))
873 (leading-plus (format "+%s" x))
874 (t x))))
875 (mh-folder-completion-function folder nil t))))
876 (mh-complete-word folder choices beg end)))
877
878;;;###mh-autoload
879(defun mh-complete-word (word choices begin end)
880 "Complete WORD at from CHOICES.
881Any match found replaces the text from BEGIN to END."
882 (let ((completion (try-completion word choices))
883 (completions-buffer "*Completions*"))
884 (cond ((eq completion t)
885 (ignore-errors
886 (kill-buffer completions-buffer))
887 (message "Completed: %s" word))
888 ((null completion)
889 (ignore-errors
890 (kill-buffer completions-buffer))
891 (message "No completion for %s" word))
892 ((stringp completion)
893 (if (equal word completion)
894 (with-output-to-temp-buffer completions-buffer
895 (mh-display-completion-list (all-completions word choices)
08166ee9 896 word))
dda00b2c
BW
897 (ignore-errors
898 (kill-buffer completions-buffer))
899 (delete-region begin end)
900 (insert completion))))))
901
902(defun mh-file-is-vcard-p (file)
903 "Return t if FILE is a .vcf vcard."
904 (let ((case-fold-search t))
905 (and (stringp file)
906 (file-exists-p file)
907 (or (and (not (mh-have-file-command))
908 (not (null (string-match "\.vcf$" file))))
909 (string-equal "text/x-vcard" (mh-file-mime-type file))))))
910
a55f450f 911;;;###mh-autoload
dda00b2c
BW
912(defun mh-letter-toggle-header-field-display-button (event)
913 "Toggle header field display at location of EVENT.
914This function does the same thing as
915`mh-letter-toggle-header-field-display' except that it is
916callable from a mouse button."
917 (interactive "e")
918 (mh-do-at-event-location event
919 (mh-letter-toggle-header-field-display nil)))
920
dda00b2c
BW
921(defun mh-extract-from-attribution ()
922 "Extract phrase or comment from From header field."
923 (save-excursion
924 (if (not (mh-goto-header-field "From: "))
925 nil
926 (skip-chars-forward " ")
927 (cond
928 ((looking-at "\"\\([^\"\n]+\\)\" \\(<.+>\\)")
929 (format "%s %s " (match-string 1)(match-string 2)))
930 ((looking-at "\\([^<\n]+<.+>\\)$")
931 (format "%s " (match-string 1)))
932 ((looking-at "\\([^ ]+@[^ ]+\\) +(\\(.+\\))$")
933 (format "%s <%s> " (match-string 2)(match-string 1)))
934 ((looking-at " *\\(.+\\)$")
935 (format "%s " (match-string 1)))))))
936
937(defun mh-insert-prefix-string (mh-ins-string)
938 "Insert prefix string before each line in buffer.
939The inserted letter is cited using `sc-cite-original' if
940`mh-yank-behavior' is one of 'supercite or 'autosupercite.
941Otherwise, simply insert MH-INS-STRING before each line."
942 (goto-char (point-min))
943 (cond ((or (eq mh-yank-behavior 'supercite)
944 (eq mh-yank-behavior 'autosupercite))
945 (sc-cite-original))
946 (mail-citation-hook
947 (run-hooks 'mail-citation-hook))
948 (mh-yank-hooks ;old hook name
949 (run-hooks 'mh-yank-hooks))
950 (t
951 (or (bolp) (forward-line 1))
952 (while (< (point) (point-max))
953 (insert mh-ins-string)
954 (forward-line 1))
955 (goto-char (point-min))))) ;leave point like sc-cite-original
956
957(provide 'mh-letter)
958
959;; Local Variables:
960;; indent-tabs-mode: nil
961;; sentence-end-double-space: nil
962;; End:
963
a1ab640d 964;; arch-tag: 0548632c-aadb-4e3b-bb80-bbd62ff90bf3
dda00b2c 965;;; mh-letter.el ends here