1992-05-30 22:12:04 +00:00
|
|
|
;;; mailalias.el --- expand mailing address aliases defined in ~/.mailrc.
|
|
|
|
|
1992-07-22 04:22:42 +00:00
|
|
|
;; Copyright (C) 1985, 1987 Free Software Foundation, Inc.
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;; Maintainer: FSF
|
1992-07-17 08:15:29 +00:00
|
|
|
;; Keywords: mail
|
1992-07-16 21:47:34 +00:00
|
|
|
|
1990-03-06 16:45:37 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
1992-07-16 21:47:34 +00:00
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
1990-03-06 16:45:37 +00:00
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
|
|
;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
1993-03-22 03:27:18 +00:00
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Basic functions for defining and expanding mail aliases.
|
|
|
|
;; These seal off the interface to the alias-definition parts of a
|
|
|
|
;; .mailrc file formatted for BSD's Mail or USL's mailx.
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
;;; Code:
|
1990-03-06 16:45:37 +00:00
|
|
|
|
1994-09-16 22:28:30 +00:00
|
|
|
(require 'sendmail)
|
1992-10-20 04:35:17 +00:00
|
|
|
|
1990-03-06 16:45:37 +00:00
|
|
|
;; Called from sendmail-send-it, or similar functions,
|
|
|
|
;; only if some mail aliases are defined.
|
|
|
|
(defun expand-mail-aliases (beg end &optional exclude)
|
|
|
|
"Expand all mail aliases in suitable header fields found between BEG and END.
|
1995-05-19 18:57:17 +00:00
|
|
|
Suitable header fields are `To', `From', `CC' and `BCC', `Reply-to', and
|
|
|
|
their `Resent-' variants.
|
|
|
|
|
1991-04-01 21:16:55 +00:00
|
|
|
Optional second arg EXCLUDE may be a regular expression defining text to be
|
|
|
|
removed from alias expansions."
|
1994-09-22 17:01:39 +00:00
|
|
|
(sendmail-synch-aliases)
|
1990-03-06 16:45:37 +00:00
|
|
|
(if (eq mail-aliases t)
|
|
|
|
(progn (setq mail-aliases nil) (build-mail-aliases)))
|
|
|
|
(goto-char beg)
|
|
|
|
(setq end (set-marker (make-marker) end))
|
|
|
|
(let ((case-fold-search nil))
|
|
|
|
(while (let ((case-fold-search t))
|
1995-05-19 18:57:17 +00:00
|
|
|
(re-search-forward "^\\(Resent-\\)?\\(To\\|From\\|CC\\|BCC\\|Reply-to\\):" end t))
|
1990-03-06 16:45:37 +00:00
|
|
|
(skip-chars-forward " \t")
|
|
|
|
(let ((beg1 (point))
|
|
|
|
end1 pos epos seplen
|
|
|
|
;; DISABLED-ALIASES records aliases temporarily disabled
|
|
|
|
;; while we scan text that resulted from expanding those aliases.
|
|
|
|
;; Each element is (ALIAS . TILL-WHEN), where TILL-WHEN
|
|
|
|
;; is where to reenable the alias (expressed as number of chars
|
|
|
|
;; counting from END1).
|
|
|
|
(disabled-aliases nil))
|
|
|
|
(re-search-forward "^[^ \t]" end 'move)
|
|
|
|
(beginning-of-line)
|
|
|
|
(skip-chars-backward " \t\n")
|
|
|
|
(setq end1 (point-marker))
|
|
|
|
(goto-char beg1)
|
|
|
|
(while (< (point) end1)
|
|
|
|
(setq pos (point))
|
|
|
|
;; Reenable any aliases which were disabled for ranges
|
|
|
|
;; that we have passed out of.
|
|
|
|
(while (and disabled-aliases (> pos (- end1 (cdr (car disabled-aliases)))))
|
|
|
|
(setq disabled-aliases (cdr disabled-aliases)))
|
|
|
|
;; EPOS gets position of end of next name;
|
|
|
|
;; SEPLEN gets length of whitespace&separator that follows it.
|
|
|
|
(if (re-search-forward "[ \t]*[\n,][ \t]*" end1 t)
|
|
|
|
(setq epos (match-beginning 0)
|
|
|
|
seplen (- (point) epos))
|
|
|
|
(setq epos (marker-position end1) seplen 0))
|
|
|
|
(let (translation
|
1995-05-01 18:25:55 +00:00
|
|
|
(string (buffer-substring-no-properties pos epos)))
|
1990-03-06 16:45:37 +00:00
|
|
|
(if (and (not (assoc string disabled-aliases))
|
|
|
|
(setq translation
|
|
|
|
(cdr (assoc string mail-aliases))))
|
|
|
|
(progn
|
|
|
|
;; This name is an alias. Disable it.
|
|
|
|
(setq disabled-aliases (cons (cons string (- end1 epos))
|
|
|
|
disabled-aliases))
|
|
|
|
;; Replace the alias with its expansion
|
|
|
|
;; then rescan the expansion for more aliases.
|
|
|
|
(goto-char pos)
|
|
|
|
(insert translation)
|
|
|
|
(if exclude
|
|
|
|
(let ((regexp
|
|
|
|
(concat "\\b\\(" exclude "\\)\\b"))
|
|
|
|
(end (point-marker)))
|
|
|
|
(goto-char pos)
|
|
|
|
(while (re-search-forward regexp end t)
|
|
|
|
(replace-match ""))
|
|
|
|
(goto-char end)))
|
|
|
|
(delete-region (point) (+ (point) (- epos pos)))
|
|
|
|
(goto-char pos))
|
|
|
|
;; Name is not an alias. Skip to start of next name.
|
|
|
|
(goto-char epos)
|
|
|
|
(forward-char seplen))))
|
|
|
|
(set-marker end1 nil)))
|
|
|
|
(set-marker end nil)))
|
|
|
|
|
1995-01-03 23:43:47 +00:00
|
|
|
;; Called by mail-setup, or similar functions, only if the file specified
|
|
|
|
;; by mail-personal-alias-file (usually `~/.mailrc') exists.
|
1990-03-06 16:45:37 +00:00
|
|
|
(defun build-mail-aliases (&optional file)
|
1995-01-03 23:43:47 +00:00
|
|
|
"Read mail aliases from personal aliases file and set `mail-aliases'.
|
|
|
|
By default, this is the file specified by `mail-personal-alias-file'."
|
|
|
|
(setq file (expand-file-name (or file mail-personal-alias-file)))
|
1990-03-06 16:45:37 +00:00
|
|
|
(let ((buffer nil)
|
|
|
|
(obuf (current-buffer)))
|
|
|
|
(unwind-protect
|
|
|
|
(progn
|
|
|
|
(setq buffer (generate-new-buffer "mailrc"))
|
|
|
|
(buffer-disable-undo buffer)
|
|
|
|
(set-buffer buffer)
|
1994-05-28 13:06:55 +00:00
|
|
|
(while file
|
|
|
|
(cond ((get-file-buffer file)
|
|
|
|
(insert (save-excursion
|
|
|
|
(set-buffer (get-file-buffer file))
|
1995-11-25 18:21:17 +00:00
|
|
|
(buffer-substring-no-properties
|
|
|
|
(point-min) (point-max)))))
|
1994-05-28 13:06:55 +00:00
|
|
|
((file-exists-p file) (insert-file-contents file))
|
|
|
|
((file-exists-p (setq file (concat "~/" file)))
|
|
|
|
(insert-file-contents file))
|
|
|
|
(t (setq file nil)))
|
|
|
|
;; Don't lose if no final newline.
|
|
|
|
(goto-char (point-max))
|
|
|
|
(or (eq (preceding-char) ?\n) (newline))
|
|
|
|
(goto-char (point-min))
|
|
|
|
;; handle "\\\n" continuation lines
|
|
|
|
(while (not (eobp))
|
|
|
|
(end-of-line)
|
|
|
|
(if (= (preceding-char) ?\\)
|
|
|
|
(progn (delete-char -1) (delete-char 1) (insert ?\ ))
|
1990-03-06 16:45:37 +00:00
|
|
|
(forward-char 1)))
|
1994-05-28 13:06:55 +00:00
|
|
|
(goto-char (point-min))
|
|
|
|
;; handle `source' directives -- Eddy/1994/May/25
|
|
|
|
(cond ((re-search-forward "^source[ \t]+" nil t)
|
|
|
|
(re-search-forward "\\S-+")
|
1995-11-25 18:21:17 +00:00
|
|
|
(setq file (buffer-substring-no-properties
|
|
|
|
(match-beginning 0) (match-end 0)))
|
1994-05-28 13:06:55 +00:00
|
|
|
(beginning-of-line)
|
|
|
|
(insert "# ") ; to ensure we don't re-process this file
|
|
|
|
(beginning-of-line))
|
|
|
|
(t (setq file nil))))
|
1990-03-06 16:45:37 +00:00
|
|
|
(goto-char (point-min))
|
1995-07-10 14:46:00 +00:00
|
|
|
(while (re-search-forward
|
|
|
|
"^\\(a\\|alias\\|g\\|group\\)[ \t]+\\([^ \t]+\\)" nil t)
|
|
|
|
(let* ((name (match-string 2))
|
1990-03-06 16:45:37 +00:00
|
|
|
(start (progn (skip-chars-forward " \t") (point))))
|
|
|
|
(end-of-line)
|
|
|
|
(define-mail-alias
|
|
|
|
name
|
1995-11-25 18:21:17 +00:00
|
|
|
(buffer-substring-no-properties start (point))
|
1994-06-19 19:52:02 +00:00
|
|
|
t)))
|
1990-03-06 16:45:37 +00:00
|
|
|
mail-aliases)
|
|
|
|
(if buffer (kill-buffer buffer))
|
|
|
|
(set-buffer obuf))))
|
|
|
|
|
|
|
|
;; Always autoloadable in case the user wants to define aliases
|
|
|
|
;; interactively or in .emacs.
|
1991-05-09 21:50:34 +00:00
|
|
|
;;;###autoload
|
1994-06-19 19:52:02 +00:00
|
|
|
(defun define-mail-alias (name definition &optional from-mailrc-file)
|
1991-04-01 21:16:55 +00:00
|
|
|
"Define NAME as a mail alias that translates to DEFINITION.
|
1990-03-06 16:45:37 +00:00
|
|
|
This means that sending a message to NAME will actually send to DEFINITION.
|
1995-06-30 20:27:28 +00:00
|
|
|
|
|
|
|
Normally, the addresses in DEFINITION must be separated by commas.
|
|
|
|
If FROM-MAILRC-FILE is non-nil, then addresses in DEFINITION
|
|
|
|
can be separated by spaces; an address can contain spaces
|
|
|
|
if it is quoted with double-quotes."
|
|
|
|
|
1990-03-06 16:45:37 +00:00
|
|
|
(interactive "sDefine mail alias: \nsDefine %s as mail alias for: ")
|
|
|
|
;; Read the defaults first, if we have not done so.
|
1994-09-22 17:01:39 +00:00
|
|
|
(sendmail-synch-aliases)
|
1990-03-06 16:45:37 +00:00
|
|
|
(if (eq mail-aliases t)
|
|
|
|
(progn
|
|
|
|
(setq mail-aliases nil)
|
1995-01-03 23:43:47 +00:00
|
|
|
(if (file-exists-p mail-personal-alias-file)
|
1990-03-06 16:45:37 +00:00
|
|
|
(build-mail-aliases))))
|
1993-06-15 20:51:15 +00:00
|
|
|
;; strip garbage from front and end
|
|
|
|
(if (string-match "\\`[ \t\n,]+" definition)
|
1991-12-21 09:14:03 +00:00
|
|
|
(setq definition (substring definition (match-end 0))))
|
1993-06-15 20:51:15 +00:00
|
|
|
(if (string-match "[ \t\n,]+\\'" definition)
|
1991-12-21 09:14:03 +00:00
|
|
|
(setq definition (substring definition 0 (match-beginning 0))))
|
1994-06-19 19:52:02 +00:00
|
|
|
(let ((result '())
|
1994-08-09 05:52:47 +00:00
|
|
|
;; If DEFINITION is null string, avoid looping even once.
|
|
|
|
(start (and (not (equal definition "")) 0))
|
1994-06-19 19:52:02 +00:00
|
|
|
(L (length definition))
|
|
|
|
end tem)
|
|
|
|
(while start
|
|
|
|
;; If we're reading from the mailrc file, then addresses are delimited
|
|
|
|
;; by spaces, and addresses with embedded spaces must be surrounded by
|
|
|
|
;; double-quotes. Otherwise, addresses are separated by commas.
|
|
|
|
(if from-mailrc-file
|
|
|
|
(if (eq ?\" (aref definition start))
|
|
|
|
(setq start (1+ start)
|
|
|
|
end (string-match "\"[ \t,]*" definition start))
|
1994-08-09 05:52:47 +00:00
|
|
|
(setq end (string-match "[ \t,]+" definition start)))
|
|
|
|
(setq end (string-match "[ \t\n,]*,[ \t\n,]*" definition start)))
|
1994-06-19 19:52:02 +00:00
|
|
|
(setq result (cons (substring definition start end) result))
|
|
|
|
(setq start (and end
|
|
|
|
(/= (match-end 0) L)
|
|
|
|
(match-end 0))))
|
|
|
|
(setq definition (mapconcat (function identity)
|
|
|
|
(nreverse result)
|
|
|
|
", "))
|
1990-03-06 16:45:37 +00:00
|
|
|
(setq tem (assoc name mail-aliases))
|
|
|
|
(if tem
|
|
|
|
(rplacd tem definition)
|
|
|
|
(setq mail-aliases (cons (cons name definition) mail-aliases)))))
|
1992-05-30 22:12:04 +00:00
|
|
|
|
1992-08-04 04:15:43 +00:00
|
|
|
(provide 'mailalias)
|
|
|
|
|
1992-05-30 22:12:04 +00:00
|
|
|
;;; mailalias.el ends here
|