1992-09-15 19:38:02 +00:00
|
|
|
|
;;; mailabbrev.el --- abbrev-expansion of mail aliases.
|
|
|
|
|
|
1992-07-22 04:22:42 +00:00
|
|
|
|
;;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
|
1992-09-15 19:38:02 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Jamie Zawinski <jwz@lucid.com>
|
|
|
|
|
;; Maintainer: Jamie Zawinski <jwz@lucid.com>
|
|
|
|
|
;; Created: 19 Oct 90
|
|
|
|
|
;; Keywords: mail
|
|
|
|
|
|
1991-12-17 03:37:43 +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-06-15 21:06:57 +00:00
|
|
|
|
;;; the Free Software Foundation; either version 2, or (at your option)
|
1991-12-17 03:37:43 +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.
|
|
|
|
|
|
1992-09-15 19:38:02 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
1991-12-17 03:37:43 +00:00
|
|
|
|
;;; This file ensures that, when the point is in a To:, CC:, BCC:, or From:
|
|
|
|
|
;;; field, word-abbrevs are defined for each of your mail aliases. These
|
|
|
|
|
;;; aliases will be defined from your .mailrc file (or the file specified by
|
1992-03-24 04:22:48 +00:00
|
|
|
|
;;; the MAILRC environment variable) if it exists. Your mail aliases will
|
|
|
|
|
;;; expand any time you type a word-delimiter at the end of an abbreviation.
|
1991-12-17 03:37:43 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; What you see is what you get: no abbreviations will be expanded after you
|
|
|
|
|
;;; have sent the mail, unlike the old system. This means you don't suffer
|
|
|
|
|
;;; the annoyance of having the system do things behind your back -- if an
|
|
|
|
|
;;; address you typed is going to be rewritten, you know it immediately,
|
|
|
|
|
;;; instead of after the mail has been sent and it's too late to do anything
|
|
|
|
|
;;; about it. You will never again be screwed because you forgot to delete an
|
|
|
|
|
;;; old alias from your .mailrc when a new local user arrives and is given a
|
|
|
|
|
;;; userid which conflicts with one of your aliases, for example.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Your mail alias abbrevs will be in effect only when the point is in an
|
|
|
|
|
;;; appropriate header field. When in the body of the message, or other
|
|
|
|
|
;;; header fields, the mail aliases will not expand. Rather, the normal
|
|
|
|
|
;;; mode-specific abbrev table (mail-mode-abbrev-table) will be used if
|
|
|
|
|
;;; defined. So if you use mail-mode specific abbrevs, this code will not
|
|
|
|
|
;;; adversely affect you. You can control which header fields the abbrevs
|
|
|
|
|
;;; are used in by changing the variable mail-abbrev-mode-regexp.
|
|
|
|
|
;;;
|
|
|
|
|
;;; If auto-fill mode is on, abbrevs will wrap at commas instead of at word
|
|
|
|
|
;;; boundaries; also, header continuation-lines will be properly indented.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You can also insert a mail alias with mail-interactive-insert-alias
|
|
|
|
|
;;; (bound to C-c C-a), which prompts you for an alias (with completion)
|
|
|
|
|
;;; and inserts its expansion at point.
|
|
|
|
|
;;;
|
|
|
|
|
;;; This file fixes a bug in the old system which prohibited your .mailrc
|
|
|
|
|
;;; file from having lines like
|
|
|
|
|
;;;
|
|
|
|
|
;;; alias someone "John Doe <doe@quux.com>"
|
|
|
|
|
;;;
|
|
|
|
|
;;; That is, if you want an address to have embedded spaces, simply surround it
|
|
|
|
|
;;; with double-quotes. This is necessary because the format of the .mailrc
|
|
|
|
|
;;; file bogusly uses spaces as address delimiters. The following line defines
|
|
|
|
|
;;; an alias which expands to three addresses:
|
|
|
|
|
;;;
|
|
|
|
|
;;; alias foobar addr-1 addr-2 "address three <addr-3>"
|
|
|
|
|
;;;
|
|
|
|
|
;;; (This is bogus because mail-delivery programs want commas, not spaces,
|
|
|
|
|
;;; but that's what the file format is, so we have to live with it.)
|
|
|
|
|
;;;
|
|
|
|
|
;;; If you like, you can call the function define-mail-alias to define your
|
|
|
|
|
;;; mail-aliases instead of using a .mailrc file. When you call it in this
|
1992-05-03 21:16:09 +00:00
|
|
|
|
;;; way, addresses are separated by commas.
|
1991-12-17 03:37:43 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; CAVEAT: This works on most Sun systems; I have been told that some versions
|
|
|
|
|
;;; of /bin/mail do not understand double-quotes in the .mailrc file. So you
|
|
|
|
|
;;; should make sure your version does before including verbose addresses like
|
|
|
|
|
;;; this. One solution to this, if you are on a system whose /bin/mail doesn't
|
|
|
|
|
;;; work that way, (and you still want to be able to /bin/mail to send mail in
|
|
|
|
|
;;; addition to emacs) is to define minimal aliases (without full names) in
|
|
|
|
|
;;; your .mailrc file, and use define-mail-alias to redefine them when sending
|
|
|
|
|
;;; mail from emacs; this way, mail sent from /bin/mail will work, and mail
|
|
|
|
|
;;; sent from emacs will be pretty.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Aliases in the mailrc file may be nested. If you define aliases like
|
|
|
|
|
;;; alias group1 fred ethel
|
|
|
|
|
;;; alias group2 larry curly moe
|
|
|
|
|
;;; alias everybody group1 group2
|
|
|
|
|
;;; Then when you type "everybody" on the To: line, it will be expanded to
|
|
|
|
|
;;; fred, ethyl, larry, curly, moe
|
|
|
|
|
;;;
|
|
|
|
|
;;; Aliases may also contain forward references; the alias of "everybody" can
|
|
|
|
|
;;; preceed the aliases of "group1" and "group2".
|
|
|
|
|
;;;
|
|
|
|
|
;;; This code also understands the "source" .mailrc command, for reading
|
|
|
|
|
;;; aliases from some other file as well.
|
|
|
|
|
;;;
|
1992-03-24 04:22:48 +00:00
|
|
|
|
;;; Aliases may contain hyphens, as in "alias foo-bar foo@bar"; word-abbrevs
|
|
|
|
|
;;; normally cannot contain hyphens, but this code works around that for the
|
|
|
|
|
;;; specific case of mail-alias word-abbrevs.
|
|
|
|
|
;;;
|
1991-12-17 03:37:43 +00:00
|
|
|
|
;;; To read in the contents of another .mailrc-type file from emacs, use the
|
|
|
|
|
;;; command Meta-X merge-mail-aliases. The rebuild-mail-aliases command is
|
|
|
|
|
;;; similar, but will delete existing aliases first.
|
|
|
|
|
;;;
|
1992-03-24 04:22:48 +00:00
|
|
|
|
;;; If you would like your aliases to be expanded when you type M-> or ^N to
|
|
|
|
|
;;; move out of the mail-header into the message body (instead of having to
|
|
|
|
|
;;; type SPC at the end of the abbrev before moving away) then you can do
|
|
|
|
|
;;;
|
|
|
|
|
;;; (define-key mail-mode-map "\C-n" 'abbrev-hacking-next-line)
|
|
|
|
|
;;; (define-key mail-mode-map "\M->" 'abbrev-hacking-end-of-buffer)
|
|
|
|
|
;;;
|
1992-05-03 21:16:09 +00:00
|
|
|
|
;;; If you want multiple addresses separated by a string other than ", " then
|
|
|
|
|
;;; you can set the variable mail-alias-separator-string to it. This has to
|
1991-12-17 03:37:43 +00:00
|
|
|
|
;;; be a comma bracketed by whitespace if you want any kind of reasonable
|
|
|
|
|
;;; behaviour.
|
|
|
|
|
;;;
|
|
|
|
|
;;; Thanks to Harald Hanche-Olsen, Michael Ernst, David Loeffler, and
|
|
|
|
|
;;; Noah Friedman for suggestions and bug reports.
|
1992-05-03 21:16:09 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; INSTALLATION
|
|
|
|
|
;;;
|
|
|
|
|
;;; If you are using Emacs 18, you shouldn't have to do anything at all to
|
|
|
|
|
;;; install this code other than load this file. You might want to do this
|
|
|
|
|
;;; to have this code loaded only when needed:
|
|
|
|
|
;;;
|
|
|
|
|
;;; (setq mail-setup-hook '(lambda () (require 'mail-abbrevs)))
|
|
|
|
|
;;;
|
|
|
|
|
;;; Simply loading this file will redefine and overload the required
|
|
|
|
|
;;; functions.
|
|
|
|
|
;;;
|
|
|
|
|
;;; If you want to install this code more permanently (instead of loading
|
|
|
|
|
;;; it as a patch) you need to do the following:
|
|
|
|
|
;;;
|
|
|
|
|
;;; - Remove the entire file mailalias.el;
|
|
|
|
|
;;; - Remove the definition of mail-aliases from sendmail.el;
|
|
|
|
|
;;; - Add a call to mail-aliases-setup to the front of the function
|
|
|
|
|
;;; mail-setup in the file sendmail.el;
|
|
|
|
|
;;; - Remove the call to expand-mail-aliases from the function
|
|
|
|
|
;;; sendmail-send-it in the file sendmail.el;
|
|
|
|
|
;;; - Remove the autoload of expand-mail-aliases from the file sendmail.el;
|
|
|
|
|
;;; - Remove the autoload of build-mail-aliases from the file sendmail.el;
|
|
|
|
|
;;; - Add an autoload of define-mail-alias to loaddefs.el.
|
1991-12-17 03:37:43 +00:00
|
|
|
|
|
1992-09-15 19:38:02 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(require 'sendmail)
|
|
|
|
|
|
|
|
|
|
(defvar mail-abbrev-mailrc-file nil
|
|
|
|
|
"Name of file with mail aliases. If nil, ~/.mailrc is used.")
|
|
|
|
|
|
|
|
|
|
(defmacro mail-abbrev-mailrc-file ()
|
|
|
|
|
'(or mail-abbrev-mailrc-file
|
|
|
|
|
(setq mail-abbrev-mailrc-file
|
|
|
|
|
(or (getenv "MAILRC") "~/.mailrc"))))
|
|
|
|
|
|
|
|
|
|
;; originally defined in sendmail.el - used to be an alist, now is a table.
|
|
|
|
|
(defvar mail-aliases nil
|
1992-03-24 04:22:48 +00:00
|
|
|
|
"Word-abbrev table of mail address aliases.
|
1991-12-17 03:37:43 +00:00
|
|
|
|
If this is nil, it means the aliases have not yet been initialized and
|
|
|
|
|
should be read from the .mailrc file. (This is distinct from there being
|
|
|
|
|
no aliases, which is represented by this being a table with no entries.)")
|
|
|
|
|
|
1991-12-21 09:14:03 +00:00
|
|
|
|
;;;###autoload
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(defun mail-aliases-setup ()
|
|
|
|
|
(if (and (not (vectorp mail-aliases))
|
|
|
|
|
(file-exists-p (mail-abbrev-mailrc-file)))
|
|
|
|
|
(build-mail-aliases))
|
1992-04-05 23:25:04 +00:00
|
|
|
|
(make-local-variable 'pre-abbrev-expand-hook)
|
|
|
|
|
(setq pre-abbrev-expand-hook
|
|
|
|
|
(cond ((and (listp pre-abbrev-expand-hook)
|
|
|
|
|
(not (eq 'lambda (car pre-abbrev-expand-hook))))
|
|
|
|
|
(cons 'sendmail-pre-abbrev-expand-hook pre-abbrev-expand-hook))
|
|
|
|
|
(t
|
|
|
|
|
(list 'sendmail-pre-abbrev-expand-hook pre-abbrev-expand-hook))))
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(abbrev-mode 1))
|
|
|
|
|
|
|
|
|
|
;;; Originally defined in mailalias.el. Changed to call define-mail-alias
|
|
|
|
|
;;; with an additional argument.
|
1992-03-24 04:22:48 +00:00
|
|
|
|
;;;###autoload
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(defun build-mail-aliases (&optional file recursivep)
|
|
|
|
|
"Read mail aliases from .mailrc and set mail-aliases."
|
|
|
|
|
(setq file (expand-file-name (or file (mail-abbrev-mailrc-file))))
|
|
|
|
|
(if (vectorp mail-aliases)
|
|
|
|
|
nil
|
|
|
|
|
(setq mail-aliases nil)
|
|
|
|
|
(define-abbrev-table 'mail-aliases '()))
|
1992-04-05 23:25:04 +00:00
|
|
|
|
(message "Parsing %s..." file)
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(let ((buffer nil)
|
|
|
|
|
(obuf (current-buffer)))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(setq buffer (generate-new-buffer "mailrc"))
|
1992-03-24 04:22:48 +00:00
|
|
|
|
(buffer-disable-undo buffer)
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(set-buffer buffer)
|
|
|
|
|
(cond ((get-file-buffer file)
|
|
|
|
|
(insert (save-excursion
|
|
|
|
|
(set-buffer (get-file-buffer file))
|
|
|
|
|
(buffer-substring (point-min) (point-max)))))
|
|
|
|
|
((not (file-exists-p file)))
|
|
|
|
|
(t (insert-file-contents file)))
|
|
|
|
|
;; Don't lose if no final newline.
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(or (eq (preceding-char) ?\n) (newline))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; Delete comments from the file
|
|
|
|
|
(while (search-forward "# " nil t)
|
|
|
|
|
(let ((p (- (point) 2)))
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(delete-region p (point))))
|
|
|
|
|
(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 ?\ ))
|
|
|
|
|
(forward-char 1)))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward
|
1992-08-02 03:36:38 +00:00
|
|
|
|
"^\\(a\\(lias\\)?\\|g\\(roup\\)?\\|source\\)[ \t]+" nil t)
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(if (looking-at "source[ \t]+\\([^ \t\n]+\\)")
|
|
|
|
|
(progn
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(build-mail-aliases
|
|
|
|
|
(buffer-substring (match-beginning 1) (match-end 1)) t))
|
|
|
|
|
(re-search-forward "[ \t]+\\([^ \t\n]+\\)")
|
|
|
|
|
(let* ((name (buffer-substring
|
|
|
|
|
(match-beginning 1) (match-end 1)))
|
|
|
|
|
(start (progn (skip-chars-forward " \t") (point))))
|
|
|
|
|
(end-of-line)
|
|
|
|
|
; (message "** %s \"%s\"" name (buffer-substring start (point)))(sit-for 1)
|
|
|
|
|
(define-mail-alias
|
|
|
|
|
name
|
|
|
|
|
(buffer-substring start (point))
|
|
|
|
|
t))))
|
|
|
|
|
;; Resolve forward references in .mailrc file.
|
|
|
|
|
;; This would happen automatically before the first abbrev was
|
|
|
|
|
;; expanded, but why not do it now.
|
|
|
|
|
(or recursivep (mail-resolve-all-aliases))
|
|
|
|
|
mail-aliases)
|
|
|
|
|
(if buffer (kill-buffer buffer))
|
|
|
|
|
(set-buffer obuf)))
|
1992-04-05 23:25:04 +00:00
|
|
|
|
(message "Parsing %s... done" file))
|
1991-12-17 03:37:43 +00:00
|
|
|
|
|
1992-05-03 21:16:09 +00:00
|
|
|
|
(defvar mail-alias-separator-string ", "
|
1991-12-17 03:37:43 +00:00
|
|
|
|
"*A string inserted between addresses in multi-address mail aliases.
|
|
|
|
|
This has to contain a comma, so \", \" is a reasonable value. You might
|
|
|
|
|
also want something like \",\\n \" to get each address on its own line.")
|
|
|
|
|
|
|
|
|
|
;; define-mail-alias sets this flag, which causes mail-resolve-all-aliases
|
|
|
|
|
;; to be called before expanding abbrevs if it's necessary.
|
|
|
|
|
(defvar mail-abbrev-aliases-need-to-be-resolved t)
|
|
|
|
|
|
|
|
|
|
;; originally defined in mailalias.el ; build-mail-aliases calls this with
|
|
|
|
|
;; stuff parsed from the .mailrc file.
|
|
|
|
|
;;
|
1991-12-21 09:14:03 +00:00
|
|
|
|
;;;###autoload
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(defun define-mail-alias (name definition &optional from-mailrc-file)
|
|
|
|
|
"Define NAME as a mail-alias that translates to DEFINITION.
|
1992-05-03 21:16:09 +00:00
|
|
|
|
If DEFINITION contains multiple addresses, separate them with commas."
|
1991-12-17 03:37:43 +00:00
|
|
|
|
;; When this is called from build-mail-aliases, the third argument is
|
|
|
|
|
;; true, and we do some evil space->comma hacking like /bin/mail does.
|
|
|
|
|
(interactive "sDefine mail alias: \nsDefine %s as mail alias for: ")
|
|
|
|
|
;; Read the defaults first, if we have not done so.
|
|
|
|
|
(if (vectorp mail-aliases)
|
|
|
|
|
nil
|
|
|
|
|
(setq mail-aliases nil)
|
|
|
|
|
(define-abbrev-table 'mail-aliases '())
|
|
|
|
|
(if (file-exists-p (mail-abbrev-mailrc-file))
|
|
|
|
|
(build-mail-aliases)))
|
|
|
|
|
;; strip garbage from front and end
|
|
|
|
|
(if (string-match "\\`[ \t\n,]+" definition)
|
|
|
|
|
(setq definition (substring definition (match-end 0))))
|
|
|
|
|
(if (string-match "[ \t\n,]+\\'" definition)
|
|
|
|
|
(setq definition (substring definition 0 (match-beginning 0))))
|
|
|
|
|
(let ((result '())
|
|
|
|
|
(start 0)
|
|
|
|
|
(L (length definition))
|
|
|
|
|
end)
|
|
|
|
|
(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
|
1992-05-03 21:16:09 +00:00
|
|
|
|
;; double-quotes. Otherwise, addresses are separated by commas.
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(if from-mailrc-file
|
|
|
|
|
(if (eq ?\" (aref definition start))
|
|
|
|
|
(setq start (1+ start)
|
|
|
|
|
end (string-match "\"[ \t,]*" definition start))
|
|
|
|
|
(setq end (string-match "[ \t,]+" definition start)))
|
|
|
|
|
(setq end (string-match "[ \t\n,]*,[ \t\n,]*" definition start)))
|
|
|
|
|
(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)
|
1992-05-03 21:16:09 +00:00
|
|
|
|
mail-alias-separator-string)))
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(setq mail-abbrev-aliases-need-to-be-resolved t)
|
|
|
|
|
(setq name (downcase name))
|
|
|
|
|
;; use an abbrev table instead of an alist for mail-aliases.
|
|
|
|
|
(let ((abbrevs-changed abbrevs-changed)) ; protect this from being changed.
|
|
|
|
|
(define-abbrev mail-aliases name definition 'mail-abbrev-expand-hook)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun mail-resolve-all-aliases ()
|
|
|
|
|
"Resolve all forward references in the mail aliases table."
|
|
|
|
|
(if mail-abbrev-aliases-need-to-be-resolved
|
|
|
|
|
(progn
|
|
|
|
|
;; (message "Resolving mail aliases...")
|
|
|
|
|
(if (vectorp mail-aliases)
|
|
|
|
|
(mapatoms (function mail-resolve-all-aliases-1) mail-aliases))
|
|
|
|
|
(setq mail-abbrev-aliases-need-to-be-resolved nil)
|
|
|
|
|
;; (message "Resolving mail aliases... done.")
|
|
|
|
|
)))
|
|
|
|
|
|
1992-06-15 21:06:57 +00:00
|
|
|
|
(defun mail-resolve-all-aliases-1 (sym &optional so-far)
|
|
|
|
|
(if (memq sym so-far)
|
|
|
|
|
(error "mail alias loop detected: %s"
|
|
|
|
|
(mapconcat 'symbol-name (cons sym so-far) " <- ")))
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(let ((definition (and (boundp sym) (symbol-value sym))))
|
|
|
|
|
(if definition
|
|
|
|
|
(let ((result '())
|
|
|
|
|
(start 0))
|
|
|
|
|
(while start
|
|
|
|
|
(let ((end (string-match "[ \t\n]*,[, \t\n]*" definition start)))
|
|
|
|
|
(setq result (cons (substring definition start end) result)
|
|
|
|
|
start (and end (match-end 0)))))
|
|
|
|
|
(setq definition
|
|
|
|
|
(mapconcat (function (lambda (x)
|
|
|
|
|
(or (mail-resolve-all-aliases-1
|
1992-06-15 21:06:57 +00:00
|
|
|
|
(intern-soft x mail-aliases)
|
|
|
|
|
(cons sym so-far))
|
1991-12-17 03:37:43 +00:00
|
|
|
|
x)))
|
|
|
|
|
(nreverse result)
|
1992-05-03 21:16:09 +00:00
|
|
|
|
mail-alias-separator-string))
|
1991-12-17 03:37:43 +00:00
|
|
|
|
(set sym definition))))
|
|
|
|
|
(symbol-value sym))
|
|
|
|
|
|
|
|
|
|
|
1992-05-03 21:16:09 +00:00
|
|
|
|
(defun mail-abbrev-expand-hook ()
|
1992-03-24 04:22:48 +00:00
|
|
|
|
"For use as the fourth arg to define-abbrev.
|
1992-05-03 21:16:09 +00:00
|
|
|
|
After expanding a mail-abbrev, if fill-mode is on and we're past the
|
1992-03-24 04:22:48 +00:00
|
|
|
|
fill-column, break the line at the previous comma, and indent the next
|
|
|
|
|
line."
|
1992-04-07 21:48:04 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(let ((p (point))
|
|
|
|
|
bol comma fp)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(setq bol (point))
|
|
|
|
|
(goto-char p)
|
1992-04-05 23:25:04 +00:00
|
|
|
|
(while (and auto-fill-function
|
1992-04-07 21:48:04 +00:00
|
|
|
|
(>= (current-column) fill-column)
|
|
|
|
|
(search-backward "," bol t))
|
|
|
|
|
(setq comma (point))
|
|
|
|
|
(forward-char 1) ; Now we are just past the comma.
|
|
|
|
|
(insert "\n")
|
|
|
|
|
(delete-horizontal-space)
|
1992-05-03 21:16:09 +00:00
|
|
|
|
(setq p (point))
|
1992-04-07 21:48:04 +00:00
|
|
|
|
(indent-relative)
|
|
|
|
|
(setq fp (buffer-substring p (point)))
|
|
|
|
|
;; Go to the end of the new line.
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(if (> (current-column) fill-column)
|
|
|
|
|
;; It's still too long; do normal auto-fill.
|
|
|
|
|
(let ((fill-prefix (or fp "\t")))
|
|
|
|
|
(do-auto-fill)))
|
|
|
|
|
;; Resume the search.
|
|
|
|
|
(goto-char comma)
|
|
|
|
|
))))
|
1992-03-24 04:22:48 +00:00
|
|
|
|
|
|
|
|
|
;;; Syntax tables and abbrev-expansion
|
1991-12-17 03:37:43 +00:00
|
|
|
|
|
1992-03-24 04:22:48 +00:00
|
|
|
|
(defvar mail-abbrev-mode-regexp "^\\(Resent-\\)?\\(To\\|From\\|CC\\|BCC\\):"
|
1991-12-17 03:37:43 +00:00
|
|
|
|
"*Regexp to select mail-headers in which mail-aliases should be expanded.
|
|
|
|
|
This string it will be handed to `looking-at' with the point at the beginning
|
|
|
|
|
of the current line; if it matches, abbrev mode will be turned on, otherwise
|
|
|
|
|
it will be turned off. (You don't need to worry about continuation lines.)
|
|
|
|
|
This should be set to match those mail fields in which you want abbreviations
|
|
|
|
|
turned on.")
|
|
|
|
|
|
|
|
|
|
(defvar mail-mode-syntax-table (copy-syntax-table text-mode-syntax-table)
|
1992-03-24 04:22:48 +00:00
|
|
|
|
"The syntax table which is used in send-mail mode message bodies.")
|
1991-12-17 03:37:43 +00:00
|
|
|
|
|
|
|
|
|
(defvar mail-mode-header-syntax-table
|
|
|
|
|
(let ((tab (copy-syntax-table text-mode-syntax-table)))
|
1992-05-03 21:16:09 +00:00
|
|
|
|
;; This makes the characters "@%!._-" be considered symbol-consituents
|
1991-12-17 03:37:43 +00:00
|
|
|
|
;; but not word-constituents, so forward-sexp will move you over an
|
|
|
|
|
;; entire address, but forward-word will only move you over a sequence
|
|
|
|
|
;; of alphanumerics. (Clearly the right thing.)
|
|
|
|
|
(modify-syntax-entry ?@ "_" tab)
|
|
|
|
|
(modify-syntax-entry ?% "_" tab)
|
|
|
|
|
(modify-syntax-entry ?! "_" tab)
|
|
|
|
|
(modify-syntax-entry ?. "_" tab)
|
|
|
|
|
(modify-syntax-entry ?_ "_" tab)
|
|
|
|
|
(modify-syntax-entry ?- "_" tab)
|
|
|
|
|
(modify-syntax-entry ?< "(>" tab)
|
|
|
|
|
(modify-syntax-entry ?> ")<" tab)
|
|
|
|
|
tab)
|
1992-03-24 04:22:48 +00:00
|
|
|
|
"The syntax table used in send-mail mode when in a mail-address header.
|
|
|
|
|
mail-mode-syntax-table is used when the cursor is in the message body or in
|
|
|
|
|
non-address headers.")
|
|
|
|
|
|
|
|
|
|
(defvar mail-abbrev-syntax-table
|
|
|
|
|
(let* ((tab (copy-syntax-table mail-mode-header-syntax-table))
|
|
|
|
|
(i (1- (length tab)))
|
|
|
|
|
(_ (aref (standard-syntax-table) ?_))
|
|
|
|
|
(w (aref (standard-syntax-table) ?w)))
|
|
|
|
|
(while (>= i 0)
|
|
|
|
|
(if (= (aref tab i) _) (aset tab i w))
|
|
|
|
|
(setq i (1- i)))
|
|
|
|
|
tab)
|
|
|
|
|
"The syntax-table used for abbrev-expansion purposes; this is not actually
|
|
|
|
|
made the current syntax table of the buffer, but simply controls the set of
|
|
|
|
|
characters which may be a part of the name of a mail-alias.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun mail-abbrev-in-expansion-header-p ()
|
|
|
|
|
"Whether point is in a mail-address header field."
|
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(and ;;
|
|
|
|
|
;; we are on an appropriate header line...
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
;; skip backwards over continuation lines.
|
|
|
|
|
(while (and (looking-at "^[ \t]")
|
|
|
|
|
(not (= (point) (point-min))))
|
|
|
|
|
(forward-line -1))
|
|
|
|
|
;; are we at the front of an appropriate header line?
|
|
|
|
|
(looking-at mail-abbrev-mode-regexp))
|
|
|
|
|
;;
|
|
|
|
|
;; ...and we are before the mail-header-separator
|
|
|
|
|
(< (point)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward (concat "\n" mail-header-separator "\n")
|
|
|
|
|
nil 0)
|
|
|
|
|
(point))))))
|
|
|
|
|
|
|
|
|
|
(defvar mail-mode-abbrev-table) ; quiet the compiler
|
1991-12-17 03:37:43 +00:00
|
|
|
|
|
1992-05-03 21:16:09 +00:00
|
|
|
|
(defun sendmail-pre-abbrev-expand-hook ()
|
1992-09-15 19:38:02 +00:00
|
|
|
|
(and (and mail-aliases (not (eq mail-aliases t)))
|
|
|
|
|
(if (mail-abbrev-in-expansion-header-p)
|
|
|
|
|
(progn
|
|
|
|
|
;;
|
|
|
|
|
;; We are in a To: (or CC:, or whatever) header, and
|
|
|
|
|
;; should use word-abbrevs to expand mail aliases.
|
|
|
|
|
|
|
|
|
|
;; Before anything else, resolve aliases if they need it.
|
|
|
|
|
(and mail-abbrev-aliases-need-to-be-resolved
|
|
|
|
|
(mail-resolve-all-aliases))
|
|
|
|
|
|
|
|
|
|
;; Now proceed with the abbrev section.
|
|
|
|
|
;; - First, install the mail-aliases as the word-abbrev table.
|
|
|
|
|
;; - Then install the mail-abbrev-syntax-table, which
|
|
|
|
|
;; temporarily marks all of the
|
|
|
|
|
;; non-alphanumeric-atom-characters (the "_"
|
|
|
|
|
;; syntax ones) as being normal word-syntax. We do this
|
|
|
|
|
;; because the C code for expand-abbrev only works on words,
|
|
|
|
|
;; and we want these characters to be considered words for
|
|
|
|
|
;; the purpose of abbrev expansion.
|
|
|
|
|
;; - Then we call expand-abbrev again, recursively, to do
|
|
|
|
|
;; the abbrev expansion with the above syntax table.
|
|
|
|
|
;; - Then we do a trick which tells the expand-abbrev frame
|
|
|
|
|
;; which invoked us to not continue (and thus not
|
|
|
|
|
;; expand twice.) This means that any abbrev expansion
|
|
|
|
|
;; will happen as a result of this function's call to
|
|
|
|
|
;; expand-abbrev, and not as a result of the call to
|
|
|
|
|
;; expand-abbrev which invoked *us*.
|
|
|
|
|
;; - Then we set the syntax table to
|
|
|
|
|
;; mail-mode-header-syntax-table, which doesn't have
|
|
|
|
|
;; anything to do with abbrev expansion, but
|
|
|
|
|
;; is just for the user's convenience (see its doc string.)
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
|
|
(setq local-abbrev-table mail-aliases)
|
|
|
|
|
|
|
|
|
|
;; If the character just typed was non-alpha-symbol-syntax,
|
|
|
|
|
;; then don't expand the abbrev now (that is, don't expand
|
|
|
|
|
;; when the user types -.) Check the character's syntax in
|
|
|
|
|
;; the mail-mode-header-syntax-table.
|
|
|
|
|
|
|
|
|
|
(set-syntax-table mail-mode-header-syntax-table)
|
|
|
|
|
(or (eq (char-syntax last-command-char) ?_)
|
|
|
|
|
(let ((pre-abbrev-expand-hook nil)) ; That's us; don't loop.
|
|
|
|
|
;; Use this table so that abbrevs can have hyphens in them.
|
|
|
|
|
(set-syntax-table mail-abbrev-syntax-table)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
;; Now set it back to what it was before.
|
|
|
|
|
(set-syntax-table mail-mode-header-syntax-table)))
|
|
|
|
|
(setq abbrev-start-location (point) ; This is the trick.
|
|
|
|
|
abbrev-start-location-buffer (current-buffer)))
|
|
|
|
|
|
|
|
|
|
;; We're not in a mail header where mail aliases should
|
|
|
|
|
;; be expanded, then use the normal mail-mode abbrev table
|
|
|
|
|
;; (if any) and the normal mail-mode syntax table.
|
|
|
|
|
|
|
|
|
|
(setq local-abbrev-table (and (boundp 'mail-mode-abbrev-table)
|
|
|
|
|
mail-mode-abbrev-table))
|
|
|
|
|
(set-syntax-table mail-mode-syntax-table))
|
|
|
|
|
))
|
1992-03-24 04:22:48 +00:00
|
|
|
|
|
|
|
|
|
;;; utilities
|
1991-12-17 03:37:43 +00:00
|
|
|
|
|
|
|
|
|
(defun merge-mail-aliases (file)
|
|
|
|
|
"Merge mail aliases from the given file with existing ones."
|
|
|
|
|
(interactive (list
|
|
|
|
|
(let ((insert-default-directory t)
|
|
|
|
|
(default-directory (expand-file-name "~/"))
|
|
|
|
|
(def (mail-abbrev-mailrc-file)))
|
|
|
|
|
(read-file-name
|
|
|
|
|
(format "Read additional aliases from file: (default %s) "
|
|
|
|
|
def)
|
|
|
|
|
default-directory
|
|
|
|
|
(expand-file-name def default-directory)
|
|
|
|
|
t))))
|
|
|
|
|
(build-mail-aliases file))
|
|
|
|
|
|
|
|
|
|
(defun rebuild-mail-aliases (file)
|
|
|
|
|
"Rebuild all the mail aliases from the given file."
|
|
|
|
|
(interactive (list
|
|
|
|
|
(let ((insert-default-directory t)
|
|
|
|
|
(default-directory (expand-file-name "~/"))
|
|
|
|
|
(def (mail-abbrev-mailrc-file)))
|
|
|
|
|
(read-file-name
|
|
|
|
|
(format "Read mail aliases from file: (default %s) " def)
|
|
|
|
|
default-directory
|
|
|
|
|
(expand-file-name def default-directory)
|
|
|
|
|
t))))
|
|
|
|
|
(setq mail-aliases nil)
|
|
|
|
|
(build-mail-aliases file))
|
1992-03-16 20:39:07 +00:00
|
|
|
|
|
1992-03-24 04:22:48 +00:00
|
|
|
|
(defun mail-interactive-insert-alias (&optional alias)
|
|
|
|
|
"Prompt for and insert a mail alias."
|
1992-08-02 03:36:38 +00:00
|
|
|
|
(interactive (progn
|
|
|
|
|
(if (not (vectorp mail-aliases)) (mail-aliases-setup))
|
|
|
|
|
(list (completing-read "Expand alias: " mail-aliases nil t))))
|
|
|
|
|
(if (not (vectorp mail-aliases)) (mail-aliases-setup))
|
1992-03-24 06:18:35 +00:00
|
|
|
|
(insert (or (and alias (symbol-value (intern-soft alias mail-aliases))) "")))
|
1992-03-24 04:22:48 +00:00
|
|
|
|
|
|
|
|
|
(defun abbrev-hacking-next-line (&optional arg)
|
|
|
|
|
"Just like `next-line' (\\[next-line]) but expands abbrevs when at \
|
|
|
|
|
end of line."
|
|
|
|
|
(interactive "p")
|
1992-06-15 21:06:57 +00:00
|
|
|
|
(if (looking-at "[ \t]*\n") (expand-abbrev))
|
|
|
|
|
(setq this-command 'next-line)
|
1992-03-24 04:22:48 +00:00
|
|
|
|
(next-line arg))
|
|
|
|
|
|
|
|
|
|
(defun abbrev-hacking-end-of-buffer (&optional arg)
|
|
|
|
|
"Just like `end-of-buffer' (\\[end-of-buffer]) but expands abbrevs when at \
|
|
|
|
|
end of line."
|
|
|
|
|
(interactive "P")
|
1992-06-15 21:06:57 +00:00
|
|
|
|
(if (looking-at "[ \t]*\n") (expand-abbrev))
|
|
|
|
|
(setq this-command 'end-of-buffer)
|
1992-03-24 04:22:48 +00:00
|
|
|
|
(end-of-buffer arg))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map "\C-c\C-a" 'mail-interactive-insert-alias)
|
|
|
|
|
|
1992-04-05 23:25:04 +00:00
|
|
|
|
;;(define-key mail-mode-map "\C-n" 'abbrev-hacking-next-line)
|
|
|
|
|
;;(define-key mail-mode-map "\M->" 'abbrev-hacking-end-of-buffer)
|
1991-12-17 03:37:43 +00:00
|
|
|
|
|
1992-03-24 04:22:48 +00:00
|
|
|
|
(provide 'mail-abbrevs)
|
1992-04-05 23:25:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; V18 compatibility
|
1992-05-03 21:16:09 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; All of the Emacs18 stuff is isolated down here so that it will be
|
|
|
|
|
;;; easy to delete once v18 finally bites the dust.
|
|
|
|
|
;;;
|
|
|
|
|
;;; These defuns and defvars aren't inside the cond in deference to
|
|
|
|
|
;;; the intense brokenness of the v18 byte-compiler.
|
1992-06-15 21:06:57 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; All the code on this page is gross and hidious and awful and might
|
|
|
|
|
;;; not even work all that well. Comfort yourself with knowing that the
|
|
|
|
|
;;; v19 code above works wonderfully.
|
1992-04-05 23:25:04 +00:00
|
|
|
|
|
|
|
|
|
(defun sendmail-v18-self-insert-command (arg)
|
|
|
|
|
"Just like self-insert-command, but runs sendmail-pre-abbrev-expand-hook."
|
|
|
|
|
(interactive "p")
|
1992-06-15 21:06:57 +00:00
|
|
|
|
(if (not (eq (char-syntax last-command-char) ?w))
|
1992-05-03 21:16:09 +00:00
|
|
|
|
(progn
|
|
|
|
|
(sendmail-pre-abbrev-expand-hook)
|
|
|
|
|
;; Unhack expand-abbrev, so it will work right next time around.
|
|
|
|
|
(setq abbrev-start-location nil)))
|
1992-06-15 21:06:57 +00:00
|
|
|
|
;; this is gross and wasteful.
|
|
|
|
|
(let ((abbrev-mode (if (mail-abbrev-in-expansion-header-p)
|
|
|
|
|
nil
|
|
|
|
|
abbrev-mode)))
|
1992-05-03 21:16:09 +00:00
|
|
|
|
(self-insert-command arg)))
|
1992-04-05 23:25:04 +00:00
|
|
|
|
|
1992-06-15 21:06:57 +00:00
|
|
|
|
(defun abbrev-hacking-next-line-v18 (arg)
|
|
|
|
|
(if (looking-at "[ \t]*\n") (sendmail-pre-abbrev-expand-hook))
|
|
|
|
|
(setq this-command 'next-line)
|
|
|
|
|
(next-line arg))
|
|
|
|
|
|
|
|
|
|
(defun abbrev-hacking-end-of-buffer-v18 (arg)
|
|
|
|
|
(if (looking-at "[ \t]*\n") (sendmail-pre-abbrev-expand-hook))
|
|
|
|
|
(setq this-command 'end-of-buffer)
|
|
|
|
|
(end-of-buffer arg))
|
|
|
|
|
|
1992-04-05 23:25:04 +00:00
|
|
|
|
(defvar mail-abbrevs-v18-map-munged nil)
|
|
|
|
|
|
|
|
|
|
(defun mail-abbrevs-v18-munge-map ()
|
1992-05-03 21:16:09 +00:00
|
|
|
|
;; For every key that is bound to self-insert-command in global-map,
|
|
|
|
|
;; bind that key to sendmail-self-insert-command in mail-mode-map.
|
|
|
|
|
;; We used to do this by making the mail-mode-map be a non-sparse map,
|
|
|
|
|
;; but that made the esc-map be shared in such a way that making a
|
|
|
|
|
;; local meta binding in the mail-mode-map made a *global* binding
|
|
|
|
|
;; instead. Yucko.
|
|
|
|
|
(let ((global-map (current-global-map))
|
1992-06-15 21:06:57 +00:00
|
|
|
|
new-bindings
|
1992-05-03 21:16:09 +00:00
|
|
|
|
(i 0))
|
|
|
|
|
(while (< i 128)
|
|
|
|
|
(if (eq 'self-insert-command (or (cdr (assq i mail-mode-map))
|
|
|
|
|
(aref global-map i)))
|
1992-06-15 21:06:57 +00:00
|
|
|
|
(setq new-bindings
|
|
|
|
|
(cons (cons i 'sendmail-v18-self-insert-command)
|
|
|
|
|
new-bindings)))
|
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(setq mail-mode-map
|
|
|
|
|
(nconc (copy-keymap mail-mode-map) (nreverse new-bindings))))
|
1992-04-05 23:25:04 +00:00
|
|
|
|
(setq mail-abbrevs-v18-map-munged t))
|
|
|
|
|
|
1992-05-03 21:16:09 +00:00
|
|
|
|
(defun mail-aliases-setup-v18 ()
|
1992-04-05 23:25:04 +00:00
|
|
|
|
"Put this on `mail-setup-hook' to use mail-abbrevs."
|
1992-06-15 21:06:57 +00:00
|
|
|
|
(if (not (eq major-mode 'mail-mode))
|
|
|
|
|
nil
|
|
|
|
|
(or (and mail-mode-map (eq (current-local-map) mail-mode-map))
|
|
|
|
|
(error "shut 'er down clancy, she's suckin' mud"))
|
|
|
|
|
(if (and (not (vectorp mail-aliases))
|
|
|
|
|
(file-exists-p (mail-abbrev-mailrc-file)))
|
|
|
|
|
(build-mail-aliases))
|
|
|
|
|
(or mail-abbrevs-v18-map-munged (mail-abbrevs-v18-munge-map))
|
|
|
|
|
(use-local-map mail-mode-map)
|
|
|
|
|
(abbrev-mode 1)))
|
1992-04-05 23:25:04 +00:00
|
|
|
|
|
|
|
|
|
|
1992-09-15 19:38:02 +00:00
|
|
|
|
(cond ((string-match "^18\\." emacs-version)
|
1992-05-03 21:16:09 +00:00
|
|
|
|
;;
|
|
|
|
|
;; v19 (and this code) uses a new name for this function.
|
1992-04-05 23:25:04 +00:00
|
|
|
|
(or (fboundp 'buffer-disable-undo)
|
|
|
|
|
(fset 'buffer-disable-undo 'buffer-flush-undo))
|
1992-05-03 21:16:09 +00:00
|
|
|
|
;;
|
|
|
|
|
;; v19 (and this code) uses a new name for auto-fill-hook (-function).
|
|
|
|
|
;; Encapsulate the function that uses it to bind the new name.
|
1992-04-05 23:25:04 +00:00
|
|
|
|
(or (fboundp 'mail-abbrev-expand-hook-v19)
|
|
|
|
|
(fset 'mail-abbrev-expand-hook-v19
|
|
|
|
|
(symbol-function 'mail-abbrev-expand-hook)))
|
1992-05-03 21:16:09 +00:00
|
|
|
|
(fset 'mail-abbrev-expand-hook
|
|
|
|
|
(function (lambda ()
|
|
|
|
|
(let ((auto-fill-function auto-fill-hook))
|
|
|
|
|
(mail-abbrev-expand-hook-v19)))))
|
|
|
|
|
;;
|
|
|
|
|
;; Turn off the broken v18 code (that is still called from sendmail.el)
|
1992-04-05 23:25:04 +00:00
|
|
|
|
(fset 'expand-mail-aliases
|
1992-05-03 21:16:09 +00:00
|
|
|
|
(function (lambda (&rest args)
|
|
|
|
|
"Obsoleted by mail-abbrevs. Does nothing."
|
|
|
|
|
nil)))
|
|
|
|
|
;;
|
1992-06-15 21:06:57 +00:00
|
|
|
|
;; Redefine the abbrev-hacking functions. Yuck.
|
|
|
|
|
(fset 'abbrev-hacking-next-line
|
|
|
|
|
(function (lambda (p) (interactive "p")
|
|
|
|
|
(abbrev-hacking-next-line-v18 p))))
|
|
|
|
|
(fset 'abbrev-hacking-end-of-buffer
|
|
|
|
|
(function (lambda (p) (interactive "P")
|
|
|
|
|
(abbrev-hacking-end-of-buffer-v18 p))))
|
|
|
|
|
;;
|
1992-05-03 21:16:09 +00:00
|
|
|
|
;; Encapsulate mail-setup to do the necessary buffer initializations.
|
|
|
|
|
(or (fboundp 'mail-setup-v18)
|
|
|
|
|
(fset 'mail-setup-v18 (symbol-function 'mail-setup)))
|
|
|
|
|
(fset 'mail-setup
|
|
|
|
|
(function (lambda (&rest args)
|
|
|
|
|
(mail-aliases-setup-v18)
|
|
|
|
|
(apply 'mail-setup-v18 args))))
|
1992-06-15 21:06:57 +00:00
|
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
;; Encapsulate VM's version of mail-setup as well, if vm-mail is
|
|
|
|
|
;; defined as a function or as an autoload.
|
|
|
|
|
(cond ((and (fboundp 'vm-mail)
|
|
|
|
|
(if (eq 'autoload (car-safe (symbol-function 'vm-mail)))
|
|
|
|
|
(load (nth 1 (symbol-function 'vm-mail)) t)
|
|
|
|
|
t))
|
|
|
|
|
(or (fboundp 'vm-mail-internal-v18)
|
|
|
|
|
(fset 'vm-mail-internal-v18
|
|
|
|
|
(symbol-function 'vm-mail-internal)))
|
|
|
|
|
(fset 'vm-mail-internal
|
|
|
|
|
(function (lambda (&rest args)
|
1992-09-15 19:38:02 +00:00
|
|
|
|
(mail-aliases-setup-v18)
|
|
|
|
|
(apply 'vm-mail-internal-v18 args))))))
|
1992-06-15 21:06:57 +00:00
|
|
|
|
|
|
|
|
|
;; If we're being loaded from mail-setup-hook or mail-mode-hook
|
|
|
|
|
;; as run from inside mail-setup or vm-mail-internal, then install
|
|
|
|
|
;; right now.
|
|
|
|
|
(if (eq major-mode 'mail-mode)
|
|
|
|
|
(mail-aliases-setup-v18))
|
1992-04-05 23:25:04 +00:00
|
|
|
|
)
|
1992-05-03 21:16:09 +00:00
|
|
|
|
|
1992-04-05 23:25:04 +00:00
|
|
|
|
(t ; v19
|
|
|
|
|
(fmakunbound 'expand-mail-aliases)))
|