Mercurial > emacs
annotate lisp/mail/mailalias.el @ 928:a95dc7876025
entered into RCS
author | Eric S. Raymond <esr@snark.thyrsus.com> |
---|---|
date | Tue, 04 Aug 1992 16:08:22 +0000 |
parents | 9f3cc03dae67 |
children | d1f24ca467fc |
rev | line source |
---|---|
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
474
diff
changeset
|
1 ;;; mailalias.el --- expand mailing address aliases defined in ~/.mailrc. |
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
474
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
3 ;; Copyright (C) 1985, 1987 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
5 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: mail |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
7 |
53 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
53 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
659
diff
changeset
|
24 ;;; Code: |
53 | 25 |
26 ;; Called from sendmail-send-it, or similar functions, | |
27 ;; only if some mail aliases are defined. | |
28 (defun expand-mail-aliases (beg end &optional exclude) | |
29 "Expand all mail aliases in suitable header fields found between BEG and END. | |
221
ce8e0192266e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
219
diff
changeset
|
30 Suitable header fields are `To', `Cc' and `Bcc' and their `Resent-' variants. |
ce8e0192266e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
219
diff
changeset
|
31 Optional second arg EXCLUDE may be a regular expression defining text to be |
ce8e0192266e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
219
diff
changeset
|
32 removed from alias expansions." |
53 | 33 (if (eq mail-aliases t) |
34 (progn (setq mail-aliases nil) (build-mail-aliases))) | |
35 (goto-char beg) | |
36 (setq end (set-marker (make-marker) end)) | |
37 (let ((case-fold-search nil)) | |
38 (while (let ((case-fold-search t)) | |
219 | 39 (re-search-forward "^\\(to\\|cc\\|bcc\\|resent-to\\|resent-cc\\|resent-bcc\\):" end t)) |
53 | 40 (skip-chars-forward " \t") |
41 (let ((beg1 (point)) | |
42 end1 pos epos seplen | |
43 ;; DISABLED-ALIASES records aliases temporarily disabled | |
44 ;; while we scan text that resulted from expanding those aliases. | |
45 ;; Each element is (ALIAS . TILL-WHEN), where TILL-WHEN | |
46 ;; is where to reenable the alias (expressed as number of chars | |
47 ;; counting from END1). | |
48 (disabled-aliases nil)) | |
49 (re-search-forward "^[^ \t]" end 'move) | |
50 (beginning-of-line) | |
51 (skip-chars-backward " \t\n") | |
52 (setq end1 (point-marker)) | |
53 (goto-char beg1) | |
54 (while (< (point) end1) | |
55 (setq pos (point)) | |
56 ;; Reenable any aliases which were disabled for ranges | |
57 ;; that we have passed out of. | |
58 (while (and disabled-aliases (> pos (- end1 (cdr (car disabled-aliases))))) | |
59 (setq disabled-aliases (cdr disabled-aliases))) | |
60 ;; EPOS gets position of end of next name; | |
61 ;; SEPLEN gets length of whitespace&separator that follows it. | |
62 (if (re-search-forward "[ \t]*[\n,][ \t]*" end1 t) | |
63 (setq epos (match-beginning 0) | |
64 seplen (- (point) epos)) | |
65 (setq epos (marker-position end1) seplen 0)) | |
66 (let (translation | |
67 (string (buffer-substring pos epos))) | |
68 (if (and (not (assoc string disabled-aliases)) | |
69 (setq translation | |
70 (cdr (assoc string mail-aliases)))) | |
71 (progn | |
72 ;; This name is an alias. Disable it. | |
73 (setq disabled-aliases (cons (cons string (- end1 epos)) | |
74 disabled-aliases)) | |
75 ;; Replace the alias with its expansion | |
76 ;; then rescan the expansion for more aliases. | |
77 (goto-char pos) | |
78 (insert translation) | |
79 (if exclude | |
80 (let ((regexp | |
81 (concat "\\b\\(" exclude "\\)\\b")) | |
82 (end (point-marker))) | |
83 (goto-char pos) | |
84 (while (re-search-forward regexp end t) | |
85 (replace-match "")) | |
86 (goto-char end))) | |
87 (delete-region (point) (+ (point) (- epos pos))) | |
88 (goto-char pos)) | |
89 ;; Name is not an alias. Skip to start of next name. | |
90 (goto-char epos) | |
91 (forward-char seplen)))) | |
92 (set-marker end1 nil))) | |
93 (set-marker end nil))) | |
94 | |
95 ;; Called by mail-setup, or similar functions, only if ~/.mailrc exists. | |
96 (defun build-mail-aliases (&optional file) | |
221
ce8e0192266e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
219
diff
changeset
|
97 "Read mail aliases from ~/.mailrc and set `mail-aliases'." |
53 | 98 (setq file (expand-file-name (or file "~/.mailrc"))) |
99 (let ((buffer nil) | |
100 (obuf (current-buffer))) | |
101 (unwind-protect | |
102 (progn | |
103 (setq buffer (generate-new-buffer "mailrc")) | |
104 (buffer-disable-undo buffer) | |
105 (set-buffer buffer) | |
106 (cond ((get-file-buffer file) | |
107 (insert (save-excursion | |
108 (set-buffer (get-file-buffer file)) | |
109 (buffer-substring (point-min) (point-max))))) | |
110 ((not (file-exists-p file))) | |
111 (t (insert-file-contents file))) | |
112 ;; Don't lose if no final newline. | |
113 (goto-char (point-max)) | |
114 (or (eq (preceding-char) ?\n) (newline)) | |
115 (goto-char (point-min)) | |
116 ;; handle "\\\n" continuation lines | |
117 (while (not (eobp)) | |
118 (end-of-line) | |
119 (if (= (preceding-char) ?\\) | |
120 (progn (delete-char -1) (delete-char 1) (insert ?\ )) | |
121 (forward-char 1))) | |
122 (goto-char (point-min)) | |
123 (while (or (re-search-forward "^a\\(lias\\|\\)[ \t]+" nil t) | |
124 (re-search-forward "^g\\(roup\\|\\)[ \t]+" nil t)) | |
125 (re-search-forward "[^ \t]+") | |
126 (let* ((name (buffer-substring (match-beginning 0) (match-end 0))) | |
127 (start (progn (skip-chars-forward " \t") (point)))) | |
128 (end-of-line) | |
129 (define-mail-alias | |
130 name | |
131 (buffer-substring start (point))))) | |
132 mail-aliases) | |
133 (if buffer (kill-buffer buffer)) | |
134 (set-buffer obuf)))) | |
135 | |
136 ;; Always autoloadable in case the user wants to define aliases | |
137 ;; interactively or in .emacs. | |
256 | 138 ;;;###autoload |
53 | 139 (defun define-mail-alias (name definition) |
221
ce8e0192266e
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
219
diff
changeset
|
140 "Define NAME as a mail alias that translates to DEFINITION. |
53 | 141 This means that sending a message to NAME will actually send to DEFINITION. |
142 DEFINITION can be one or more mail addresses separated by commas." | |
143 (interactive "sDefine mail alias: \nsDefine %s as mail alias for: ") | |
144 ;; Read the defaults first, if we have not done so. | |
145 (if (eq mail-aliases t) | |
146 (progn | |
147 (setq mail-aliases nil) | |
148 (if (file-exists-p "~/.mailrc") | |
149 (build-mail-aliases)))) | |
474 | 150 ;; Strip leading and trailing blanks. |
151 (if (string-match "^[ \t]+" definition) | |
152 (setq definition (substring definition (match-end 0)))) | |
153 (if (string-match "[ \t]+$" definition) | |
154 (setq definition (substring definition 0 (match-beginning 0)))) | |
155 (let ((first (aref definition 0)) | |
156 (last (aref definition (1- (length definition)))) | |
157 tem) | |
158 (if (and (= first last) (memq first '(?\' ?\"))) | |
159 ;; Strip quotation marks. | |
160 (setq definition (substring definition 1 (1- (length definition)))) | |
161 ;; ~/.mailrc contains addresses separated by spaces. | |
162 ;; mailers should expect addresses separated by commas. | |
163 (while (setq tem (string-match "[^ \t,][ \t,]+" definition tem)) | |
164 (if (= (match-end 0) (length definition)) | |
165 (setq definition (substring definition 0 (1+ tem))) | |
166 (setq definition (concat (substring definition | |
167 0 (1+ tem)) | |
168 ", " | |
169 (substring definition (match-end 0)))) | |
170 (setq tem (+ 3 tem))))) | |
53 | 171 (setq tem (assoc name mail-aliases)) |
172 (if tem | |
173 (rplacd tem definition) | |
174 (setq mail-aliases (cons (cons name definition) mail-aliases))))) | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
474
diff
changeset
|
175 |
923 | 176 (provide 'mailalias) |
177 | |
659
505130d1ddf8
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
474
diff
changeset
|
178 ;;; mailalias.el ends here |