Sync to HEAD
[bpt/emacs.git] / lisp / mail / mail-hist.el
CommitLineData
e8af40ee 1;;; mail-hist.el --- headers and message body history for outgoing mail
25e2c3c7 2
813f532d
RS
3;; Copyright (C) 1994 Free Software Foundation, Inc.
4
aeb4c63e 5;; Author: Karl Fogel <kfogel@red-bean.com>
813f532d 6;; Created: March, 1994
9081378e 7;; Keywords: mail, history
813f532d
RS
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
25e2c3c7
RS
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
25
813f532d
RS
26;;; Commentary:
27
813f532d
RS
28;; Thanks to Jim Blandy for mentioning ring.el. It saved a lot of
29;; time.
30;;
31;; To use this package, put it in a directory in your load-path, and
32;; put this in your .emacs file:
33;;
34;; (load "mail-hist" nil t)
35;;
36;; Or you could do it with autoloads and hooks in your .emacs:
37;;
38;; (add-hook 'mail-mode-hook 'mail-hist-define-keys)
39;; (add-hook 'mail-send-hook 'mail-hist-put-headers-into-history)
40;; (add-hook 'vm-mail-mode-hook 'mail-hist-define-keys) ;or rmail, etc
41;; (autoload 'mail-hist-define-keys "mail-hist")
42;; (autoload 'mail-hist-put-headers-into-history "mail-hist")
43;;
44;; Once it's installed, use M-p and M-n from mail headers to recover
45;; previous/next contents in the history for that header, or, in the
46;; body of the message, to recover previous/next text of the message.
47;; This only applies to outgoing mail -- mail-hist ignores received
48;; messages.
49;;
50;; Although repeated history requests do clear out the text from the
51;; previous request, an isolated request just inserts its text at
52;; point, so that you can mix the histories of different messages
53;; easily. This might be confusing at times, but there should be no
54;; problems that undo can't handle.
55\f
56;;; Code:
57(require 'ring)
43c2d6cf 58(require 'sendmail)
813f532d 59
0b5bb3ec
SE
60(defgroup mail-hist nil
61 "Headers and message body history for outgoing mail."
62 :prefix "mail-hist-"
63 :group 'mail)
64
813f532d
RS
65;;;###autoload
66(defun mail-hist-define-keys ()
67 "Define keys for accessing mail header history. For use in hooks."
68 (local-set-key "\M-p" 'mail-hist-previous-input)
69 (local-set-key "\M-n" 'mail-hist-next-input))
70
71;;;###autoload
25e2c3c7
RS
72(defun mail-hist-enable ()
73 (add-hook 'mail-mode-hook 'mail-hist-define-keys)
74 (add-hook 'mail-send-hook 'mail-hist-put-headers-into-history))
813f532d
RS
75
76(defvar mail-hist-header-ring-alist nil
77 "Alist of form (header-name . history-ring).
78Used for knowing which history list to look in when the user asks for
79previous/next input.")
80
0b5bb3ec 81(defcustom mail-hist-history-size (or kill-ring-max 1729)
813f532d 82 "*The maximum number of elements in a mail field's history.
0b5bb3ec
SE
83Oldest elements are dumped first."
84 :type 'integer
85 :group 'mail-hist)
813f532d
RS
86
87;;;###autoload
0b5bb3ec
SE
88(defcustom mail-hist-keep-history t
89 "*Non-nil means keep a history for headers and text of outgoing mail."
90 :type 'boolean
91 :group 'mail-hist)
813f532d
RS
92
93;; For handling repeated history requests
94(defvar mail-hist-access-count 0)
95
96(defvar mail-hist-last-bounds nil)
97;; (start . end) A pair indicating the buffer positions delimiting the
98;; last inserted history, so it can be replaced by a new input if the
99;; command is repeated.
100
101(defvar mail-hist-header-regexp "^[^:]*:"
102 "Regular expression for matching headers in a mail message.")
103\f
104(defsubst mail-hist-current-header-name ()
105 "Get name of mail header point is currently in, without the colon.
106Returns nil if not in a header, implying that point is in the body of
107the message."
91245cb0 108 (if (>= (point) (mail-text-start))
813f532d
RS
109 nil ; then we are in the body of the message
110 (save-excursion
43c2d6cf
RS
111 (let* ((body-start
112 (mail-text-start))
813f532d
RS
113 (name-start
114 (re-search-backward mail-hist-header-regexp nil t))
115 (name-end
116 (prog2 (search-forward ":" body-start t) (1- (point)))))
117 (and
118 name-start
119 name-end
384bc96c 120 (downcase (buffer-substring-no-properties name-start name-end)))))))
813f532d
RS
121
122(defsubst mail-hist-forward-header (count)
123 "Move forward COUNT headers (backward if COUNT is negative).
124If last/first header is encountered first, stop there and returns
a1506d29 125nil.
25e2c3c7
RS
126
127Places point on the first non-whitespace on the line following the
128colon after the header name, or on the second space following that if
129the header is empty."
43c2d6cf 130 (let ((boundary (mail-header-end)))
25e2c3c7 131 (and
43c2d6cf 132 (> boundary 0)
25e2c3c7
RS
133 (let ((unstopped t))
134 (setq boundary (save-excursion
135 (goto-char boundary)
136 (beginning-of-line)
137 (1- (point))))
138 (if (> count 0)
139 (while (> count 0)
140 (setq
141 unstopped
142 (re-search-forward mail-hist-header-regexp boundary t))
143 (setq count (1- count)))
144 ;; because the current header will match too.
145 (setq count (1- count))
146 ;; count is negative
147 (while (< count 0)
148 (setq
149 unstopped
150 (re-search-backward mail-hist-header-regexp nil t))
151 (setq count (1+ count)))
152 ;; we end up behind the header, so must move to the front
153 (re-search-forward mail-hist-header-regexp boundary t))
154 ;; Now we are right after the colon
155 (and (looking-at "\\s-") (forward-char 1))
156 ;; return nil if didn't go as far as asked, otherwise point
157 unstopped))))
813f532d
RS
158
159(defsubst mail-hist-beginning-of-header ()
160 "Move to the start of the current header.
161The start of the current header is defined as one space after the
162colon, or just after the colon if it is not followed by whitespace."
163 ;; this is slick as all heck:
164 (if (mail-hist-forward-header -1)
165 (mail-hist-forward-header 1)
166 (mail-hist-forward-header 1)
167 (mail-hist-forward-header -1)))
168
169(defsubst mail-hist-current-header-contents ()
170 "Get the contents of the mail header in which point is located."
171 (save-excursion
172 (mail-hist-beginning-of-header)
173 (let ((start (point)))
174 (or (mail-hist-forward-header 1)
3ec353b1 175 (goto-char (mail-header-end)))
813f532d
RS
176 (beginning-of-line)
177 (buffer-substring start (1- (point))))))
178
179(defsubst mail-hist-get-header-ring (header)
180 "Get HEADER's history ring, or nil if none.
181HEADER is a string without the colon."
9081378e 182 (setq header (downcase header))
813f532d
RS
183 (cdr (assoc header mail-hist-header-ring-alist)))
184
0b5bb3ec 185(defcustom mail-hist-text-size-limit nil
25e2c3c7 186 "*Don't store any header or body with more than this many characters.
0b5bb3ec
SE
187If the value is nil, that means no limit on text size."
188 :type '(choice (const nil) integer)
189 :group 'mail-hist)
5f98a1d8 190
25e2c3c7 191(defun mail-hist-text-too-long-p (text)
43c4b570 192 "Return non-nil if TEXT's length exceeds `mail-hist-text-size-limit'."
25e2c3c7
RS
193 (if mail-hist-text-size-limit
194 (> (length text) mail-hist-text-size-limit)))
5f98a1d8 195
813f532d 196(defsubst mail-hist-add-header-contents-to-ring (header &optional contents)
25e2c3c7 197 "Add the contents of HEADER to the header history ring.
813f532d 198Optional argument CONTENTS is a string which will be the contents
25e2c3c7 199\(instead of whatever's found in the header)."
9081378e 200 (setq header (downcase header))
5f98a1d8
RS
201 (let ((ctnts (or contents (mail-hist-current-header-contents)))
202 (ring (cdr (assoc header mail-hist-header-ring-alist))))
25e2c3c7 203 (if (mail-hist-text-too-long-p ctnts) (setq ctnts ""))
813f532d
RS
204 (or ring
205 ;; If the ring doesn't exist, we'll have to make it and add it
206 ;; to the mail-header-ring-alist:
207 (prog1
208 (setq ring (make-ring mail-hist-history-size))
209 (setq mail-hist-header-ring-alist
210 (cons (cons header ring) mail-hist-header-ring-alist))))
5f98a1d8 211 (ring-insert ring ctnts)))
813f532d
RS
212
213;;;###autoload
214(defun mail-hist-put-headers-into-history ()
a1506d29 215 "Put headers and contents of this message into mail header history.
813f532d
RS
216Each header has its own independent history, as does the body of the
217message.
218
a1506d29 219This function normally would be called when the message is sent."
813f532d
RS
220 (and
221 mail-hist-keep-history
019434e1 222 (save-excursion
813f532d
RS
223 (goto-char (point-min))
224 (while (mail-hist-forward-header 1)
225 (mail-hist-add-header-contents-to-ring
226 (mail-hist-current-header-name)))
227 (let ((body-contents
43c2d6cf 228 (buffer-substring (mail-text-start) (point-max))))
813f532d 229 (mail-hist-add-header-contents-to-ring "body" body-contents)))))
25e2c3c7 230
aeb4c63e
KF
231
232\f
233(defun mail-hist-retrieve-and-insert (header access-func)
234 "Helper for `mail-hist-previous-input' and `mail-hist-next-input'."
9081378e 235 (setq header (downcase header))
813f532d
RS
236 (let* ((ring (cdr (assoc header mail-hist-header-ring-alist)))
237 (len (ring-length ring))
238 (repeat (eq last-command 'mail-hist-input-access)))
239 (if repeat
240 (setq mail-hist-access-count
aeb4c63e 241 (funcall access-func mail-hist-access-count len))
813f532d
RS
242 (setq mail-hist-access-count 0))
243 (if (null ring)
244 (progn
245 (ding)
246 (message "No history for \"%s\"." header))
247 (if (ring-empty-p ring)
e8af40ee 248 (error "\"%s\" ring is empty" header)
25e2c3c7 249 (and repeat
813f532d 250 (delete-region (car mail-hist-last-bounds)
25e2c3c7 251 (cdr mail-hist-last-bounds)))
813f532d
RS
252 (let ((start (point)))
253 (insert (ring-ref ring mail-hist-access-count))
254 (setq mail-hist-last-bounds (cons start (point)))
aeb4c63e
KF
255 (setq this-command 'mail-hist-input-access)
256 ;; Special case: when flipping through message bodies, it's
257 ;; usually most useful for point to stay at the top. This
258 ;; is because the unique part of a message in a thread is
259 ;; more likely to be at the top than the bottom, as the
260 ;; bottom is often just the same quoted history for every
261 ;; message in the thread, differing only in indentation
262 ;; level.
a1506d29 263 (if (string-equal header "body")
aeb4c63e
KF
264 (goto-char start)))
265 ))))
266
267
268(defun mail-hist-previous-input (header)
269 "Insert the previous contents of this mail header or message body.
270Moves back through the history of sent mail messages. Each header has
271its own independent history, as does the body of the message.
272
273The history only contains the contents of outgoing messages, not
274received mail."
275 (interactive (list (or (mail-hist-current-header-name) "body")))
276 (mail-hist-retrieve-and-insert header 'ring-plus1))
277
813f532d
RS
278
279(defun mail-hist-next-input (header)
280 "Insert next contents of this mail header or message body.
281Moves back through the history of sent mail messages. Each header has
282its own independent history, as does the body of the message.
283
284Although you can do so, it does not make much sense to call this
285without having called `mail-hist-previous-header' first
05f829ce 286\(\\[mail-hist-previous-header]).
813f532d
RS
287
288The history only contains the contents of outgoing messages, not
289received mail."
290 (interactive (list (or (mail-hist-current-header-name) "body")))
aeb4c63e
KF
291 (mail-hist-retrieve-and-insert header 'ring-minus1))
292
813f532d
RS
293\f
294(provide 'mail-hist)
295
6b61353c 296;;; arch-tag: 9ff9a07c-9dca-482d-ba87-54f42778559d
e8af40ee 297;;; mail-hist.el ends here