38412
|
1 ;;; mailabbrev.el --- abbrev-expansion of mail aliases
|
1148
|
2
|
49171
|
3 ;; Copyright (C) 1985, 86, 87, 92, 93, 96, 1997, 2000, 2002, 2003
|
28803
|
4 ;; Free Software Foundation, Inc.
|
1148
|
5
|
27589
|
6 ;; Author: Jamie Zawinski <jwz@lucid.com>, now <jwz@jwz.org>
|
|
7 ;; Maintainer: FSF
|
1148
|
8 ;; Created: 19 Oct 90
|
|
9 ;; Keywords: mail
|
|
10
|
14169
|
11 ;; This file is part of GNU Emacs.
|
459
|
12
|
14169
|
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.
|
459
|
17
|
14169
|
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.
|
459
|
22
|
14169
|
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., 59 Temple Place - Suite 330,
|
|
26 ;; Boston, MA 02111-1307, USA.
|
459
|
27
|
1148
|
28 ;;; Commentary:
|
|
29
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
30 ;; This file ensures that, when the point is in a To:, CC:, BCC:, or From:
|
14169
|
31 ;; field, word-abbrevs are defined for each of your mail aliases. These
|
|
32 ;; aliases will be defined from your .mailrc file (or the file specified by
|
52685
|
33 ;; `mail-personal-alias-file') if it exists. Your mail aliases will
|
14169
|
34 ;; expand any time you type a word-delimiter at the end of an abbreviation.
|
|
35 ;;
|
|
36 ;; What you see is what you get: if mailabbrev is in use when you type
|
|
37 ;; a name, and the name does not expand, you know it is not an abbreviation.
|
|
38 ;; However, if you yank abbreviations into the headers
|
|
39 ;; in a way that bypasses the check for abbreviations,
|
|
40 ;; they are expanded (but not visibly) when you send the message.
|
|
41 ;;
|
|
42 ;; Your mail alias abbrevs will be in effect only when the point is in an
|
|
43 ;; appropriate header field. When in the body of the message, or other
|
|
44 ;; header fields, the mail aliases will not expand. Rather, the normal
|
44669
|
45 ;; mode-specific abbrev table will be used if
|
14169
|
46 ;; defined. So if you use mail-mode specific abbrevs, this code will not
|
|
47 ;; adversely affect you. You can control which header fields the abbrevs
|
|
48 ;; are used in by changing the variable mail-abbrev-mode-regexp.
|
|
49 ;;
|
|
50 ;; If auto-fill mode is on, abbrevs will wrap at commas instead of at word
|
|
51 ;; boundaries; also, header continuation-lines will be properly indented.
|
|
52 ;;
|
28803
|
53 ;; You can also insert a mail alias with mail-abbrev-insert-alias
|
14169
|
54 ;; (bound to C-c C-a), which prompts you for an alias (with completion)
|
|
55 ;; and inserts its expansion at point.
|
|
56 ;;
|
|
57 ;; This file fixes a bug in the old system which prohibited your .mailrc
|
|
58 ;; file from having lines like
|
|
59 ;;
|
|
60 ;; alias someone "John Doe <doe@quux.com>"
|
|
61 ;;
|
|
62 ;; That is, if you want an address to have embedded spaces, simply surround it
|
|
63 ;; with double-quotes. This is necessary because the format of the .mailrc
|
|
64 ;; file bogusly uses spaces as address delimiters. The following line defines
|
|
65 ;; an alias which expands to three addresses:
|
|
66 ;;
|
|
67 ;; alias foobar addr-1 addr-2 "address three <addr-3>"
|
|
68 ;;
|
|
69 ;; (This is bogus because mail-delivery programs want commas, not spaces,
|
|
70 ;; but that's what the file format is, so we have to live with it.)
|
|
71 ;;
|
|
72 ;; If you like, you can call the function define-mail-abbrev to define your
|
|
73 ;; mail aliases instead of using a .mailrc file. When you call it in this
|
|
74 ;; way, addresses are separated by commas.
|
|
75 ;;
|
|
76 ;; CAVEAT: This works on most Sun systems; I have been told that some versions
|
|
77 ;; of /bin/mail do not understand double-quotes in the .mailrc file. So you
|
|
78 ;; should make sure your version does before including verbose addresses like
|
|
79 ;; this. One solution to this, if you are on a system whose /bin/mail doesn't
|
|
80 ;; work that way, (and you still want to be able to /bin/mail to send mail in
|
|
81 ;; addition to emacs) is to define minimal aliases (without full names) in
|
|
82 ;; your .mailrc file, and use define-mail-abbrev to redefine them when sending
|
|
83 ;; mail from emacs; this way, mail sent from /bin/mail will work, and mail
|
|
84 ;; sent from emacs will be pretty.
|
|
85 ;;
|
|
86 ;; Aliases in the mailrc file may be nested. If you define aliases like
|
|
87 ;; alias group1 fred ethel
|
|
88 ;; alias group2 larry curly moe
|
|
89 ;; alias everybody group1 group2
|
|
90 ;; Then when you type "everybody" on the To: line, it will be expanded to
|
|
91 ;; fred, ethyl, larry, curly, moe
|
|
92 ;;
|
|
93 ;; Aliases may also contain forward references; the alias of "everybody" can
|
|
94 ;; precede the aliases of "group1" and "group2".
|
|
95 ;;
|
|
96 ;; This code also understands the "source" .mailrc command, for reading
|
|
97 ;; aliases from some other file as well.
|
|
98 ;;
|
|
99 ;; Aliases may contain hyphens, as in "alias foo-bar foo@bar"; word-abbrevs
|
|
100 ;; normally cannot contain hyphens, but this code works around that for the
|
|
101 ;; specific case of mail-alias word-abbrevs.
|
|
102 ;;
|
|
103 ;; To read in the contents of another .mailrc-type file from emacs, use the
|
|
104 ;; command Meta-X merge-mail-abbrevs. The rebuild-mail-abbrevs command is
|
|
105 ;; similar, but will delete existing aliases first.
|
|
106 ;;
|
|
107 ;; If you would like your aliases to be expanded when you type M-> or ^N to
|
|
108 ;; move out of the mail-header into the message body (instead of having to
|
|
109 ;; type SPC at the end of the abbrev before moving away) then you can do
|
|
110 ;;
|
|
111 ;; (add-hook
|
34921
|
112 ;; 'mail-mode-hook
|
30888
|
113 ;; (lambda ()
|
49171
|
114 ;; (define-key mail-mode-map [remap next-line] 'mail-abbrev-next-line)
|
|
115 ;; (define-key mail-mode-map [remap end-of-buffer] 'mail-abbrev-end-of-buffer)))
|
14169
|
116 ;;
|
|
117 ;; If you want multiple addresses separated by a string other than ", " then
|
|
118 ;; you can set the variable mail-alias-separator-string to it. This has to
|
|
119 ;; be a comma bracketed by whitespace if you want any kind of reasonable
|
|
120 ;; behaviour.
|
|
121 ;;
|
|
122 ;; Thanks to Harald Hanche-Olsen, Michael Ernst, David Loeffler, and
|
|
123 ;; Noah Friedman for suggestions and bug reports.
|
1432
|
124
|
34921
|
125 ;; To use this package, do (add-hook 'mail-mode-hook 'mail-abbrevs-setup).
|
459
|
126
|
1148
|
127 ;;; Code:
|
|
128
|
43136
|
129 (eval-when-compile
|
|
130 (require 'sendmail))
|
459
|
131
|
20097
|
132 (defgroup mail-abbrev nil
|
|
133 "Expand mail aliases as abbrevs, in certain mail headers."
|
|
134 :group 'abbrev-mode)
|
|
135
|
|
136 (defcustom mail-abbrevs-mode nil
|
|
137 "*Non-nil means expand mail aliases as abbrevs, in certain message headers."
|
|
138 :type 'boolean
|
|
139 :group 'mail-abbrev
|
|
140 :require 'mailabbrev
|
30888
|
141 :set (lambda (symbol value)
|
|
142 (setq mail-abbrevs-mode value)
|
|
143 (if value (mail-abbrevs-enable) (mail-abbrevs-disable)))
|
21670
|
144 :initialize 'custom-initialize-default
|
|
145 :version "20.3")
|
20097
|
146
|
|
147 (defcustom mail-abbrevs-only nil
|
|
148 "*Non-nil means only mail abbrevs should expand automatically.
|
|
149 Other abbrevs expand only when you explicitly use `expand-abbrev'."
|
|
150 :type 'boolean
|
|
151 :group 'mail-abbrev)
|
|
152
|
459
|
153 ;; originally defined in sendmail.el - used to be an alist, now is a table.
|
1432
|
154 (defvar mail-abbrevs nil
|
598
|
155 "Word-abbrev table of mail address aliases.
|
459
|
156 If this is nil, it means the aliases have not yet been initialized and
|
|
157 should be read from the .mailrc file. (This is distinct from there being
|
|
158 no aliases, which is represented by this being a table with no entries.)")
|
|
159
|
14800
|
160 (defvar mail-abbrev-modtime nil
|
|
161 "The modification time of your mail alias file when it was last examined.")
|
|
162
|
|
163 (defun mail-abbrevs-sync-aliases ()
|
52371
d6c91e697cdc
(mail-abbrevs-sync-aliases): Do nothing if mail-personal-alias-file is nil.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
164 (when mail-personal-alias-file
|
d6c91e697cdc
(mail-abbrevs-sync-aliases): Do nothing if mail-personal-alias-file is nil.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
165 (if (file-exists-p mail-personal-alias-file)
|
d6c91e697cdc
(mail-abbrevs-sync-aliases): Do nothing if mail-personal-alias-file is nil.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
166 (let ((modtime (nth 5 (file-attributes mail-personal-alias-file))))
|
d6c91e697cdc
(mail-abbrevs-sync-aliases): Do nothing if mail-personal-alias-file is nil.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
167 (if (not (equal mail-abbrev-modtime modtime))
|
d6c91e697cdc
(mail-abbrevs-sync-aliases): Do nothing if mail-personal-alias-file is nil.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
168 (progn
|
d6c91e697cdc
(mail-abbrevs-sync-aliases): Do nothing if mail-personal-alias-file is nil.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
169 (setq mail-abbrev-modtime modtime)
|
d6c91e697cdc
(mail-abbrevs-sync-aliases): Do nothing if mail-personal-alias-file is nil.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
170 (build-mail-abbrevs)))))))
|
14800
|
171
|
474
|
172 ;;;###autoload
|
1432
|
173 (defun mail-abbrevs-setup ()
|
14761
|
174 "Initialize use of the `mailabbrev' package."
|
1432
|
175 (if (and (not (vectorp mail-abbrevs))
|
10328
|
176 (file-exists-p mail-personal-alias-file))
|
14800
|
177 (progn
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
178 (setq mail-abbrev-modtime
|
14800
|
179 (nth 5 (file-attributes mail-personal-alias-file)))
|
|
180 (build-mail-abbrevs)))
|
|
181 (mail-abbrevs-sync-aliases)
|
11059
|
182 (add-hook 'pre-abbrev-expand-hook 'sendmail-pre-abbrev-expand-hook
|
|
183 nil t)
|
459
|
184 (abbrev-mode 1))
|
|
185
|
20097
|
186 (defun mail-abbrevs-enable ()
|
34921
|
187 (add-hook 'mail-mode-hook 'mail-abbrevs-setup))
|
20097
|
188
|
|
189 (defun mail-abbrevs-disable ()
|
|
190 "Turn off use of the `mailabbrev' package."
|
34921
|
191 (remove-hook 'mail-mode-hook 'mail-abbrevs-setup)
|
20097
|
192 (abbrev-mode (if (default-value 'abbrev-mode) 1 -1)))
|
|
193
|
598
|
194 ;;;###autoload
|
1432
|
195 (defun build-mail-abbrevs (&optional file recursivep)
|
10328
|
196 "Read mail aliases from personal mail alias file and set `mail-abbrevs'.
|
|
197 By default this is the file specified by `mail-personal-alias-file'."
|
|
198 (setq file (expand-file-name (or file mail-personal-alias-file)))
|
1432
|
199 (if (vectorp mail-abbrevs)
|
459
|
200 nil
|
1432
|
201 (setq mail-abbrevs nil)
|
|
202 (define-abbrev-table 'mail-abbrevs '()))
|
606
|
203 (message "Parsing %s..." file)
|
459
|
204 (let ((buffer nil)
|
|
205 (obuf (current-buffer)))
|
|
206 (unwind-protect
|
|
207 (progn
|
20219
|
208 (setq buffer (generate-new-buffer " mailrc"))
|
598
|
209 (buffer-disable-undo buffer)
|
459
|
210 (set-buffer buffer)
|
|
211 (cond ((get-file-buffer file)
|
|
212 (insert (save-excursion
|
|
213 (set-buffer (get-file-buffer file))
|
|
214 (buffer-substring (point-min) (point-max)))))
|
|
215 ((not (file-exists-p file)))
|
|
216 (t (insert-file-contents file)))
|
|
217 ;; Don't lose if no final newline.
|
|
218 (goto-char (point-max))
|
|
219 (or (eq (preceding-char) ?\n) (newline))
|
|
220 (goto-char (point-min))
|
|
221 ;; Delete comments from the file
|
|
222 (while (search-forward "# " nil t)
|
|
223 (let ((p (- (point) 2)))
|
|
224 (end-of-line)
|
|
225 (delete-region p (point))))
|
|
226 (goto-char (point-min))
|
|
227 ;; handle "\\\n" continuation lines
|
|
228 (while (not (eobp))
|
|
229 (end-of-line)
|
|
230 (if (= (preceding-char) ?\\)
|
|
231 (progn (delete-char -1) (delete-char 1) (insert ?\ ))
|
|
232 (forward-char 1)))
|
|
233 (goto-char (point-min))
|
|
234 (while (re-search-forward
|
907
|
235 "^\\(a\\(lias\\)?\\|g\\(roup\\)?\\|source\\)[ \t]+" nil t)
|
459
|
236 (beginning-of-line)
|
|
237 (if (looking-at "source[ \t]+\\([^ \t\n]+\\)")
|
|
238 (progn
|
|
239 (end-of-line)
|
1432
|
240 (build-mail-abbrevs
|
3945
7a8d0a08eac7
(build-mail-abbrevs): Do substitute-in-file-name on the abbrev, for `source'.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
241 (substitute-in-file-name
|
7939
338a91733ff9
(build-mail-abbrevs): Pass a recursivep argument in recursive call.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
242 (buffer-substring (match-beginning 1) (match-end 1)))
|
338a91733ff9
(build-mail-abbrevs): Pass a recursivep argument in recursive call.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
243 t))
|
459
|
244 (re-search-forward "[ \t]+\\([^ \t\n]+\\)")
|
|
245 (let* ((name (buffer-substring
|
|
246 (match-beginning 1) (match-end 1)))
|
|
247 (start (progn (skip-chars-forward " \t") (point))))
|
|
248 (end-of-line)
|
|
249 ; (message "** %s \"%s\"" name (buffer-substring start (point)))(sit-for 1)
|
3742
|
250 (define-mail-abbrev
|
459
|
251 name
|
3742
|
252 (buffer-substring start (point))
|
|
253 t))))
|
459
|
254 ;; Resolve forward references in .mailrc file.
|
|
255 ;; This would happen automatically before the first abbrev was
|
|
256 ;; expanded, but why not do it now.
|
|
257 (or recursivep (mail-resolve-all-aliases))
|
1432
|
258 mail-abbrevs)
|
459
|
259 (if buffer (kill-buffer buffer))
|
|
260 (set-buffer obuf)))
|
606
|
261 (message "Parsing %s... done" file))
|
459
|
262
|
627
|
263 (defvar mail-alias-separator-string ", "
|
459
|
264 "*A string inserted between addresses in multi-address mail aliases.
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
265 This has to contain a comma, so \", \" is a reasonable value. You might
|
459
|
266 also want something like \",\\n \" to get each address on its own line.")
|
|
267
|
3742
|
268 ;; define-mail-abbrev sets this flag, which causes mail-resolve-all-aliases
|
459
|
269 ;; to be called before expanding abbrevs if it's necessary.
|
|
270 (defvar mail-abbrev-aliases-need-to-be-resolved t)
|
|
271
|
1432
|
272 ;; originally defined in mailalias.el ; build-mail-abbrevs calls this with
|
459
|
273 ;; stuff parsed from the .mailrc file.
|
|
274 ;;
|
474
|
275 ;;;###autoload
|
3742
|
276 (defun define-mail-abbrev (name definition &optional from-mailrc-file)
|
11059
|
277 "Define NAME as a mail alias abbrev that translates to DEFINITION.
|
627
|
278 If DEFINITION contains multiple addresses, separate them with commas."
|
1432
|
279 ;; When this is called from build-mail-abbrevs, the third argument is
|
459
|
280 ;; true, and we do some evil space->comma hacking like /bin/mail does.
|
|
281 (interactive "sDefine mail alias: \nsDefine %s as mail alias for: ")
|
|
282 ;; Read the defaults first, if we have not done so.
|
1432
|
283 (if (vectorp mail-abbrevs)
|
459
|
284 nil
|
1432
|
285 (setq mail-abbrevs nil)
|
|
286 (define-abbrev-table 'mail-abbrevs '())
|
10328
|
287 (if (file-exists-p mail-personal-alias-file)
|
1432
|
288 (build-mail-abbrevs)))
|
459
|
289 ;; strip garbage from front and end
|
|
290 (if (string-match "\\`[ \t\n,]+" definition)
|
|
291 (setq definition (substring definition (match-end 0))))
|
|
292 (if (string-match "[ \t\n,]+\\'" definition)
|
|
293 (setq definition (substring definition 0 (match-beginning 0))))
|
8215
|
294 (let* ((result '())
|
|
295 (L (length definition))
|
|
296 (start (if (> L 0) 0))
|
|
297 end)
|
459
|
298 (while start
|
|
299 ;; If we're reading from the mailrc file, then addresses are delimited
|
|
300 ;; by spaces, and addresses with embedded spaces must be surrounded by
|
627
|
301 ;; double-quotes. Otherwise, addresses are separated by commas.
|
459
|
302 (if from-mailrc-file
|
|
303 (if (eq ?\" (aref definition start))
|
|
304 (setq start (1+ start)
|
|
305 end (string-match "\"[ \t,]*" definition start))
|
8215
|
306 (setq end (string-match "[ \t,]+" definition start)))
|
|
307 (setq end (string-match "[ \t\n,]*,[ \t\n,]*" definition start)))
|
59349
|
308 (let ((tem (substring definition start end)))
|
|
309 ;; Advance the loop past this address.
|
|
310 (setq start (and end
|
|
311 (/= (match-end 0) L)
|
|
312 (match-end 0)))
|
|
313 ;; If the full name contains a problem character, quote it.
|
|
314 (when (string-match "\\(.+?\\)[ \t]*\\(<.*>\\)" tem)
|
|
315 (if (string-match "[^- !#$%&'*+/0-9=?A-Za-z^_`{|}~]"
|
|
316 (match-string 1 tem))
|
|
317 (setq tem (replace-regexp-in-string
|
|
318 "\\(.+?\\)[ \t]*\\(<.*>\\)" "\"\\1\" \\2"
|
|
319 tem))))
|
|
320 (push tem result)))
|
459
|
321 (setq definition (mapconcat (function identity)
|
|
322 (nreverse result)
|
627
|
323 mail-alias-separator-string)))
|
459
|
324 (setq mail-abbrev-aliases-need-to-be-resolved t)
|
|
325 (setq name (downcase name))
|
1432
|
326 ;; use an abbrev table instead of an alist for mail-abbrevs.
|
459
|
327 (let ((abbrevs-changed abbrevs-changed)) ; protect this from being changed.
|
43268
|
328 (define-abbrev mail-abbrevs name definition 'mail-abbrev-expand-hook 0 t)))
|
459
|
329
|
|
330
|
|
331 (defun mail-resolve-all-aliases ()
|
|
332 "Resolve all forward references in the mail aliases table."
|
|
333 (if mail-abbrev-aliases-need-to-be-resolved
|
|
334 (progn
|
|
335 ;; (message "Resolving mail aliases...")
|
1432
|
336 (if (vectorp mail-abbrevs)
|
|
337 (mapatoms (function mail-resolve-all-aliases-1) mail-abbrevs))
|
459
|
338 (setq mail-abbrev-aliases-need-to-be-resolved nil)
|
|
339 ;; (message "Resolving mail aliases... done.")
|
|
340 )))
|
|
341
|
717
|
342 (defun mail-resolve-all-aliases-1 (sym &optional so-far)
|
|
343 (if (memq sym so-far)
|
|
344 (error "mail alias loop detected: %s"
|
|
345 (mapconcat 'symbol-name (cons sym so-far) " <- ")))
|
459
|
346 (let ((definition (and (boundp sym) (symbol-value sym))))
|
|
347 (if definition
|
|
348 (let ((result '())
|
|
349 (start 0))
|
|
350 (while start
|
|
351 (let ((end (string-match "[ \t\n]*,[, \t\n]*" definition start)))
|
|
352 (setq result (cons (substring definition start end) result)
|
|
353 start (and end (match-end 0)))))
|
|
354 (setq definition
|
|
355 (mapconcat (function (lambda (x)
|
|
356 (or (mail-resolve-all-aliases-1
|
12444
|
357 (intern-soft (downcase x) mail-abbrevs)
|
717
|
358 (cons sym so-far))
|
459
|
359 x)))
|
|
360 (nreverse result)
|
627
|
361 mail-alias-separator-string))
|
459
|
362 (set sym definition))))
|
|
363 (symbol-value sym))
|
|
364
|
|
365
|
627
|
366 (defun mail-abbrev-expand-hook ()
|
11059
|
367 "For use as the fourth arg to `define-abbrev'.
|
|
368 After expanding a mail-abbrev, if Auto Fill mode is on and we're past the
|
|
369 fill-column, break the line at the previous comma, and indent the next line."
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
370 ;; Disable abbrev mode to avoid recursion in indent-relative expanding
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
371 ;; part of the abbrev expansion as an abbrev itself.
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
372 (let ((abbrev-mode nil))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
373 (save-excursion
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
374 (let ((p (point))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
375 bol comma fp)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
376 (beginning-of-line)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
377 (setq bol (point))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
378 (goto-char p)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
379 (while (and auto-fill-function
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
380 (>= (current-column) fill-column)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
381 (search-backward "," bol t))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
382 (setq comma (point))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
383 (forward-char 1) ; Now we are just past the comma.
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
384 (insert "\n")
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
385 (delete-horizontal-space)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
386 (setq p (point))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
387 (indent-relative)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
388 (setq fp (buffer-substring p (point)))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
389 ;; Go to the end of the new line.
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
390 (end-of-line)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
391 (if (> (current-column) fill-column)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
392 ;; It's still too long; do normal auto-fill.
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
393 (let ((fill-prefix (or fp "\t")))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
394 (do-auto-fill)))
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
395 ;; Resume the search.
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
396 (goto-char comma)
|
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
397 )))))
|
598
|
398
|
|
399 ;;; Syntax tables and abbrev-expansion
|
459
|
400
|
15293
1343afeec307
(mail-abbrev-expand-hook): Disable abbrev mode temporarily while working,
Roland McGrath <roland@gnu.org>
diff
changeset
|
401 (defvar mail-abbrev-mode-regexp
|
5559
|
402 "^\\(Resent-\\)?\\(To\\|From\\|CC\\|BCC\\|Reply-to\\):"
|
11059
|
403 "*Regexp to select mail-headers in which mail abbrevs should be expanded.
|
10776
|
404 This string will be handed to `looking-at' with point at the beginning
|
459
|
405 of the current line; if it matches, abbrev mode will be turned on, otherwise
|
|
406 it will be turned off. (You don't need to worry about continuation lines.)
|
|
407 This should be set to match those mail fields in which you want abbreviations
|
|
408 turned on.")
|
|
409
|
43136
|
410 (defvar mail-abbrev-syntax-table nil
|
13258
|
411 "The syntax-table used for abbrev-expansion purposes.
|
|
412 This is not actually made the current syntax table of the buffer, but
|
|
413 simply controls the set of characters which may be a part of the name
|
43136
|
414 of a mail alias. The value is set up, buffer-local, when first needed.")
|
598
|
415
|
44118
|
416 (defun mail-abbrev-make-syntax-table ()
|
|
417 (make-local-variable 'mail-abbrev-syntax-table)
|
|
418 (unless mail-abbrev-syntax-table
|
44393
6ae0e3db6a85
(mail-abbrev-make-syntax-table): Use (syntax-table), not old-syntax-table.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
419 (let ((tab (copy-syntax-table (syntax-table)))
|
44118
|
420 (_ (aref (standard-syntax-table) ?_))
|
|
421 (w (aref (standard-syntax-table) ?w)))
|
|
422 (map-char-table
|
|
423 (function (lambda (key value)
|
46354
|
424 (if (null value)
|
|
425 ;; Fetch the inherited value
|
|
426 (setq value (aref tab key)))
|
44118
|
427 (if (equal value _)
|
|
428 (set-char-table-range tab key w))))
|
|
429 tab)
|
|
430 (modify-syntax-entry ?@ "w" tab)
|
47573
29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
431 (modify-syntax-entry ?% "w" tab)
|
29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
432 (modify-syntax-entry ?! "w" tab)
|
29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
433 (modify-syntax-entry ?. "w" tab)
|
29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
434 (modify-syntax-entry ?_ "w" tab)
|
29a49406ad9d
(mail-abbrev-make-syntax-table): Give %!._- word constituent syntax.
Markus Rost <rost@math.uni-bielefeld.de>
diff
changeset
|
435 (modify-syntax-entry ?- "w" tab)
|
44118
|
436 (setq mail-abbrev-syntax-table tab))))
|
459
|
437
|
598
|
438 (defun mail-abbrev-in-expansion-header-p ()
|
|
439 "Whether point is in a mail-address header field."
|
|
440 (let ((case-fold-search t))
|
|
441 (and ;;
|
|
442 ;; we are on an appropriate header line...
|
|
443 (save-excursion
|
39566
|
444 (unless (eobp) (forward-char 1))
|
|
445 (re-search-backward "^[^ \t]" nil 'move)
|
598
|
446 ;; are we at the front of an appropriate header line?
|
|
447 (looking-at mail-abbrev-mode-regexp))
|
|
448 ;;
|
21866
|
449 ;; ...and are we in the headers?
|
43268
|
450 (< (point)
|
|
451 (save-restriction
|
|
452 (widen)
|
|
453 (save-excursion
|
|
454 (rfc822-goto-eoh)
|
|
455 (point)))))))
|
598
|
456
|
627
|
457 (defun sendmail-pre-abbrev-expand-hook ()
|
1432
|
458 (and (and mail-abbrevs (not (eq mail-abbrevs t)))
|
1148
|
459 (if (mail-abbrev-in-expansion-header-p)
|
43136
|
460
|
|
461 ;; We are in a To: (or CC:, or whatever) header, and
|
|
462 ;; should use word-abbrevs to expand mail aliases.
|
|
463 (let ((local-abbrev-table mail-abbrevs)
|
|
464 (old-syntax-table (syntax-table)))
|
1148
|
465
|
|
466 ;; Before anything else, resolve aliases if they need it.
|
|
467 (and mail-abbrev-aliases-need-to-be-resolved
|
|
468 (mail-resolve-all-aliases))
|
|
469
|
|
470 ;; Now proceed with the abbrev section.
|
43136
|
471 ;; - We already installed mail-abbrevs as the abbrev table.
|
1148
|
472 ;; - Then install the mail-abbrev-syntax-table, which
|
|
473 ;; temporarily marks all of the
|
|
474 ;; non-alphanumeric-atom-characters (the "_"
|
|
475 ;; syntax ones) as being normal word-syntax. We do this
|
|
476 ;; because the C code for expand-abbrev only works on words,
|
|
477 ;; and we want these characters to be considered words for
|
|
478 ;; the purpose of abbrev expansion.
|
|
479 ;; - Then we call expand-abbrev again, recursively, to do
|
|
480 ;; the abbrev expansion with the above syntax table.
|
43136
|
481 ;; - Restore the previous syntax table.
|
1148
|
482 ;; - Then we do a trick which tells the expand-abbrev frame
|
|
483 ;; which invoked us to not continue (and thus not
|
|
484 ;; expand twice.) This means that any abbrev expansion
|
|
485 ;; will happen as a result of this function's call to
|
|
486 ;; expand-abbrev, and not as a result of the call to
|
|
487 ;; expand-abbrev which invoked *us*.
|
|
488
|
44118
|
489 (mail-abbrev-make-syntax-table)
|
1148
|
490
|
|
491 ;; If the character just typed was non-alpha-symbol-syntax,
|
|
492 ;; then don't expand the abbrev now (that is, don't expand
|
|
493 ;; when the user types -.) Check the character's syntax in
|
43136
|
494 ;; the usual syntax table.
|
1148
|
495
|
3668
|
496 (or (and (integerp last-command-char)
|
59349
|
497 (or (eq (char-syntax last-command-char) ?_)
|
|
498 ;; Don't expand on @.
|
|
499 (memq last-command-char '(?@ ?. ?% ?! ?_ ?-))))
|
1148
|
500 (let ((pre-abbrev-expand-hook nil)) ; That's us; don't loop.
|
|
501 ;; Use this table so that abbrevs can have hyphens in them.
|
|
502 (set-syntax-table mail-abbrev-syntax-table)
|
43136
|
503 (unwind-protect
|
|
504 (expand-abbrev)
|
|
505 ;; Now set it back to what it was before.
|
|
506 (set-syntax-table old-syntax-table))))
|
11504
|
507 (setq abbrev-start-location (point-max) ; This is the trick.
|
1148
|
508 abbrev-start-location-buffer (current-buffer)))
|
|
509
|
20097
|
510 (if (or (not mail-abbrevs-only)
|
|
511 (eq this-command 'expand-abbrev))
|
43136
|
512 ;; We're not in a mail header where mail aliases should
|
|
513 ;; be expanded, then use the normal mail-mode abbrev table
|
|
514 ;; (if any) and the normal mail-mode syntax table.
|
|
515 nil
|
20097
|
516 ;; This is not a mail abbrev, and we should not expand it.
|
|
517 ;; This kludge stops expand-abbrev from doing anything.
|
|
518 (setq abbrev-start-location (point-max)
|
|
519 abbrev-start-location-buffer (current-buffer))))
|
1148
|
520 ))
|
598
|
521
|
|
522 ;;; utilities
|
459
|
523
|
1432
|
524 (defun merge-mail-abbrevs (file)
|
459
|
525 "Merge mail aliases from the given file with existing ones."
|
|
526 (interactive (list
|
|
527 (let ((insert-default-directory t)
|
|
528 (default-directory (expand-file-name "~/"))
|
10328
|
529 (def mail-personal-alias-file))
|
459
|
530 (read-file-name
|
|
531 (format "Read additional aliases from file: (default %s) "
|
|
532 def)
|
|
533 default-directory
|
|
534 (expand-file-name def default-directory)
|
|
535 t))))
|
1432
|
536 (build-mail-abbrevs file))
|
459
|
537
|
12945
|
538 (defun rebuild-mail-abbrevs (&optional file)
|
459
|
539 "Rebuild all the mail aliases from the given file."
|
|
540 (interactive (list
|
|
541 (let ((insert-default-directory t)
|
|
542 (default-directory (expand-file-name "~/"))
|
10328
|
543 (def mail-personal-alias-file))
|
459
|
544 (read-file-name
|
|
545 (format "Read mail aliases from file: (default %s) " def)
|
|
546 default-directory
|
|
547 (expand-file-name def default-directory)
|
|
548 t))))
|
12945
|
549 (if (null file)
|
|
550 (setq file buffer-file-name))
|
1432
|
551 (setq mail-abbrevs nil)
|
|
552 (build-mail-abbrevs file))
|
584
|
553
|
28803
|
554 (defun mail-abbrev-insert-alias (&optional alias)
|
598
|
555 "Prompt for and insert a mail alias."
|
907
|
556 (interactive (progn
|
1432
|
557 (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup))
|
|
558 (list (completing-read "Expand alias: " mail-abbrevs nil t))))
|
|
559 (if (not (vectorp mail-abbrevs)) (mail-abbrevs-setup))
|
13000
|
560 (insert (or (and alias (symbol-value (intern-soft alias mail-abbrevs))) ""))
|
|
561 (mail-abbrev-expand-hook))
|
598
|
562
|
28803
|
563 (defun mail-abbrev-complete-alias ()
|
|
564 "Perform completion on alias preceding point."
|
|
565 ;; Based on lisp.el:lisp-complete-symbol
|
|
566 (interactive)
|
44379
5e64981e7abd
(mail-abbrev-complete-alias): Call mail-abbrev-make-syntax-table.
Richard M. Stallman <rms@gnu.org>
diff
changeset
|
567 (mail-abbrev-make-syntax-table)
|
28803
|
568 (let* ((end (point))
|
|
569 (syntax-table (syntax-table))
|
|
570 (beg (unwind-protect
|
|
571 (save-excursion
|
|
572 (set-syntax-table mail-abbrev-syntax-table)
|
|
573 (backward-word 1)
|
|
574 (point))
|
|
575 (set-syntax-table syntax-table)))
|
|
576 (alias (buffer-substring beg end))
|
|
577 (completion (try-completion alias mail-abbrevs)))
|
|
578 (cond ((eq completion t)
|
|
579 (message "%s" alias)) ; confirm
|
|
580 ((null completion)
|
|
581 (error "[Can't complete \"%s\"]" alias)) ; (message ...) (ding)
|
|
582 ((not (string= completion alias))
|
|
583 (delete-region beg end)
|
|
584 (insert completion))
|
|
585 (t (with-output-to-temp-buffer "*Completions*"
|
|
586 (display-completion-list
|
|
587 (prog2
|
|
588 (message "Making completion list...")
|
|
589 (all-completions alias mail-abbrevs)
|
|
590 (message "Making completion list...done"))))))))
|
|
591
|
1432
|
592 (defun mail-abbrev-next-line (&optional arg)
|
|
593 "Expand any mail abbrev, then move cursor vertically down ARG lines.
|
|
594 If there is no character in the target line exactly under the current column,
|
|
595 the cursor is positioned after the character in that line which spans this
|
|
596 column, or at the end of the line if it is not long enough.
|
|
597 If there is no line in the buffer after this one,
|
|
598 a newline character is inserted to create a line
|
|
599 and the cursor moves to that line.
|
|
600
|
|
601 The command \\[set-goal-column] can be used to create
|
|
602 a semipermanent goal column to which this command always moves.
|
|
603 Then it does not try to move vertically. This goal column is stored
|
|
604 in `goal-column', which is nil when there is none.
|
|
605
|
|
606 If you are thinking of using this in a Lisp program, consider
|
|
607 using `forward-line' instead. It is usually easier to use
|
|
608 and more reliable (no dependence on goal column, etc.)."
|
598
|
609 (interactive "p")
|
717
|
610 (if (looking-at "[ \t]*\n") (expand-abbrev))
|
|
611 (setq this-command 'next-line)
|
598
|
612 (next-line arg))
|
|
613
|
1432
|
614 (defun mail-abbrev-end-of-buffer (&optional arg)
|
|
615 "Expand any mail abbrev, then move point to end of buffer.
|
|
616 Leave mark at previous position.
|
|
617 With arg N, put point N/10 of the way from the true end.
|
|
618
|
|
619 Don't use this command in Lisp programs!
|
|
620 \(goto-char (point-max)) is faster and avoids clobbering the mark."
|
4034
9e585b42806d
(mail-abbrev-end-of-buffer): Fix interactive spec to "P", same as
Roland McGrath <roland@gnu.org>
diff
changeset
|
621 (interactive "P")
|
717
|
622 (if (looking-at "[ \t]*\n") (expand-abbrev))
|
|
623 (setq this-command 'end-of-buffer)
|
59349
|
624 (with-no-warnings
|
|
625 (end-of-buffer arg)))
|
598
|
626
|
43214
|
627 (eval-after-load "sendmail"
|
|
628 '(progn
|
|
629 (define-key mail-mode-map "\C-c\C-a" 'mail-abbrev-insert-alias)
|
|
630 (define-key mail-mode-map "\e\t" ; like lisp-complete-symbol
|
|
631 'mail-abbrev-complete-alias)))
|
598
|
632
|
1432
|
633 ;;(define-key mail-mode-map "\C-n" 'mail-abbrev-next-line)
|
|
634 ;;(define-key mail-mode-map "\M->" 'mail-abbrev-end-of-buffer)
|
598
|
635
|
2418
|
636 (provide 'mailabbrev)
|
14169
|
637
|
20097
|
638 (if mail-abbrevs-mode
|
|
639 (mail-abbrevs-enable))
|
|
640
|
52401
|
641 ;;; arch-tag: 5aa2d901-73f8-4ad7-b73c-4802282ad2ff
|
38412
|
642 ;;; mailabbrev.el ends here
|