123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- ;; Expand mailing address aliases defined in ~/.mailrc.
- ;; Copyright (C) 1985 Free Software Foundation, Inc.
- ;; This file is part of GNU Emacs.
- ;; GNU Emacs is distributed in the hope that it will be useful,
- ;; but WITHOUT ANY WARRANTY. No author or distributor
- ;; accepts responsibility to anyone for the consequences of using it
- ;; or for whether it serves any particular purpose or works at all,
- ;; unless he says so in writing. Refer to the GNU Emacs General Public
- ;; License for full details.
- ;; Everyone is granted permission to copy, modify and redistribute
- ;; GNU Emacs, but only under the conditions described in the
- ;; GNU Emacs General Public License. A copy of this license is
- ;; supposed to have been given to you along with GNU Emacs so you
- ;; can know your rights and responsibilities. It should be in a
- ;; file named COPYING. Among other things, the copyright notice
- ;; and this notice must be preserved on all copies.
- ;; Called from sendmail-send-it, or similar functions,
- ;; only if some mail aliases are defined.
- (defun expand-mail-aliases (beg end)
- "Expand all mail aliases in suitable header fields found between BEG and END.
- Suitable header fields are To, Cc and Bcc."
- (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))
- (re-search-forward "^\\(to\\|cc\\|bcc\\):" end t))
- (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
- (string (buffer-substring pos epos)))
- (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)
- (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)))
- ;; Called by mail-setup, or similar functions, only if ~/.mailrc exists.
- (defun build-mail-aliases ()
- "Read mail aliases from ~/.mailrc and set mail-aliases."
- (let (buffer exists name (file "~/.mailrc"))
- (setq exists (get-file-buffer file))
- (unwind-protect
- (if (not (file-exists-p file))
- (setq buffer nil)
- (save-excursion
- (set-buffer (setq buffer (find-file-noselect file)))
- (goto-char (point-min))
- (while (re-search-forward "^alias[ \t]*\\|^a[ \t]*" nil t)
- (re-search-forward "[^ \t]+")
- (setq name (buffer-substring (match-beginning 0) (match-end 0)))
- (skip-chars-forward " \t")
- (define-mail-alias
- name
- (buffer-substring (point) (progn (end-of-line) (point)))))
- mail-aliases))
- (or exists (null buffer) (kill-buffer buffer)))))
- ;; Always autoloadable in case the user wants to define aliases
- ;; interactively or in .emacs.
- (defun define-mail-alias (name definition)
- "Define NAME as a mail-alias that translates to DEFINITION."
- (interactive "sDefine mail alias: \nsDefine %s as mail alias for: ")
- (let ((aelt (assoc name mail-aliases)))
- (if aelt
- (rplacd aelt definition)
- (setq mail-aliases (cons (cons name definition) mail-aliases)))))
|