1996-02-12 08:09:49 +00:00
|
|
|
|
;;; mailalias.el --- expand and complete mailing address aliases
|
1992-05-30 22:12:04 +00:00
|
|
|
|
|
1997-04-05 21:57:48 +00:00
|
|
|
|
;; Copyright (C) 1985, 1987, 1995, 1996, 1997 Free Software Foundation, Inc.
|
1992-07-22 04:22:42 +00:00
|
|
|
|
|
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
|
1996-01-14 07:34:30 +00:00
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1990-03-06 16:45:37 +00:00
|
|
|
|
|
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
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defgroup mailalias nil
|
|
|
|
|
"Expanding mail aliases"
|
|
|
|
|
:group 'mail)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defcustom mail-passwd-files '("/etc/passwd")
|
|
|
|
|
"*List of files from which to determine valid user names."
|
|
|
|
|
:type '(repeat string)
|
|
|
|
|
:group 'mailalias)
|
1997-03-22 03:49:14 +00:00
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defcustom mail-passwd-command nil
|
|
|
|
|
"*Shell command to retrieve text to add to `/etc/passwd', or nil."
|
|
|
|
|
:type '(choice string (const nil))
|
|
|
|
|
:group 'mailalias)
|
1997-03-22 03:49:14 +00:00
|
|
|
|
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(defvar mail-directory-names t
|
|
|
|
|
"Alist of mail address directory entries.
|
|
|
|
|
When t this still needs to be initialized.")
|
|
|
|
|
|
|
|
|
|
(defvar mail-address-field-regexp
|
|
|
|
|
"^\\(Resent-\\)?\\(To\\|From\\|CC\\|BCC\\|Reply-to\\):")
|
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defcustom mail-complete-alist
|
1997-07-04 18:56:19 +00:00
|
|
|
|
;; Don't use backquote here; we don't want backquote to get loaded
|
|
|
|
|
;; just because of loading this file.
|
1998-04-24 20:17:35 +00:00
|
|
|
|
;; Don't refer to mail-address-field-regexp here;
|
|
|
|
|
;; that confuses some things such as cus-dep.el.
|
|
|
|
|
(cons '("^\\(Resent-\\)?\\(To\\|From\\|CC\\|BCC\\|Reply-to\\):"
|
|
|
|
|
. (mail-get-names pattern))
|
1997-07-04 18:56:19 +00:00
|
|
|
|
'(("Newsgroups:" . (if (boundp 'gnus-active-hashtb)
|
|
|
|
|
gnus-active-hashtb
|
|
|
|
|
(if (boundp news-group-article-assoc)
|
|
|
|
|
news-group-article-assoc)))
|
|
|
|
|
("Followup-To:" . (mail-sentto-newsgroups))
|
|
|
|
|
;;("Distribution:" ???)
|
|
|
|
|
))
|
1997-06-07 23:12:19 +00:00
|
|
|
|
"*Alist of header field and expression to return alist for completion.
|
|
|
|
|
The expression may reference the variable `pattern'
|
|
|
|
|
which will hold the string being completed.
|
|
|
|
|
If not on matching header, `mail-complete-function' gets called instead."
|
1999-01-25 09:45:02 +00:00
|
|
|
|
:type 'alist
|
1997-06-07 23:12:19 +00:00
|
|
|
|
:group 'mailalias)
|
|
|
|
|
(put 'mail-complete-alist 'risky-local-variable t)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
1997-04-05 21:57:48 +00:00
|
|
|
|
;;;###autoload
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defcustom mail-complete-style 'angles
|
1997-04-05 21:57:48 +00:00
|
|
|
|
"*Specifies how \\[mail-complete] formats the full name when it completes.
|
|
|
|
|
If `nil', they contain just the return address like:
|
|
|
|
|
king@grassland.com
|
|
|
|
|
If `parens', they look like:
|
|
|
|
|
king@grassland.com (Elvis Parsley)
|
|
|
|
|
If `angles', they look like:
|
1997-06-07 23:12:19 +00:00
|
|
|
|
Elvis Parsley <king@grassland.com>"
|
|
|
|
|
:type '(choice (const angles) (const parens) (const nil))
|
|
|
|
|
:group 'mailalias)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defcustom mail-complete-function 'ispell-complete-word
|
|
|
|
|
"*Function to call when completing outside `mail-complete-alist'-header."
|
|
|
|
|
:type '(choice function (const nil))
|
|
|
|
|
:group 'mailalias)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defcustom mail-directory-function nil
|
2003-05-06 17:48:06 +00:00
|
|
|
|
"*Function to get completions from directory service or nil for none.
|
1997-06-07 23:12:19 +00:00
|
|
|
|
See `mail-directory-requery'."
|
|
|
|
|
:type '(choice function (const nil))
|
|
|
|
|
:group 'mailalias)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
|
|
|
|
;; This is for when the directory is huge, or changes frequently.
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defcustom mail-directory-requery nil
|
2003-05-06 17:48:06 +00:00
|
|
|
|
"*When non-nil call `mail-directory-function' for each completion.
|
1996-02-12 08:09:49 +00:00
|
|
|
|
In that case, one argument gets passed to the function, the partial string
|
1997-06-07 23:12:19 +00:00
|
|
|
|
entered so far."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'mailalias)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defcustom mail-directory-process nil
|
|
|
|
|
"*Shell command to get the list of names from a mail directory.
|
|
|
|
|
This value is used when the value of `mail-directory-function'
|
|
|
|
|
is `mail-directory-process'. The value should be a list
|
|
|
|
|
of the form (COMMAND ARG ...), where each of the list elements
|
|
|
|
|
is evaluated. When `mail-directory-requery' is non-nil, during
|
|
|
|
|
evaluation of these elements, the variable `pattern' contains
|
|
|
|
|
the partial input being completed.
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
The value might look like this:
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
|
|
|
|
'(remote-shell-program \"HOST\" \"-nl\" \"USER\" \"COMMAND\")
|
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
or like this:
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
'(remote-shell-program \"HOST\" \"-n\" \"COMMAND '^\" pattern \"'\")"
|
|
|
|
|
:type 'sexp
|
|
|
|
|
:group 'mailalias)
|
|
|
|
|
(put 'mail-directory-process 'risky-local-variable t)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defcustom mail-directory-stream nil
|
|
|
|
|
"*List of (HOST SERVICE) for stream connection to mail directory."
|
|
|
|
|
:type 'sexp
|
|
|
|
|
:group 'mailalias)
|
|
|
|
|
(put 'mail-directory-stream 'risky-local-variable t)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
(defcustom mail-directory-parser nil
|
|
|
|
|
"*How to interpret the output of `mail-directory-function'.
|
1996-02-12 08:09:49 +00:00
|
|
|
|
Three types of values are possible:
|
|
|
|
|
|
|
|
|
|
- nil means to gather each line as one name
|
|
|
|
|
- regexp means first \\(grouping\\) in successive matches is name
|
1997-06-07 23:12:19 +00:00
|
|
|
|
- function called at beginning of buffer that returns an alist of names"
|
1997-06-08 20:50:45 +00:00
|
|
|
|
:type '(choice (const nil) regexp function)
|
1997-06-07 23:12:19 +00:00
|
|
|
|
:group 'mailalias)
|
|
|
|
|
(put 'mail-directory-parser 'risky-local-variable t)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
|
1997-06-07 23:12:19 +00:00
|
|
|
|
;; Internal variables.
|
|
|
|
|
|
|
|
|
|
(defvar mail-names t
|
|
|
|
|
"Alist of local users, aliases and directory entries as available.
|
|
|
|
|
Elements have the form (MAILNAME) or (MAILNAME . FULLNAME).
|
|
|
|
|
If the value means t, it means the real value should be calculated
|
|
|
|
|
for the next use. this is used in `mail-complete'.")
|
|
|
|
|
|
|
|
|
|
(defvar mail-local-names t
|
|
|
|
|
"Alist of local users.
|
|
|
|
|
When t this still needs to be initialized.")
|
|
|
|
|
|
1996-02-12 08:09:49 +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.
|
1997-05-14 07:27:25 +00:00
|
|
|
|
;;;###autoload
|
1990-03-06 16:45:37 +00:00
|
|
|
|
(defun expand-mail-aliases (beg end &optional exclude)
|
|
|
|
|
"Expand all mail aliases in suitable header fields found between BEG and END.
|
1998-04-30 06:27:58 +00:00
|
|
|
|
If interactive, expand in header fields.
|
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."
|
1997-05-14 07:27:25 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(save-excursion
|
|
|
|
|
(list (goto-char (point-min))
|
1998-04-30 06:27:58 +00:00
|
|
|
|
(mail-header-end))))
|
1996-01-05 21:41:55 +00:00
|
|
|
|
(sendmail-sync-aliases)
|
1997-05-14 07:27:25 +00:00
|
|
|
|
(when (eq mail-aliases t)
|
|
|
|
|
(setq mail-aliases nil)
|
|
|
|
|
(build-mail-aliases))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char beg)
|
|
|
|
|
(setq end (set-marker (make-marker) end))
|
|
|
|
|
(let ((case-fold-search nil))
|
|
|
|
|
(while (let ((case-fold-search t))
|
|
|
|
|
(re-search-forward mail-address-field-regexp 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 ((string (buffer-substring-no-properties pos epos))
|
|
|
|
|
translation)
|
|
|
|
|
(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)
|
|
|
|
|
(when exclude
|
|
|
|
|
(let ((regexp (concat "\\b\\(" exclude "\\)\\b"))
|
1990-03-06 16:45:37 +00:00
|
|
|
|
(end (point-marker)))
|
|
|
|
|
(goto-char pos)
|
|
|
|
|
(while (re-search-forward regexp end t)
|
|
|
|
|
(replace-match ""))
|
|
|
|
|
(goto-char end)))
|
1997-05-14 07:27:25 +00:00
|
|
|
|
(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))))
|
1990-03-06 16:45:37 +00:00
|
|
|
|
|
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)))
|
1998-02-01 23:56:13 +00:00
|
|
|
|
;; In case mail-aliases is t, make sure define-mail-alias
|
|
|
|
|
;; does not recursively call build-mail-aliases.
|
|
|
|
|
(setq mail-aliases nil)
|
1990-03-06 16:45:37 +00:00
|
|
|
|
(let ((buffer nil)
|
|
|
|
|
(obuf (current-buffer)))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(setq buffer (generate-new-buffer " mailrc"))
|
1990-03-06 16:45:37 +00:00
|
|
|
|
(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
|
1998-09-30 19:16:47 +00:00
|
|
|
|
"^\\(a\\|alias\\|g\\|group\\)[ \t]+\\([^ \t\n]+\\)" nil t)
|
1995-07-10 14:46:00 +00:00
|
|
|
|
(let* ((name (match-string 2))
|
1998-09-30 19:16:47 +00:00
|
|
|
|
(start (progn (skip-chars-forward " \t") (point)))
|
|
|
|
|
value)
|
1990-03-06 16:45:37 +00:00
|
|
|
|
(end-of-line)
|
1998-09-30 19:16:47 +00:00
|
|
|
|
(setq value (buffer-substring-no-properties start (point)))
|
|
|
|
|
(unless (equal value "")
|
|
|
|
|
(define-mail-alias name value 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.
|
2003-02-04 13:24:35 +00:00
|
|
|
|
If FROM-MAILRC-FILE is non-nil, then addresses in DEFINITION
|
1995-06-30 20:27:28 +00:00
|
|
|
|
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.
|
1998-02-01 23:56:13 +00:00
|
|
|
|
;; But not if we are doing that already right now.
|
|
|
|
|
(unless from-mailrc-file
|
|
|
|
|
(sendmail-sync-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))
|
1997-12-21 02:07:32 +00:00
|
|
|
|
convert-backslash
|
1994-06-19 19:52:02 +00:00
|
|
|
|
end tem)
|
|
|
|
|
(while start
|
1997-12-21 02:07:32 +00:00
|
|
|
|
(setq convert-backslash nil)
|
1994-06-19 19:52:02 +00:00
|
|
|
|
;; 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))
|
1998-05-15 21:50:07 +00:00
|
|
|
|
;; The following test on `found' compensates for a bug
|
|
|
|
|
;; in match-end, which does not return nil when match
|
|
|
|
|
;; failed.
|
|
|
|
|
(let ((found (string-match "[^\\]\\(\\([\\][\\]\\)*\\)\"[ \t,]*"
|
|
|
|
|
definition start)))
|
|
|
|
|
(setq start (1+ start)
|
|
|
|
|
end (and found (match-end 1))
|
|
|
|
|
convert-backslash t))
|
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)))
|
1997-12-21 02:07:32 +00:00
|
|
|
|
(let ((temp (substring definition start end))
|
|
|
|
|
(pos 0))
|
|
|
|
|
(setq start (and end
|
|
|
|
|
(/= (match-end 0) L)
|
|
|
|
|
(match-end 0)))
|
|
|
|
|
(if convert-backslash
|
|
|
|
|
(while (string-match "[\\]" temp pos)
|
|
|
|
|
(setq temp (replace-match "" t t temp))
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(if start
|
1997-12-21 02:07:32 +00:00
|
|
|
|
(setq start (1- start)))
|
|
|
|
|
(setq pos (match-end 0))))
|
|
|
|
|
(setq result (cons temp result))))
|
1994-06-19 19:52:02 +00:00
|
|
|
|
(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)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(setq mail-aliases (cons (cons name definition) mail-aliases)
|
|
|
|
|
mail-names t))))
|
|
|
|
|
|
1996-02-26 01:32:31 +00:00
|
|
|
|
;;;###autoload
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(defun mail-complete (arg)
|
|
|
|
|
"Perform completion on header field or word preceding point.
|
|
|
|
|
Completable headers are according to `mail-complete-alist'. If none matches
|
|
|
|
|
current header, calls `mail-complete-function' and passes prefix arg if any."
|
|
|
|
|
(interactive "P")
|
1996-06-24 09:50:09 +00:00
|
|
|
|
;; Read the defaults first, if we have not done so.
|
|
|
|
|
(sendmail-sync-aliases)
|
|
|
|
|
(if (eq mail-aliases t)
|
|
|
|
|
(progn
|
|
|
|
|
(setq mail-aliases nil)
|
|
|
|
|
(if (file-exists-p mail-personal-alias-file)
|
|
|
|
|
(build-mail-aliases))))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(let ((list mail-complete-alist))
|
1998-06-26 06:04:56 +00:00
|
|
|
|
(if (and (< 0 (mail-header-end))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(if (re-search-backward "^[^\t]" nil t)
|
|
|
|
|
(while list
|
|
|
|
|
(if (looking-at (car (car list)))
|
|
|
|
|
(setq arg (cdr (car list))
|
|
|
|
|
list ())
|
|
|
|
|
(setq list (cdr list)))))
|
|
|
|
|
arg))
|
|
|
|
|
(let* ((end (point))
|
|
|
|
|
(beg (save-excursion
|
|
|
|
|
(skip-chars-backward "^ \t<,:")
|
|
|
|
|
(point)))
|
|
|
|
|
(pattern (buffer-substring beg end))
|
|
|
|
|
completion)
|
|
|
|
|
(setq list (eval arg)
|
|
|
|
|
completion (try-completion pattern list))
|
|
|
|
|
(cond ((eq completion t))
|
|
|
|
|
((null completion)
|
|
|
|
|
(message "Can't find completion for \"%s\"" pattern)
|
|
|
|
|
(ding))
|
|
|
|
|
((not (string= pattern completion))
|
|
|
|
|
(delete-region beg end)
|
1997-04-05 21:57:48 +00:00
|
|
|
|
(let ((alist-elt (assoc completion mail-names)))
|
|
|
|
|
(if (cdr alist-elt)
|
|
|
|
|
(cond ((eq mail-complete-style 'parens)
|
|
|
|
|
(insert completion " (" (cdr alist-elt) ")"))
|
|
|
|
|
((eq mail-complete-style 'angles)
|
|
|
|
|
(insert (cdr alist-elt) " <" completion ">"))
|
|
|
|
|
(t
|
|
|
|
|
(insert completion)))
|
|
|
|
|
(insert completion))))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(t
|
|
|
|
|
(message "Making completion list...")
|
|
|
|
|
(with-output-to-temp-buffer "*Completions*"
|
|
|
|
|
(display-completion-list
|
|
|
|
|
(all-completions pattern list)))
|
|
|
|
|
(message "Making completion list...%s" "done"))))
|
|
|
|
|
(funcall mail-complete-function arg))))
|
|
|
|
|
|
|
|
|
|
(defun mail-get-names (pattern)
|
1997-04-05 21:57:48 +00:00
|
|
|
|
"Fetch local users and global mail addresses for completion.
|
1996-02-12 08:09:49 +00:00
|
|
|
|
Consults `/etc/passwd' and a directory service if one is set up via
|
1997-04-05 21:57:48 +00:00
|
|
|
|
`mail-directory-function'.
|
|
|
|
|
PATTERN is the string we want to complete."
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(if (eq mail-local-names t)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (generate-new-buffer " passwd"))
|
1997-03-22 03:49:14 +00:00
|
|
|
|
(let ((files mail-passwd-files))
|
|
|
|
|
(while files
|
|
|
|
|
(insert-file-contents (car files) nil nil nil t)
|
|
|
|
|
(setq files (cdr files))))
|
|
|
|
|
(if mail-passwd-command
|
|
|
|
|
(call-process shell-file-name nil t nil
|
|
|
|
|
shell-command-switch mail-passwd-command))
|
1997-04-05 21:57:48 +00:00
|
|
|
|
(beginning-of-buffer)
|
1997-03-22 03:49:14 +00:00
|
|
|
|
(setq mail-local-names nil)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(while (not (eobp))
|
1996-03-09 08:03:15 +00:00
|
|
|
|
;;Recognize lines like
|
|
|
|
|
;; nobody:*:65534:65534::/:
|
|
|
|
|
;; +demo::::::/bin/csh
|
|
|
|
|
;; +ethanb
|
|
|
|
|
;;while skipping
|
|
|
|
|
;; +@SOFTWARE
|
1997-04-05 21:57:48 +00:00
|
|
|
|
;; The second \(...\) matches the user id.
|
|
|
|
|
(if (looking-at "\\+?\\([^:@\n+]+\\):[^:\n]*:\\([^\n:]*\\):")
|
|
|
|
|
(add-to-list 'mail-local-names
|
|
|
|
|
(cons (match-string 1)
|
|
|
|
|
(user-full-name
|
|
|
|
|
(string-to-int (match-string 2))))))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(beginning-of-line 2))
|
|
|
|
|
(kill-buffer (current-buffer))))
|
|
|
|
|
(if (or (eq mail-names t)
|
1997-04-05 21:57:48 +00:00
|
|
|
|
(eq mail-directory-names t))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(let (directory)
|
|
|
|
|
(and mail-directory-function
|
|
|
|
|
(eq mail-directory-names t)
|
|
|
|
|
(setq directory
|
|
|
|
|
(mail-directory (if mail-directory-requery pattern))))
|
1997-04-05 21:57:48 +00:00
|
|
|
|
(or mail-directory-requery
|
|
|
|
|
(setq mail-directory-names directory))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(if (or directory
|
|
|
|
|
(eq mail-names t))
|
|
|
|
|
(setq mail-names
|
1997-04-05 21:57:48 +00:00
|
|
|
|
(sort (append (if (consp mail-aliases)
|
|
|
|
|
(mapcar
|
|
|
|
|
(function (lambda (a) (list (car a))))
|
|
|
|
|
mail-aliases))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(if (consp mail-local-names)
|
|
|
|
|
mail-local-names)
|
1997-04-05 21:57:48 +00:00
|
|
|
|
(or directory mail-directory-names))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(lambda (a b)
|
|
|
|
|
;; should cache downcased strings
|
|
|
|
|
(string< (downcase (car a))
|
1997-04-05 21:57:48 +00:00
|
|
|
|
(downcase (car b)))))))))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
mail-names)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun mail-directory (pattern)
|
2003-05-06 17:48:06 +00:00
|
|
|
|
"Call directory to get names matching PATTERN or all if nil.
|
1996-02-12 08:09:49 +00:00
|
|
|
|
Calls `mail-directory-function' and applies `mail-directory-parser' to output."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(message "Querying directory...")
|
|
|
|
|
(set-buffer (generate-new-buffer " *mail-directory*"))
|
|
|
|
|
(funcall mail-directory-function pattern)
|
|
|
|
|
(goto-char 1)
|
|
|
|
|
(let (directory)
|
|
|
|
|
(if (stringp mail-directory-parser)
|
|
|
|
|
(while (re-search-forward mail-directory-parser nil t)
|
|
|
|
|
(setq directory
|
1997-04-05 21:57:48 +00:00
|
|
|
|
(cons (match-string 1) directory)))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(if mail-directory-parser
|
|
|
|
|
(setq directory (funcall mail-directory-parser))
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(setq directory
|
1997-04-05 21:57:48 +00:00
|
|
|
|
(cons (buffer-substring (point)
|
|
|
|
|
(progn
|
|
|
|
|
(forward-line)
|
|
|
|
|
(if (bolp)
|
|
|
|
|
(1- (point))
|
|
|
|
|
(point))))
|
|
|
|
|
directory)))))
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(kill-buffer (current-buffer))
|
|
|
|
|
(message "Querying directory...done")
|
|
|
|
|
directory)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun mail-directory-process (pattern)
|
1997-06-07 23:12:19 +00:00
|
|
|
|
"Run a shell command to output names in directory.
|
1996-02-12 08:09:49 +00:00
|
|
|
|
See `mail-directory-process'."
|
|
|
|
|
(apply 'call-process (eval (car mail-directory-process)) nil t nil
|
|
|
|
|
(mapcar 'eval (cdr mail-directory-process))))
|
|
|
|
|
|
|
|
|
|
;; This should handle a dialog. Currently expects port to spit out names.
|
|
|
|
|
(defun mail-directory-stream (pattern)
|
|
|
|
|
"Open a stream to retrieve names in directory.
|
|
|
|
|
See `mail-directory-stream'."
|
|
|
|
|
(let (mailalias-done)
|
|
|
|
|
(set-process-sentinel
|
|
|
|
|
(apply 'open-network-stream "mailalias" (current-buffer)
|
|
|
|
|
mail-directory-stream)
|
2001-10-13 08:10:30 +00:00
|
|
|
|
(lambda (x y)
|
1996-02-12 08:09:49 +00:00
|
|
|
|
(setq mailalias-done t)))
|
|
|
|
|
(while (not mailalias-done)
|
|
|
|
|
(sit-for .1))))
|
|
|
|
|
|
|
|
|
|
(defun mail-sentto-newsgroups ()
|
|
|
|
|
"Return all entries from Newsgroups: header as completion alist."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if (mail-position-on-field "newsgroups" t)
|
|
|
|
|
(let ((point (point))
|
|
|
|
|
list)
|
|
|
|
|
(while (< (skip-chars-backward "^:, \t\n") 0)
|
|
|
|
|
(setq list `((,(buffer-substring (point) point))
|
|
|
|
|
,@list))
|
|
|
|
|
(skip-chars-backward ", \t\n")
|
|
|
|
|
(setq point (point)))
|
|
|
|
|
list))))
|
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
|