1992-05-30 21:11:25 +00:00
|
|
|
|
;;; sendmail.el --- mail sending commands for Emacs.
|
|
|
|
|
|
1996-03-02 06:37:35 +00:00
|
|
|
|
;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96 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 20:24:00 +00:00
|
|
|
|
;; Keywords: mail
|
1992-07-16 21:47:34 +00:00
|
|
|
|
|
1991-12-13 07:34:20 +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)
|
1991-12-13 07:34:20 +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.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1993-03-22 16:53:22 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; This mode provides mail-sending facilities from within Emacs. It is
|
|
|
|
|
;; documented in the Emacs user's manual.
|
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
|
;;; Code:
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1994-11-30 22:03:35 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defvar mail-from-style 'angles "\
|
|
|
|
|
*Specifies how \"From:\" fields look.
|
|
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
Elvis Parsley <king@grassland.com>")
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
;;;###autoload
|
1992-12-06 22:42:10 +00:00
|
|
|
|
(defvar mail-self-blind nil "\
|
1996-08-28 20:16:51 +00:00
|
|
|
|
*Non-nil means insert BCC to self in messages to be sent.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
This is done when the message is initialized,
|
|
|
|
|
so you can remove or alter the BCC field to override the default.")
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1992-12-06 22:42:10 +00:00
|
|
|
|
(defvar mail-interactive nil "\
|
1996-08-28 20:16:51 +00:00
|
|
|
|
*Non-nil means when sending a message wait for and display errors.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
nil means let mailer mail back a message to report errors.")
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1992-12-06 22:42:10 +00:00
|
|
|
|
(defvar mail-yank-ignored-headers "^via:\\|^mail-from:\\|^origin:\\|^status:\\|^remailed\\|^received:\\|^message-id:\\|^summary-line:\\|^to:\\|^subject:\\|^in-reply-to:\\|^return-path:" "\
|
1996-08-28 20:16:51 +00:00
|
|
|
|
*Delete these headers from old message when it's inserted in a reply.")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
;; Useful to set in site-init.el
|
|
|
|
|
;;;###autoload
|
1993-05-29 04:35:25 +00:00
|
|
|
|
(defvar send-mail-function 'sendmail-send-it "\
|
1991-12-13 07:34:20 +00:00
|
|
|
|
Function to call to send the current buffer as mail.
|
1995-05-27 00:48:24 +00:00
|
|
|
|
The headers should be delimited by a line whose contents
|
|
|
|
|
match the variable `mail-header-separator'.")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defvar mail-header-separator "--text follows this line--" "\
|
|
|
|
|
*Line used to separate headers from text in messages being composed.")
|
|
|
|
|
|
1995-12-23 07:42:36 +00:00
|
|
|
|
;; Set up mail-header-separator for use as a category text property.
|
|
|
|
|
(put 'mail-header-separator 'rear-nonsticky '(category))
|
1996-01-03 18:36:29 +00:00
|
|
|
|
;;; This was a nice idea, for preventing accidental modification of
|
|
|
|
|
;;; the separator. But I found it also prevented or obstructed
|
|
|
|
|
;;; certain deliberate operations, such as copying the separator line
|
|
|
|
|
;;; up to the top to send myself a copy of an already sent outgoing message
|
|
|
|
|
;;; and other things. So I turned it off. --rms.
|
|
|
|
|
;;;(put 'mail-header-separator 'read-only t)
|
1995-12-23 07:42:36 +00:00
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defvar mail-archive-file-name nil "\
|
|
|
|
|
*Name of file to write all outgoing messages in, or nil for none.
|
1994-10-22 02:54:46 +00:00
|
|
|
|
This can be an inbox file or an Rmail file.")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1993-12-23 02:45:28 +00:00
|
|
|
|
;;;###autoload
|
1995-07-02 07:26:01 +00:00
|
|
|
|
(defvar mail-default-reply-to nil
|
1995-07-19 15:43:56 +00:00
|
|
|
|
"*Address to insert as default Reply-to field of outgoing messages.
|
|
|
|
|
If nil, it will be initialized from the REPLYTO environment variable
|
|
|
|
|
when you first send mail.")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1994-08-08 23:23:33 +00:00
|
|
|
|
;;;###autoload
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defvar mail-alias-file nil
|
|
|
|
|
"*If non-nil, the name of a file to use instead of `/usr/lib/aliases'.
|
|
|
|
|
This file defines aliases to be expanded by the mailer; this is a different
|
|
|
|
|
feature from that of defining aliases in `.mailrc' to be expanded in Emacs.
|
|
|
|
|
This variable has no effect unless your system uses sendmail as its mailer.")
|
|
|
|
|
|
1995-01-03 23:43:27 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defvar mail-personal-alias-file "~/.mailrc"
|
|
|
|
|
"*If non-nil, the name of the user's personal mail alias file.
|
|
|
|
|
This file typically should be in same format as the `.mailrc' file used by
|
|
|
|
|
the `Mail' or `mailx' program.
|
|
|
|
|
This file need not actually exist.")
|
|
|
|
|
|
1995-07-17 23:00:06 +00:00
|
|
|
|
(defvar mail-setup-hook nil
|
|
|
|
|
"Normal hook, run each time a new outgoing mail message is initialized.
|
|
|
|
|
The function `mail-setup' runs this hook.")
|
|
|
|
|
|
1992-10-18 22:19:36 +00:00
|
|
|
|
(defvar mail-aliases t
|
1992-10-23 09:20:44 +00:00
|
|
|
|
"Alist of mail address aliases,
|
1994-10-22 02:54:46 +00:00
|
|
|
|
or t meaning should be initialized from your mail aliases file.
|
|
|
|
|
\(The file's name is normally `~/.mailrc', but your MAILRC environment
|
|
|
|
|
variable can override that name.)
|
|
|
|
|
The alias definitions in the file have this form:
|
1992-10-23 09:20:44 +00:00
|
|
|
|
alias ALIAS MEANING")
|
1992-10-18 22:19:36 +00:00
|
|
|
|
|
1994-09-16 22:29:25 +00:00
|
|
|
|
(defvar mail-alias-modtime nil
|
1994-10-22 02:54:46 +00:00
|
|
|
|
"The modification time of your mail alias file when it was last examined.")
|
1994-09-16 22:29:25 +00:00
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defvar mail-yank-prefix nil
|
|
|
|
|
"*Prefix insert on lines of yanked message being replied to.
|
|
|
|
|
nil means use indentation.")
|
1993-06-01 23:19:49 +00:00
|
|
|
|
(defvar mail-indentation-spaces 3
|
|
|
|
|
"*Number of spaces to insert at the beginning of each cited line.
|
|
|
|
|
Used by `mail-yank-original' via `mail-yank-cite'.")
|
1993-08-02 07:43:59 +00:00
|
|
|
|
(defvar mail-yank-hooks nil
|
1993-06-17 23:44:04 +00:00
|
|
|
|
"Obsolete hook for modifying a citation just inserted in the mail buffer.
|
|
|
|
|
Each hook function can find the citation between (point) and (mark t).
|
|
|
|
|
And each hook function should leave point and mark around the citation
|
|
|
|
|
text as modified.
|
|
|
|
|
|
|
|
|
|
This is a normal hook, misnamed for historical reasons.
|
|
|
|
|
It is semi-obsolete and mail agents should no longer use it.")
|
|
|
|
|
|
|
|
|
|
(defvar mail-citation-hook nil
|
1993-06-01 23:19:49 +00:00
|
|
|
|
"*Hook for modifying a citation just inserted in the mail buffer.
|
|
|
|
|
Each hook function can find the citation between (point) and (mark t).
|
|
|
|
|
And each hook function should leave point and mark around the citation
|
|
|
|
|
text as modified.
|
|
|
|
|
|
1993-06-17 23:44:04 +00:00
|
|
|
|
If this hook is entirely empty (nil), a default action is taken
|
|
|
|
|
instead of no action.")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(defvar mail-abbrevs-loaded nil)
|
|
|
|
|
(defvar mail-mode-map nil)
|
|
|
|
|
|
1992-10-18 22:19:36 +00:00
|
|
|
|
(autoload 'build-mail-aliases "mailalias"
|
1995-01-03 23:43:27 +00:00
|
|
|
|
"Read mail aliases from user's personal aliases file and set `mail-aliases'."
|
1992-10-18 22:19:36 +00:00
|
|
|
|
nil)
|
|
|
|
|
|
|
|
|
|
(autoload 'expand-mail-aliases "mailalias"
|
|
|
|
|
"Expand all mail aliases in suitable header fields found between BEG and END.
|
|
|
|
|
Suitable header fields are `To', `Cc' and `Bcc' and their `Resent-' variants.
|
|
|
|
|
Optional second arg EXCLUDE may be a regular expression defining text to be
|
|
|
|
|
removed from alias expansions."
|
|
|
|
|
nil)
|
|
|
|
|
|
1992-08-19 03:54:51 +00:00
|
|
|
|
;;;###autoload
|
1992-08-19 08:13:21 +00:00
|
|
|
|
(defvar mail-signature nil
|
|
|
|
|
"*Text inserted at end of mail buffer when a message is initialized.
|
1995-10-04 19:34:25 +00:00
|
|
|
|
If t, it means to insert the contents of the file `mail-signature-file'.")
|
|
|
|
|
|
|
|
|
|
(defvar mail-signature-file "~/.signature"
|
|
|
|
|
"*File containing the text inserted at end of mail buffer.")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(defvar mail-reply-buffer nil)
|
|
|
|
|
(defvar mail-send-actions nil
|
|
|
|
|
"A list of actions to be performed upon successful sending of a message.")
|
1996-06-28 08:25:40 +00:00
|
|
|
|
(put 'mail-reply-buffer 'permanent-local t)
|
|
|
|
|
(put 'mail-send-actions 'permanent-local t)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(defvar mail-default-headers nil
|
|
|
|
|
"*A string containing header lines, to be inserted in outgoing messages.
|
|
|
|
|
It is inserted before you edit the message,
|
|
|
|
|
so you can edit or delete these lines.")
|
|
|
|
|
|
1994-09-20 23:52:38 +00:00
|
|
|
|
(defvar mail-bury-selects-summary t
|
|
|
|
|
"*If non-nil, try to show RMAIL summary buffer after returning from mail.
|
|
|
|
|
The functions \\[mail-send-on-exit] or \\[mail-dont-send] select
|
|
|
|
|
the RMAIL summary buffer before returning, if it exists and this variable
|
|
|
|
|
is non-nil.")
|
|
|
|
|
|
1994-01-24 23:52:51 +00:00
|
|
|
|
;; Note: could use /usr/ucb/mail instead of sendmail;
|
|
|
|
|
;; options -t, and -v if not interactive.
|
|
|
|
|
(defvar mail-mailer-swallows-blank-line
|
1994-02-02 00:06:43 +00:00
|
|
|
|
(if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)" system-configuration)
|
1994-07-15 04:31:14 +00:00
|
|
|
|
(file-readable-p "/etc/sendmail.cf")
|
1994-02-02 00:06:43 +00:00
|
|
|
|
(let ((buffer (get-buffer-create " *temp*")))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer buffer)
|
|
|
|
|
(insert-file-contents "/etc/sendmail.cf")
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(let ((case-fold-search nil))
|
1994-02-17 19:04:07 +00:00
|
|
|
|
(re-search-forward "^OR\\>" nil t)))
|
1994-02-02 00:06:43 +00:00
|
|
|
|
(kill-buffer buffer))))
|
1995-02-01 21:21:29 +00:00
|
|
|
|
;; According to RFC822, "The field-name must be composed of printable
|
|
|
|
|
;; ASCII characters (i.e. characters that have decimal values between
|
|
|
|
|
;; 33 and 126, except colon)", i.e. any chars except ctl chars,
|
|
|
|
|
;; space, or colon.
|
|
|
|
|
'(looking-at "[ \t]\\|[][!\"#$%&'()*+,-./0-9;<=>?@A-Z\\\\^_`a-z{|}~]+:"))
|
1994-01-24 23:52:51 +00:00
|
|
|
|
"Set this non-nil if the system's mailer runs the header and body together.
|
|
|
|
|
\(This problem exists on Sunos 4 when sendmail is run in remote mode.)
|
|
|
|
|
The value should be an expression to test whether the problem will
|
|
|
|
|
actually occur.")
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defvar mail-mode-syntax-table nil
|
|
|
|
|
"Syntax table used while in mail mode.")
|
|
|
|
|
|
1994-10-07 10:00:00 +00:00
|
|
|
|
(if (not mail-mode-syntax-table)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(progn
|
|
|
|
|
(setq mail-mode-syntax-table (copy-syntax-table text-mode-syntax-table))
|
|
|
|
|
(modify-syntax-entry ?% ". " mail-mode-syntax-table)))
|
|
|
|
|
|
1994-10-07 10:00:00 +00:00
|
|
|
|
(defvar mail-font-lock-keywords
|
1996-01-25 10:27:33 +00:00
|
|
|
|
(eval-when-compile
|
|
|
|
|
(let* ((cite-prefix "A-Za-z") (cite-suffix (concat cite-prefix "0-9_.@-")))
|
|
|
|
|
(list '("^To:" . font-lock-function-name-face)
|
|
|
|
|
'("^B?CC:\\|^Reply-to:" . font-lock-keyword-face)
|
|
|
|
|
'("^\\(Subject:\\)[ \t]*\\(.+\\)?"
|
|
|
|
|
(1 font-lock-comment-face) (2 font-lock-type-face nil t))
|
|
|
|
|
'(eval cons (concat "^" (regexp-quote mail-header-separator) "$")
|
|
|
|
|
'font-lock-comment-face)
|
|
|
|
|
(cons (concat "^[ \t]*"
|
|
|
|
|
"\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
|
|
|
|
|
"[>|}].*")
|
|
|
|
|
'font-lock-reference-face)
|
|
|
|
|
'("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*"
|
|
|
|
|
. font-lock-string-face))))
|
1994-10-07 10:00:00 +00:00
|
|
|
|
"Additional expressions to highlight in Mail mode.")
|
|
|
|
|
|
1994-06-15 22:16:04 +00:00
|
|
|
|
(defvar mail-send-hook nil
|
|
|
|
|
"Normal hook run before sending mail, in Mail mode.")
|
|
|
|
|
|
1996-01-04 23:10:07 +00:00
|
|
|
|
(defun sendmail-sync-aliases ()
|
1995-01-03 23:43:27 +00:00
|
|
|
|
(let ((modtime (nth 5 (file-attributes mail-personal-alias-file))))
|
1994-09-16 22:29:25 +00:00
|
|
|
|
(or (equal mail-alias-modtime modtime)
|
|
|
|
|
(setq mail-alias-modtime modtime
|
|
|
|
|
mail-aliases t))))
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defun mail-setup (to subject in-reply-to cc replybuffer actions)
|
1995-07-02 07:26:01 +00:00
|
|
|
|
(or mail-default-reply-to
|
1994-09-21 18:26:57 +00:00
|
|
|
|
(setq mail-default-reply-to (getenv "REPLYTO")))
|
1996-01-04 23:10:07 +00:00
|
|
|
|
(sendmail-sync-aliases)
|
1992-10-18 22:19:36 +00:00
|
|
|
|
(if (eq mail-aliases t)
|
|
|
|
|
(progn
|
|
|
|
|
(setq mail-aliases nil)
|
1995-01-03 23:43:27 +00:00
|
|
|
|
(if (file-exists-p mail-personal-alias-file)
|
1992-10-18 22:19:36 +00:00
|
|
|
|
(build-mail-aliases))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(setq mail-send-actions actions)
|
|
|
|
|
(setq mail-reply-buffer replybuffer)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(insert "To: ")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if to
|
1993-02-07 04:56:23 +00:00
|
|
|
|
;; Here removed code to extract names from within <...>
|
|
|
|
|
;; on the assumption that mail-strip-quoted-names
|
|
|
|
|
;; has been called and has done so.
|
|
|
|
|
(let ((fill-prefix "\t")
|
|
|
|
|
(address-start (point)))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(insert to "\n")
|
1993-02-07 04:56:23 +00:00
|
|
|
|
(fill-region-as-paragraph address-start (point-max)))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(newline))
|
|
|
|
|
(if cc
|
1993-02-07 04:56:23 +00:00
|
|
|
|
(let ((fill-prefix "\t")
|
|
|
|
|
(address-start (progn (insert "CC: ") (point))))
|
|
|
|
|
(insert cc "\n")
|
|
|
|
|
(fill-region-as-paragraph address-start (point-max))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(if in-reply-to
|
1994-10-15 01:09:19 +00:00
|
|
|
|
(let ((fill-prefix "\t")
|
1994-11-18 16:41:07 +00:00
|
|
|
|
(fill-column 78)
|
1994-10-23 05:02:00 +00:00
|
|
|
|
(address-start (point)))
|
|
|
|
|
(insert "In-reply-to: " in-reply-to "\n")
|
1994-10-15 01:09:19 +00:00
|
|
|
|
(fill-region-as-paragraph address-start (point-max))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(insert "Subject: " (or subject "") "\n")
|
|
|
|
|
(if mail-default-headers
|
|
|
|
|
(insert mail-default-headers))
|
|
|
|
|
(if mail-default-reply-to
|
|
|
|
|
(insert "Reply-to: " mail-default-reply-to "\n"))
|
|
|
|
|
(if mail-self-blind
|
1996-01-30 18:25:30 +00:00
|
|
|
|
(insert "BCC: " user-mail-address "\n"))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(if mail-archive-file-name
|
|
|
|
|
(insert "FCC: " mail-archive-file-name "\n"))
|
1995-12-23 07:42:36 +00:00
|
|
|
|
(put-text-property (point)
|
|
|
|
|
(progn
|
|
|
|
|
(insert mail-header-separator "\n")
|
|
|
|
|
(1- (point)))
|
|
|
|
|
'category 'mail-header-separator)
|
1993-05-17 23:18:47 +00:00
|
|
|
|
;; Insert the signature. But remember the beginning of the message.
|
|
|
|
|
(if to (setq to (point)))
|
1992-08-19 08:13:21 +00:00
|
|
|
|
(cond ((eq mail-signature t)
|
1995-10-04 19:34:25 +00:00
|
|
|
|
(if (file-exists-p mail-signature-file)
|
1994-07-12 02:47:27 +00:00
|
|
|
|
(progn
|
|
|
|
|
(insert "\n\n-- \n")
|
1995-10-04 19:34:25 +00:00
|
|
|
|
(insert-file-contents mail-signature-file))))
|
1992-08-19 08:13:21 +00:00
|
|
|
|
(mail-signature
|
|
|
|
|
(insert mail-signature)))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(or (bolp) (newline)))
|
1993-05-17 23:18:47 +00:00
|
|
|
|
(if to (goto-char to))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(or to subject in-reply-to
|
|
|
|
|
(set-buffer-modified-p nil))
|
|
|
|
|
(run-hooks 'mail-setup-hook))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun mail-mode ()
|
|
|
|
|
"Major mode for editing mail to be sent.
|
|
|
|
|
Like Text Mode but with these additional commands:
|
|
|
|
|
C-c C-s mail-send (send the message) C-c C-c mail-send-and-exit
|
|
|
|
|
C-c C-f move to a header field (and create it if there isn't):
|
1995-05-19 18:57:48 +00:00
|
|
|
|
C-c C-f C-t move to To: C-c C-f C-s move to Subject:
|
|
|
|
|
C-c C-f C-c move to CC: C-c C-f C-b move to BCC:
|
1994-03-20 23:23:43 +00:00
|
|
|
|
C-c C-f C-f move to FCC:
|
1995-05-19 18:57:48 +00:00
|
|
|
|
C-c C-t mail-text (move to beginning of message text).
|
1995-10-04 19:34:25 +00:00
|
|
|
|
C-c C-w mail-signature (insert `mail-signature-file' file).
|
1991-12-13 07:34:20 +00:00
|
|
|
|
C-c C-y mail-yank-original (insert current message, in Rmail).
|
|
|
|
|
C-c C-q mail-fill-yanked-message (fill what was yanked).
|
1995-05-19 18:57:48 +00:00
|
|
|
|
C-c C-v mail-sent-via (add a Sent-via field for each To or CC)."
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(kill-all-local-variables)
|
|
|
|
|
(make-local-variable 'mail-reply-buffer)
|
|
|
|
|
(make-local-variable 'mail-send-actions)
|
|
|
|
|
(set-syntax-table mail-mode-syntax-table)
|
|
|
|
|
(use-local-map mail-mode-map)
|
|
|
|
|
(setq local-abbrev-table text-mode-abbrev-table)
|
|
|
|
|
(setq major-mode 'mail-mode)
|
|
|
|
|
(setq mode-name "Mail")
|
|
|
|
|
(setq buffer-offer-save t)
|
1994-10-12 09:10:05 +00:00
|
|
|
|
(make-local-variable 'font-lock-defaults)
|
|
|
|
|
(setq font-lock-defaults '(mail-font-lock-keywords t))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(make-local-variable 'paragraph-separate)
|
|
|
|
|
(make-local-variable 'paragraph-start)
|
1996-05-05 03:55:07 +00:00
|
|
|
|
;; `-- ' precedes the signature. `-----' appears at the start of the
|
|
|
|
|
;; lines that delimit forwarded messages.
|
|
|
|
|
;; Lines containing just >= 3 dashes, perhaps after whitespace,
|
|
|
|
|
;; are also sometimes used and should be separators.
|
1995-04-08 20:09:28 +00:00
|
|
|
|
(setq paragraph-start (concat (regexp-quote mail-header-separator)
|
1996-05-05 03:55:07 +00:00
|
|
|
|
"$\\|[ \t]*[-_][-_][-_]+$\\|-- $\\|-----\\|"
|
1991-12-13 07:34:20 +00:00
|
|
|
|
paragraph-start))
|
1995-04-08 20:09:28 +00:00
|
|
|
|
(setq paragraph-separate (concat (regexp-quote mail-header-separator)
|
1996-05-05 03:55:07 +00:00
|
|
|
|
"$\\|[ \t]*[-_][-_][-_]+$\\|-- $\\|-----\\|"
|
1991-12-13 07:34:20 +00:00
|
|
|
|
paragraph-separate))
|
|
|
|
|
(run-hooks 'text-mode-hook 'mail-mode-hook))
|
1993-06-21 20:08:39 +00:00
|
|
|
|
|
|
|
|
|
;;; Set up keymap.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(if mail-mode-map
|
|
|
|
|
nil
|
|
|
|
|
(setq mail-mode-map (nconc (make-sparse-keymap) text-mode-map))
|
1996-02-26 01:40:50 +00:00
|
|
|
|
(define-key mail-mode-map "\M-\t" 'mail-complete)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(define-key mail-mode-map "\C-c?" 'describe-mode)
|
|
|
|
|
(define-key mail-mode-map "\C-c\C-f\C-t" 'mail-to)
|
|
|
|
|
(define-key mail-mode-map "\C-c\C-f\C-b" 'mail-bcc)
|
1992-03-12 03:48:12 +00:00
|
|
|
|
(define-key mail-mode-map "\C-c\C-f\C-f" 'mail-fcc)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(define-key mail-mode-map "\C-c\C-f\C-c" 'mail-cc)
|
|
|
|
|
(define-key mail-mode-map "\C-c\C-f\C-s" 'mail-subject)
|
1995-02-13 06:49:27 +00:00
|
|
|
|
(define-key mail-mode-map "\C-c\C-f\C-r" 'mail-reply-to)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(define-key mail-mode-map "\C-c\C-t" 'mail-text)
|
|
|
|
|
(define-key mail-mode-map "\C-c\C-y" 'mail-yank-original)
|
|
|
|
|
(define-key mail-mode-map "\C-c\C-q" 'mail-fill-yanked-message)
|
|
|
|
|
(define-key mail-mode-map "\C-c\C-w" 'mail-signature)
|
|
|
|
|
(define-key mail-mode-map "\C-c\C-v" 'mail-sent-via)
|
|
|
|
|
(define-key mail-mode-map "\C-c\C-c" 'mail-send-and-exit)
|
|
|
|
|
(define-key mail-mode-map "\C-c\C-s" 'mail-send))
|
1993-06-21 20:08:39 +00:00
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar mail]
|
|
|
|
|
(cons "Mail" (make-sparse-keymap "Mail")))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar mail fill]
|
|
|
|
|
'("Fill Citation" . mail-fill-yanked-message))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar mail yank]
|
|
|
|
|
'("Cite Original" . mail-yank-original))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar mail signature]
|
|
|
|
|
'("Insert Signature" . mail-signature))
|
|
|
|
|
|
1993-07-13 20:18:05 +00:00
|
|
|
|
(define-key mail-mode-map [menu-bar mail cancel]
|
|
|
|
|
'("Cancel" . mail-dont-send))
|
|
|
|
|
|
1993-06-21 20:08:39 +00:00
|
|
|
|
(define-key mail-mode-map [menu-bar mail send-stay]
|
|
|
|
|
'("Send, Keep Editing" . mail-send))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar mail send]
|
|
|
|
|
'("Send Message" . mail-send-and-exit))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar headers]
|
1995-04-02 05:40:43 +00:00
|
|
|
|
(cons "Headers" (make-sparse-keymap "Move to Header")))
|
1993-06-21 20:08:39 +00:00
|
|
|
|
|
1995-02-13 06:49:27 +00:00
|
|
|
|
(define-key mail-mode-map [menu-bar headers reply-to]
|
|
|
|
|
'("Reply-To" . mail-reply-to))
|
|
|
|
|
|
1993-06-21 20:08:39 +00:00
|
|
|
|
(define-key mail-mode-map [menu-bar headers sent-via]
|
|
|
|
|
'("Sent Via" . mail-sent-via))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar headers text]
|
|
|
|
|
'("Text" . mail-text))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar headers bcc]
|
|
|
|
|
'("Bcc" . mail-bcc))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar headers fcc]
|
|
|
|
|
'("Fcc" . mail-fcc))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar headers cc]
|
|
|
|
|
'("Cc" . mail-cc))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar headers subject]
|
|
|
|
|
'("Subject" . mail-subject))
|
|
|
|
|
|
|
|
|
|
(define-key mail-mode-map [menu-bar headers to]
|
|
|
|
|
'("To" . mail-to))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-send-and-exit (arg)
|
1992-11-03 19:47:32 +00:00
|
|
|
|
"Send message like `mail-send', then, if no errors, exit from mail buffer.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
Prefix arg means don't delete this window."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(mail-send)
|
1993-07-13 20:18:05 +00:00
|
|
|
|
(mail-bury arg))
|
|
|
|
|
|
|
|
|
|
(defun mail-dont-send (arg)
|
|
|
|
|
"Don't send the message you have been editing.
|
|
|
|
|
Prefix arg means don't delete this window."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(mail-bury arg))
|
|
|
|
|
|
|
|
|
|
(defun mail-bury (arg)
|
|
|
|
|
"Bury this mail buffer."
|
1992-09-29 20:39:55 +00:00
|
|
|
|
(let ((newbuf (other-buffer (current-buffer))))
|
|
|
|
|
(bury-buffer (current-buffer))
|
1996-01-25 20:27:45 +00:00
|
|
|
|
(if (and (or (window-dedicated-p (frame-selected-window))
|
|
|
|
|
(assq 'mail-dedicated-frame (frame-parameters)))
|
1993-07-16 04:18:46 +00:00
|
|
|
|
(not (null (delq (selected-frame) (visible-frame-list)))))
|
|
|
|
|
(delete-frame (selected-frame))
|
1994-06-10 20:20:53 +00:00
|
|
|
|
(let (rmail-flag summary-buffer)
|
|
|
|
|
(and (not arg)
|
|
|
|
|
(not (one-window-p))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (window-buffer (next-window (selected-window) 'not)))
|
|
|
|
|
(setq rmail-flag (eq major-mode 'rmail-mode))
|
|
|
|
|
(setq summary-buffer
|
1994-09-20 23:52:38 +00:00
|
|
|
|
(and mail-bury-selects-summary
|
|
|
|
|
(boundp 'rmail-summary-buffer)
|
1994-06-18 21:12:42 +00:00
|
|
|
|
rmail-summary-buffer
|
1994-06-10 20:20:53 +00:00
|
|
|
|
(buffer-name rmail-summary-buffer)
|
|
|
|
|
(not (get-buffer-window rmail-summary-buffer))
|
|
|
|
|
rmail-summary-buffer))))
|
|
|
|
|
(if rmail-flag
|
|
|
|
|
;; If the Rmail buffer has a summary, show that.
|
|
|
|
|
(if summary-buffer (switch-to-buffer summary-buffer)
|
|
|
|
|
(delete-window))
|
|
|
|
|
(switch-to-buffer newbuf))))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-send ()
|
|
|
|
|
"Send the message in the current buffer.
|
|
|
|
|
If `mail-interactive' is non-nil, wait for success indication
|
|
|
|
|
or error messages, and inform user.
|
|
|
|
|
Otherwise any failure is reported in a message back to
|
|
|
|
|
the user from the mailer."
|
|
|
|
|
(interactive)
|
1993-07-01 23:35:51 +00:00
|
|
|
|
(if (if buffer-file-name
|
|
|
|
|
(y-or-n-p "Send buffer contents as mail message? ")
|
|
|
|
|
(or (buffer-modified-p)
|
|
|
|
|
(y-or-n-p "Message already sent; resend? ")))
|
1995-12-23 07:42:36 +00:00
|
|
|
|
(let ((inhibit-read-only t))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(run-hooks 'mail-send-hook)
|
1994-06-15 22:16:04 +00:00
|
|
|
|
(message "Sending...")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(funcall send-mail-function)
|
|
|
|
|
;; Now perform actions on successful sending.
|
|
|
|
|
(while mail-send-actions
|
|
|
|
|
(condition-case nil
|
1993-01-07 10:18:46 +00:00
|
|
|
|
(apply (car (car mail-send-actions))
|
|
|
|
|
(cdr (car mail-send-actions)))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(error))
|
|
|
|
|
(setq mail-send-actions (cdr mail-send-actions)))
|
1993-01-07 10:18:46 +00:00
|
|
|
|
(message "Sending...done")
|
|
|
|
|
;; If buffer has no file, mark it as unmodified and delete autosave.
|
|
|
|
|
(if (not buffer-file-name)
|
|
|
|
|
(progn
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(delete-auto-save-file-if-necessary t))))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(defun sendmail-send-it ()
|
1995-09-21 20:21:16 +00:00
|
|
|
|
(require 'mail-utils)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(let ((errbuf (if mail-interactive
|
|
|
|
|
(generate-new-buffer " sendmail errors")
|
|
|
|
|
0))
|
|
|
|
|
(tembuf (generate-new-buffer " sendmail temp"))
|
|
|
|
|
(case-fold-search nil)
|
1994-08-02 01:29:20 +00:00
|
|
|
|
resend-to-addresses
|
1991-12-13 07:34:20 +00:00
|
|
|
|
delimline
|
|
|
|
|
(mailbuf (current-buffer)))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer tembuf)
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert-buffer-substring mailbuf)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
;; require one newline at the end.
|
|
|
|
|
(or (= (preceding-char) ?\n)
|
|
|
|
|
(insert ?\n))
|
|
|
|
|
;; Change header-delimiter to be what sendmail expects.
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(re-search-forward
|
|
|
|
|
(concat "^" (regexp-quote mail-header-separator) "\n"))
|
|
|
|
|
(replace-match "\n")
|
|
|
|
|
(backward-char 1)
|
|
|
|
|
(setq delimline (point-marker))
|
1996-01-04 23:10:07 +00:00
|
|
|
|
(sendmail-sync-aliases)
|
1992-10-18 22:19:36 +00:00
|
|
|
|
(if mail-aliases
|
|
|
|
|
(expand-mail-aliases (point-min) delimline))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; ignore any blank lines in the header
|
|
|
|
|
(while (and (re-search-forward "\n\n\n*" delimline t)
|
|
|
|
|
(< (point) delimline))
|
|
|
|
|
(replace-match "\n"))
|
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(goto-char (point-min))
|
1995-12-13 02:19:05 +00:00
|
|
|
|
(while (re-search-forward "^Resent-\\(to\\|cc\\|bcc\\):" delimline t)
|
1994-08-02 01:29:20 +00:00
|
|
|
|
(setq resend-to-addresses
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region (point)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(point)))
|
|
|
|
|
(append (mail-parse-comma-list)
|
1995-12-13 02:19:05 +00:00
|
|
|
|
resend-to-addresses)))
|
|
|
|
|
;; Delete Resent-BCC ourselves
|
|
|
|
|
(if (save-excursion (beginning-of-line)
|
|
|
|
|
(looking-at "resent-bcc"))
|
|
|
|
|
(delete-region (save-excursion (beginning-of-line) (point))
|
|
|
|
|
(save-excursion (end-of-line) (1+ (point))))))
|
1993-11-03 20:39:37 +00:00
|
|
|
|
;;; Apparently this causes a duplicate Sender.
|
|
|
|
|
;;; ;; If the From is different than current user, insert Sender.
|
|
|
|
|
;;; (goto-char (point-min))
|
|
|
|
|
;;; (and (re-search-forward "^From:" delimline t)
|
|
|
|
|
;;; (progn
|
|
|
|
|
;;; (require 'mail-utils)
|
|
|
|
|
;;; (not (string-equal
|
|
|
|
|
;;; (mail-strip-quoted-names
|
|
|
|
|
;;; (save-restriction
|
|
|
|
|
;;; (narrow-to-region (point-min) delimline)
|
|
|
|
|
;;; (mail-fetch-field "From")))
|
|
|
|
|
;;; (user-login-name))))
|
|
|
|
|
;;; (progn
|
|
|
|
|
;;; (forward-line 1)
|
|
|
|
|
;;; (insert "Sender: " (user-login-name) "\n")))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
;; Don't send out a blank subject line
|
|
|
|
|
(goto-char (point-min))
|
1995-05-05 22:31:11 +00:00
|
|
|
|
(if (re-search-forward "^Subject:\\([ \t]*\n\\)+\\b" delimline t)
|
1996-01-02 08:57:04 +00:00
|
|
|
|
(replace-match "")
|
|
|
|
|
;; This one matches a Subject just before the header delimiter.
|
|
|
|
|
(if (and (re-search-forward "^Subject:\\([ \t]*\n\\)+" delimline t)
|
|
|
|
|
(= (match-end 0) delimline))
|
|
|
|
|
(replace-match "")))
|
1994-11-30 22:03:35 +00:00
|
|
|
|
;; Put the "From:" field in unless for some odd reason
|
|
|
|
|
;; they put one in themselves.
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (not (re-search-forward "^From:" delimline t))
|
1995-08-31 23:48:58 +00:00
|
|
|
|
(let* ((login user-mail-address)
|
1994-11-30 22:03:35 +00:00
|
|
|
|
(fullname (user-full-name)))
|
|
|
|
|
(cond ((eq mail-from-style 'angles)
|
1995-06-30 17:31:31 +00:00
|
|
|
|
(insert "From: " fullname)
|
|
|
|
|
(let ((fullname-start (+ (point-min) 6))
|
|
|
|
|
(fullname-end (point-marker)))
|
|
|
|
|
(goto-char fullname-start)
|
|
|
|
|
;; Look for a character that cannot appear unquoted
|
|
|
|
|
;; according to RFC 822.
|
|
|
|
|
(if (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]"
|
|
|
|
|
fullname-end 1)
|
|
|
|
|
(progn
|
|
|
|
|
;; Quote fullname, escaping specials.
|
|
|
|
|
(goto-char fullname-start)
|
|
|
|
|
(insert "\"")
|
|
|
|
|
(while (re-search-forward "[\"\\]"
|
|
|
|
|
fullname-end 1)
|
|
|
|
|
(replace-match "\\\\\\&" t))
|
|
|
|
|
(insert "\""))))
|
|
|
|
|
(insert " <" login ">\n"))
|
1994-11-30 22:03:35 +00:00
|
|
|
|
((eq mail-from-style 'parens)
|
1995-07-01 00:33:52 +00:00
|
|
|
|
(insert "From: " login " (")
|
|
|
|
|
(let ((fullname-start (point)))
|
|
|
|
|
(insert fullname)
|
|
|
|
|
(let ((fullname-end (point-marker)))
|
|
|
|
|
(goto-char fullname-start)
|
|
|
|
|
;; RFC 822 says \ and nonmatching parentheses
|
|
|
|
|
;; must be escaped in comments.
|
|
|
|
|
;; Escape every instance of ()\ ...
|
|
|
|
|
(while (re-search-forward "[()\\]" fullname-end 1)
|
|
|
|
|
(replace-match "\\\\\\&" t))
|
|
|
|
|
;; ... then undo escaping of matching parentheses,
|
|
|
|
|
;; including matching nested parentheses.
|
|
|
|
|
(goto-char fullname-start)
|
|
|
|
|
(while (re-search-forward
|
|
|
|
|
"\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
|
|
|
|
|
fullname-end 1)
|
|
|
|
|
(replace-match "\\1(\\3)" t)
|
|
|
|
|
(goto-char fullname-start))))
|
1995-06-30 17:31:31 +00:00
|
|
|
|
(insert ")\n"))
|
1994-11-30 22:03:35 +00:00
|
|
|
|
((null mail-from-style)
|
|
|
|
|
(insert "From: " login "\n")))))
|
1994-01-24 23:52:51 +00:00
|
|
|
|
;; Insert an extra newline if we need it to work around
|
|
|
|
|
;; Sun's bug that swallows newlines.
|
|
|
|
|
(goto-char (1+ delimline))
|
|
|
|
|
(if (eval mail-mailer-swallows-blank-line)
|
|
|
|
|
(newline))
|
1995-09-28 02:34:44 +00:00
|
|
|
|
;; Find and handle any FCC fields.
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (re-search-forward "^FCC:" delimline t)
|
|
|
|
|
(mail-do-fcc delimline))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(if mail-interactive
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer errbuf)
|
|
|
|
|
(erase-buffer))))
|
1995-11-04 00:39:03 +00:00
|
|
|
|
(let ((default-directory "/"))
|
|
|
|
|
(apply 'call-process-region
|
|
|
|
|
(append (list (point-min) (point-max)
|
|
|
|
|
(if (boundp 'sendmail-program)
|
|
|
|
|
sendmail-program
|
|
|
|
|
"/usr/lib/sendmail")
|
|
|
|
|
nil errbuf nil "-oi")
|
|
|
|
|
;; Always specify who from,
|
|
|
|
|
;; since some systems have broken sendmails.
|
|
|
|
|
(list "-f" (user-login-name))
|
|
|
|
|
;;; ;; Don't say "from root" if running under su.
|
|
|
|
|
;;; (and (equal (user-real-login-name) "root")
|
|
|
|
|
;;; (list "-f" (user-login-name)))
|
|
|
|
|
(and mail-alias-file
|
|
|
|
|
(list (concat "-oA" mail-alias-file)))
|
|
|
|
|
;; These mean "report errors by mail"
|
|
|
|
|
;; and "deliver in background".
|
|
|
|
|
(if (null mail-interactive) '("-oem" "-odb"))
|
|
|
|
|
;; Get the addresses from the message
|
|
|
|
|
;; unless this is a resend.
|
|
|
|
|
;; We must not do that for a resend
|
|
|
|
|
;; because we would find the original addresses.
|
|
|
|
|
;; For a resend, include the specific addresses.
|
|
|
|
|
(or resend-to-addresses
|
|
|
|
|
'("-t")))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(if mail-interactive
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer errbuf)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "\n\n* *" nil t)
|
|
|
|
|
(replace-match "; "))
|
|
|
|
|
(if (not (zerop (buffer-size)))
|
|
|
|
|
(error "Sending...failed to %s"
|
|
|
|
|
(buffer-substring (point-min) (point-max)))))))
|
|
|
|
|
(kill-buffer tembuf)
|
|
|
|
|
(if (bufferp errbuf)
|
|
|
|
|
(kill-buffer errbuf)))))
|
|
|
|
|
|
|
|
|
|
(defun mail-do-fcc (header-end)
|
|
|
|
|
(let (fcc-list
|
|
|
|
|
(rmailbuf (current-buffer))
|
1993-05-20 06:28:46 +00:00
|
|
|
|
(time (current-time))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(tembuf (generate-new-buffer " rmail output"))
|
|
|
|
|
(case-fold-search t))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "^FCC:[ \t]*" header-end t)
|
|
|
|
|
(setq fcc-list (cons (buffer-substring (point)
|
|
|
|
|
(progn
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
|
(point)))
|
|
|
|
|
fcc-list))
|
|
|
|
|
(delete-region (match-beginning 0)
|
|
|
|
|
(progn (forward-line 1) (point))))
|
|
|
|
|
(set-buffer tembuf)
|
|
|
|
|
(erase-buffer)
|
1993-05-31 04:21:15 +00:00
|
|
|
|
;; This initial newline is written out if the fcc file already exists.
|
|
|
|
|
(insert "\nFrom " (user-login-name) " "
|
1993-05-20 06:28:46 +00:00
|
|
|
|
(current-time-string time) "\n")
|
1992-09-04 05:21:09 +00:00
|
|
|
|
;; Insert the time zone before the year.
|
|
|
|
|
(forward-char -1)
|
|
|
|
|
(forward-word -1)
|
1993-07-07 17:55:28 +00:00
|
|
|
|
(require 'mail-utils)
|
|
|
|
|
(insert (mail-rfc822-time-zone time) " ")
|
1992-09-04 05:21:09 +00:00
|
|
|
|
(goto-char (point-max))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(insert-buffer-substring rmailbuf)
|
|
|
|
|
;; Make sure messages are separated.
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert ?\n)
|
|
|
|
|
(goto-char 2)
|
|
|
|
|
;; ``Quote'' "^From " as ">From "
|
|
|
|
|
;; (note that this isn't really quoting, as there is no requirement
|
|
|
|
|
;; that "^[>]+From " be quoted in the same transparent way.)
|
|
|
|
|
(let ((case-fold-search nil))
|
|
|
|
|
(while (search-forward "\nFrom " nil t)
|
|
|
|
|
(forward-char -5)
|
|
|
|
|
(insert ?>)))
|
|
|
|
|
(while fcc-list
|
1995-04-13 05:43:35 +00:00
|
|
|
|
(let* ((buffer (find-buffer-visiting (car fcc-list)))
|
1995-02-13 06:49:27 +00:00
|
|
|
|
(curbuf (current-buffer))
|
|
|
|
|
(beg (point-min)) (end (point-max))
|
|
|
|
|
(beg2 (save-excursion (goto-char (point-min))
|
|
|
|
|
(forward-line 2) (point))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(if buffer
|
|
|
|
|
;; File is present in a buffer => append to that buffer.
|
1994-10-13 09:13:36 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer buffer)
|
|
|
|
|
;; Keep the end of the accessible portion at the same place
|
|
|
|
|
;; unless it is the end of the buffer.
|
|
|
|
|
(let ((max (if (/= (1+ (buffer-size)) (point-max))
|
|
|
|
|
(point-max))))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
;; Code below lifted from rmailout.el
|
|
|
|
|
;; function rmail-output-to-rmail-file:
|
|
|
|
|
(let ((buffer-read-only nil)
|
|
|
|
|
(msg (and (boundp 'rmail-current-message)
|
|
|
|
|
rmail-current-message)))
|
|
|
|
|
;; If MSG is non-nil, buffer is in RMAIL mode.
|
|
|
|
|
(if msg
|
|
|
|
|
(progn
|
|
|
|
|
(rmail-maybe-set-message-counters)
|
|
|
|
|
(widen)
|
|
|
|
|
(narrow-to-region (point-max) (point-max))
|
|
|
|
|
(insert "\C-l\n0, unseen,,\n*** EOOH ***\n"
|
|
|
|
|
"Date: " (mail-rfc822-date) "\n")
|
|
|
|
|
(insert-buffer-substring curbuf beg2 end)
|
|
|
|
|
(insert "\n\C-_")
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(widen)
|
|
|
|
|
(search-backward "\n\^_")
|
|
|
|
|
(narrow-to-region (point) (point-max))
|
|
|
|
|
(rmail-count-new-messages t)
|
|
|
|
|
(rmail-show-message msg)
|
|
|
|
|
(setq max nil))
|
|
|
|
|
;; Output file not in rmail mode
|
|
|
|
|
;; => just insert at the end.
|
|
|
|
|
(narrow-to-region (point-min) (1+ (buffer-size)))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert-buffer-substring curbuf beg end)))
|
|
|
|
|
(if max (narrow-to-region (point-min) max)))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
;; Else append to the file directly.
|
1994-10-14 04:49:32 +00:00
|
|
|
|
(if (and (file-exists-p (car fcc-list))
|
|
|
|
|
(mail-file-babyl-p (car fcc-list)))
|
1994-10-13 09:13:36 +00:00
|
|
|
|
;; If the file is a Babyl file,
|
|
|
|
|
;; convert the message to Babyl format.
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (get-buffer-create " mail-temp"))
|
1995-09-22 02:48:04 +00:00
|
|
|
|
(setq buffer-read-only nil)
|
1995-09-22 02:46:46 +00:00
|
|
|
|
(erase-buffer)
|
1994-10-13 09:13:36 +00:00
|
|
|
|
(insert "\C-l\n0, unseen,,\n*** EOOH ***\n"
|
|
|
|
|
"Date: " (mail-rfc822-date) "\n")
|
|
|
|
|
(insert-buffer-substring curbuf beg2 end)
|
|
|
|
|
(insert "\n\C-_")
|
1995-09-22 02:46:46 +00:00
|
|
|
|
(write-region (point-min) (point-max) (car fcc-list) t)
|
|
|
|
|
(erase-buffer))
|
1994-10-13 09:13:36 +00:00
|
|
|
|
(write-region
|
|
|
|
|
(1+ (point-min)) (point-max) (car fcc-list) t))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(setq fcc-list (cdr fcc-list))))
|
|
|
|
|
(kill-buffer tembuf)))
|
|
|
|
|
|
|
|
|
|
(defun mail-sent-via ()
|
|
|
|
|
"Make a Sent-via header line from each To or CC header line."
|
|
|
|
|
(interactive)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; find the header-separator
|
|
|
|
|
(search-forward (concat "\n" mail-header-separator "\n"))
|
|
|
|
|
(forward-line -1)
|
|
|
|
|
;; put a marker at the end of the header
|
|
|
|
|
(let ((end (point-marker))
|
|
|
|
|
(case-fold-search t)
|
|
|
|
|
to-line)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
;; search for the To: lines and make Sent-via: lines from them
|
|
|
|
|
;; search for the next To: line
|
|
|
|
|
(while (re-search-forward "^\\(to\\|cc\\):" end t)
|
|
|
|
|
;; Grab this line plus all its continuations, sans the `to:'.
|
|
|
|
|
(let ((to-line
|
|
|
|
|
(buffer-substring (point)
|
|
|
|
|
(progn
|
|
|
|
|
(if (re-search-forward "^[^ \t\n]" end t)
|
|
|
|
|
(backward-char 1)
|
|
|
|
|
(goto-char end))
|
|
|
|
|
(point)))))
|
|
|
|
|
;; Insert a copy, with altered header field name.
|
|
|
|
|
(insert-before-markers "Sent-via:" to-line))))))
|
|
|
|
|
|
|
|
|
|
(defun mail-to ()
|
|
|
|
|
"Move point to end of To-field."
|
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(mail-position-on-field "To"))
|
|
|
|
|
|
|
|
|
|
(defun mail-subject ()
|
|
|
|
|
"Move point to end of Subject-field."
|
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(mail-position-on-field "Subject"))
|
|
|
|
|
|
|
|
|
|
(defun mail-cc ()
|
|
|
|
|
"Move point to end of CC-field. Create a CC field if none."
|
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(or (mail-position-on-field "cc" t)
|
|
|
|
|
(progn (mail-position-on-field "to")
|
|
|
|
|
(insert "\nCC: "))))
|
|
|
|
|
|
|
|
|
|
(defun mail-bcc ()
|
|
|
|
|
"Move point to end of BCC-field. Create a BCC field if none."
|
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(or (mail-position-on-field "bcc" t)
|
|
|
|
|
(progn (mail-position-on-field "to")
|
|
|
|
|
(insert "\nBCC: "))))
|
|
|
|
|
|
1993-12-02 21:04:45 +00:00
|
|
|
|
(defun mail-fcc (folder)
|
1992-03-12 03:48:12 +00:00
|
|
|
|
"Add a new FCC field, with file name completion."
|
1993-12-02 21:04:45 +00:00
|
|
|
|
(interactive "FFolder carbon copy: ")
|
1992-03-12 03:48:12 +00:00
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(or (mail-position-on-field "fcc" t) ;Put new field after exiting FCC.
|
|
|
|
|
(mail-position-on-field "to"))
|
1993-12-02 21:04:45 +00:00
|
|
|
|
(insert "\nFCC: " folder))
|
1992-03-12 03:48:12 +00:00
|
|
|
|
|
1995-02-13 06:49:27 +00:00
|
|
|
|
(defun mail-reply-to ()
|
|
|
|
|
"Move point to end of Reply-To-field."
|
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(mail-position-on-field "Reply-To"))
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defun mail-position-on-field (field &optional soft)
|
|
|
|
|
(let (end
|
|
|
|
|
(case-fold-search t))
|
|
|
|
|
(goto-char (point-min))
|
1995-04-25 03:35:00 +00:00
|
|
|
|
(re-search-forward (concat "^" (regexp-quote mail-header-separator) "$"))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(setq end (match-beginning 0))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (re-search-forward (concat "^" (regexp-quote field) ":") end t)
|
|
|
|
|
(progn
|
|
|
|
|
(re-search-forward "^[^ \t]" nil 'move)
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(skip-chars-backward "\n")
|
|
|
|
|
t)
|
|
|
|
|
(or soft
|
|
|
|
|
(progn (goto-char end)
|
1992-04-01 11:14:15 +00:00
|
|
|
|
(insert field ": \n")
|
|
|
|
|
(skip-chars-backward "\n")))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
nil)))
|
|
|
|
|
|
|
|
|
|
(defun mail-text ()
|
1995-05-19 18:57:48 +00:00
|
|
|
|
"Move point to beginning of message text."
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(interactive)
|
1995-05-22 19:41:25 +00:00
|
|
|
|
(expand-abbrev)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward (concat "\n" mail-header-separator "\n")))
|
|
|
|
|
|
1992-06-03 17:50:56 +00:00
|
|
|
|
(defun mail-signature (atpoint)
|
1995-10-04 19:34:25 +00:00
|
|
|
|
"Sign letter with contents of the file `mail-signature-file'.
|
1994-02-07 23:05:56 +00:00
|
|
|
|
Prefix arg means put contents at point."
|
1992-06-03 17:50:56 +00:00
|
|
|
|
(interactive "P")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(save-excursion
|
1992-06-03 17:50:56 +00:00
|
|
|
|
(or atpoint
|
|
|
|
|
(goto-char (point-max)))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(skip-chars-backward " \t\n")
|
|
|
|
|
(end-of-line)
|
1992-06-03 17:50:56 +00:00
|
|
|
|
(or atpoint
|
|
|
|
|
(delete-region (point) (point-max)))
|
1994-02-08 17:51:57 +00:00
|
|
|
|
(insert "\n\n-- \n")
|
1995-10-04 19:34:25 +00:00
|
|
|
|
(insert-file-contents (expand-file-name mail-signature-file))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-fill-yanked-message (&optional justifyp)
|
|
|
|
|
"Fill the paragraphs of a message yanked into this one.
|
|
|
|
|
Numeric argument means justify as well."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(search-forward (concat "\n" mail-header-separator "\n") nil t)
|
|
|
|
|
(fill-individual-paragraphs (point)
|
|
|
|
|
(point-max)
|
|
|
|
|
justifyp
|
|
|
|
|
t)))
|
|
|
|
|
|
1993-06-01 23:19:49 +00:00
|
|
|
|
(defun mail-indent-citation ()
|
|
|
|
|
"Modify text just inserted from a message to be cited.
|
|
|
|
|
The inserted text should be the region.
|
|
|
|
|
When this function returns, the region is again around the modified text.
|
|
|
|
|
|
|
|
|
|
Normally, indent each nonblank line `mail-indentation-spaces' spaces.
|
|
|
|
|
However, if `mail-yank-prefix' is non-nil, insert that prefix on each line."
|
|
|
|
|
(let ((start (point)))
|
|
|
|
|
(mail-yank-clear-headers start (mark t))
|
|
|
|
|
(if (null mail-yank-prefix)
|
|
|
|
|
(indent-rigidly start (mark t) mail-indentation-spaces)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(while (< (point) (mark t))
|
|
|
|
|
(insert mail-yank-prefix)
|
|
|
|
|
(forward-line 1))))))
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defun mail-yank-original (arg)
|
|
|
|
|
"Insert the message being replied to, if any (in rmail).
|
1996-01-25 23:52:59 +00:00
|
|
|
|
Puts point after the text and mark before.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
Normally, indents each nonblank line ARG spaces (default 3).
|
|
|
|
|
However, if `mail-yank-prefix' is non-nil, insert that prefix on each line.
|
|
|
|
|
|
|
|
|
|
Just \\[universal-argument] as argument means don't indent, insert no prefix,
|
|
|
|
|
and don't delete any header fields."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(if mail-reply-buffer
|
|
|
|
|
(let ((start (point)))
|
1993-11-21 22:18:15 +00:00
|
|
|
|
;; If the original message is in another window in the same frame,
|
|
|
|
|
;; delete that window to save screen space.
|
|
|
|
|
;; t means don't alter other frames.
|
|
|
|
|
(delete-windows-on mail-reply-buffer t)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(insert-buffer mail-reply-buffer)
|
|
|
|
|
(if (consp arg)
|
|
|
|
|
nil
|
1993-06-01 23:19:49 +00:00
|
|
|
|
(goto-char start)
|
|
|
|
|
(let ((mail-indentation-spaces (if arg (prefix-numeric-value arg)
|
|
|
|
|
mail-indentation-spaces)))
|
1993-06-17 23:44:04 +00:00
|
|
|
|
(if mail-citation-hook
|
|
|
|
|
(run-hooks 'mail-citation-hook)
|
1993-08-02 07:43:59 +00:00
|
|
|
|
(if mail-yank-hooks
|
|
|
|
|
(run-hooks 'mail-yank-hooks)
|
|
|
|
|
(mail-indent-citation)))))
|
1993-05-18 19:21:13 +00:00
|
|
|
|
;; This is like exchange-point-and-mark, but doesn't activate the mark.
|
|
|
|
|
;; It is cleaner to avoid activation, even though the command
|
|
|
|
|
;; loop would deactivate the mark because we inserted text.
|
|
|
|
|
(goto-char (prog1 (mark t)
|
|
|
|
|
(set-marker (mark-marker) (point) (current-buffer))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(if (not (eolp)) (insert ?\n)))))
|
|
|
|
|
|
|
|
|
|
(defun mail-yank-clear-headers (start end)
|
1995-11-10 17:23:49 +00:00
|
|
|
|
(if mail-yank-ignored-headers
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(if (search-forward "\n\n" end t)
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region start (point))
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(while (let ((case-fold-search t))
|
|
|
|
|
(re-search-forward mail-yank-ignored-headers nil t))
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(delete-region (point)
|
|
|
|
|
(progn (re-search-forward "\n[^ \t]")
|
|
|
|
|
(forward-char -1)
|
|
|
|
|
(point)))))))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
;; Put these last, to reduce chance of lossage from quitting in middle of loading the file.
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun mail (&optional noerase to subject in-reply-to cc replybuffer actions)
|
1992-07-30 04:31:37 +00:00
|
|
|
|
"Edit a message to be sent. Prefix arg means resume editing (don't erase).
|
|
|
|
|
When this function returns, the buffer `*mail*' is selected.
|
|
|
|
|
The value is t if the message was newly initialized; otherwise, nil.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1995-10-04 19:34:25 +00:00
|
|
|
|
Optionally, the signature file `mail-signature-file' can be inserted at the
|
|
|
|
|
end; see the variable `mail-signature'.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
\\<mail-mode-map>
|
|
|
|
|
While editing message, type \\[mail-send-and-exit] to send the message and exit.
|
|
|
|
|
|
|
|
|
|
Various special commands starting with C-c are available in sendmail mode
|
|
|
|
|
to move to message header fields:
|
|
|
|
|
\\{mail-mode-map}
|
|
|
|
|
|
|
|
|
|
If `mail-self-blind' is non-nil, a BCC to yourself is inserted
|
|
|
|
|
when the message is initialized.
|
|
|
|
|
|
|
|
|
|
If `mail-default-reply-to' is non-nil, it should be an address (a string);
|
|
|
|
|
a Reply-to: field with that address is inserted.
|
|
|
|
|
|
|
|
|
|
If `mail-archive-file-name' is non-nil, an FCC field with that file name
|
|
|
|
|
is inserted.
|
|
|
|
|
|
1995-07-17 23:00:06 +00:00
|
|
|
|
The normal hook `mail-setup-hook' is run after the message is
|
|
|
|
|
initialized. It can add more default fields to the message.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1994-09-27 20:14:55 +00:00
|
|
|
|
When calling from a program, the first argument if non-nil says
|
|
|
|
|
not to erase the existing contents of the `*mail*' buffer.
|
|
|
|
|
|
|
|
|
|
The second through fifth arguments,
|
|
|
|
|
TO, SUBJECT, IN-REPLY-TO and CC, specify if non-nil
|
1991-12-13 07:34:20 +00:00
|
|
|
|
the initial contents of those header fields.
|
|
|
|
|
These arguments should not have final newlines.
|
|
|
|
|
The sixth argument REPLYBUFFER is a buffer whose contents
|
|
|
|
|
should be yanked if the user types C-c C-y.
|
|
|
|
|
The seventh argument ACTIONS is a list of actions to take
|
|
|
|
|
if/when the message is sent. Each action looks like (FUNCTION . ARGS);
|
|
|
|
|
when the message is sent, we apply FUNCTION to ARGS.
|
|
|
|
|
This is how Rmail arranges to mark messages `answered'."
|
|
|
|
|
(interactive "P")
|
1992-07-30 04:31:37 +00:00
|
|
|
|
;;; This is commented out because I found it was confusing in practice.
|
|
|
|
|
;;; It is easy enough to rename *mail* by hand with rename-buffer
|
|
|
|
|
;;; if you want to have multiple mail buffers.
|
|
|
|
|
;;; And then you can control which messages to save. --rms.
|
|
|
|
|
;;; (let ((index 1)
|
|
|
|
|
;;; buffer)
|
|
|
|
|
;;; ;; If requested, look for a mail buffer that is modified and go to it.
|
|
|
|
|
;;; (if noerase
|
|
|
|
|
;;; (progn
|
|
|
|
|
;;; (while (and (setq buffer
|
|
|
|
|
;;; (get-buffer (if (= 1 index) "*mail*"
|
|
|
|
|
;;; (format "*mail*<%d>" index))))
|
|
|
|
|
;;; (not (buffer-modified-p buffer)))
|
|
|
|
|
;;; (setq index (1+ index)))
|
|
|
|
|
;;; (if buffer (switch-to-buffer buffer)
|
|
|
|
|
;;; ;; If none exists, start a new message.
|
|
|
|
|
;;; ;; This will never re-use an existing unmodified mail buffer
|
|
|
|
|
;;; ;; (since index is not 1 anymore). Perhaps it should.
|
|
|
|
|
;;; (setq noerase nil))))
|
|
|
|
|
;;; ;; Unless we found a modified message and are happy, start a new message.
|
|
|
|
|
;;; (if (not noerase)
|
|
|
|
|
;;; (progn
|
|
|
|
|
;;; ;; Look for existing unmodified mail buffer.
|
|
|
|
|
;;; (while (and (setq buffer
|
|
|
|
|
;;; (get-buffer (if (= 1 index) "*mail*"
|
|
|
|
|
;;; (format "*mail*<%d>" index))))
|
|
|
|
|
;;; (buffer-modified-p buffer))
|
|
|
|
|
;;; (setq index (1+ index)))
|
|
|
|
|
;;; ;; If none, make a new one.
|
|
|
|
|
;;; (or buffer
|
|
|
|
|
;;; (setq buffer (generate-new-buffer "*mail*")))
|
|
|
|
|
;;; ;; Go there and initialize it.
|
|
|
|
|
;;; (switch-to-buffer buffer)
|
|
|
|
|
;;; (erase-buffer)
|
|
|
|
|
;;; (setq default-directory (expand-file-name "~/"))
|
|
|
|
|
;;; (auto-save-mode auto-save-default)
|
|
|
|
|
;;; (mail-mode)
|
|
|
|
|
;;; (mail-setup to subject in-reply-to cc replybuffer actions)
|
|
|
|
|
;;; (if (and buffer-auto-save-file-name
|
|
|
|
|
;;; (file-exists-p buffer-auto-save-file-name))
|
|
|
|
|
;;; (message "Auto save file for draft message exists; consider M-x mail-recover"))
|
|
|
|
|
;;; t))
|
1995-03-25 20:49:23 +00:00
|
|
|
|
(pop-to-buffer "*mail*")
|
1996-04-03 04:42:55 +00:00
|
|
|
|
;; Put the auto-save file in the home dir
|
|
|
|
|
;; to avoid any danger that it can't be written.
|
1996-04-03 04:51:35 +00:00
|
|
|
|
(if (file-exists-p (expand-file-name "~/"))
|
|
|
|
|
(setq default-directory (expand-file-name "~/")))
|
|
|
|
|
(auto-save-mode auto-save-default)
|
1992-07-30 04:31:37 +00:00
|
|
|
|
(mail-mode)
|
1994-07-05 16:52:59 +00:00
|
|
|
|
;; Disconnect the buffer from its visited file
|
|
|
|
|
;; (in case the user has actually visited a file *mail*).
|
1994-07-05 16:54:01 +00:00
|
|
|
|
; (set-visited-file-name nil)
|
1992-07-30 04:31:37 +00:00
|
|
|
|
(let (initialized)
|
|
|
|
|
(and (not noerase)
|
|
|
|
|
(or (not (buffer-modified-p))
|
|
|
|
|
(y-or-n-p "Unsent message being composed; erase it? "))
|
1995-12-23 07:42:36 +00:00
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(mail-setup to subject in-reply-to cc replybuffer actions)
|
|
|
|
|
(setq initialized t)))
|
1992-07-30 04:31:37 +00:00
|
|
|
|
(if (and buffer-auto-save-file-name
|
|
|
|
|
(file-exists-p buffer-auto-save-file-name))
|
|
|
|
|
(message "Auto save file for draft message exists; consider M-x mail-recover"))
|
|
|
|
|
initialized))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-recover ()
|
|
|
|
|
"Reread contents of current buffer from its last auto-save file."
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((file-name (make-auto-save-file-name)))
|
|
|
|
|
(cond ((save-window-excursion
|
|
|
|
|
(if (not (eq system-type 'vax-vms))
|
|
|
|
|
(with-output-to-temp-buffer "*Directory*"
|
|
|
|
|
(buffer-disable-undo standard-output)
|
1995-11-04 00:39:03 +00:00
|
|
|
|
(let ((default-directory "/"))
|
|
|
|
|
(call-process
|
|
|
|
|
"ls" nil standard-output nil "-l" file-name))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(yes-or-no-p (format "Recover auto save file %s? " file-name)))
|
|
|
|
|
(let ((buffer-read-only nil))
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert-file-contents file-name nil)))
|
1994-07-05 16:52:59 +00:00
|
|
|
|
(t (error "mail-recover cancelled")))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun mail-other-window (&optional noerase to subject in-reply-to cc replybuffer sendactions)
|
|
|
|
|
"Like `mail' command, but display mail buffer in another window."
|
|
|
|
|
(interactive "P")
|
1995-03-25 20:49:23 +00:00
|
|
|
|
(let ((pop-up-windows t)
|
|
|
|
|
(special-display-buffer-names nil)
|
|
|
|
|
(special-display-regexps nil)
|
|
|
|
|
(same-window-buffer-names nil)
|
|
|
|
|
(same-window-regexps nil))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(pop-to-buffer "*mail*"))
|
|
|
|
|
(mail noerase to subject in-reply-to cc replybuffer sendactions))
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
1992-07-15 03:24:58 +00:00
|
|
|
|
(defun mail-other-frame (&optional noerase to subject in-reply-to cc replybuffer sendactions)
|
|
|
|
|
"Like `mail' command, but display mail buffer in another frame."
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(interactive "P")
|
1995-03-25 20:49:23 +00:00
|
|
|
|
(let ((pop-up-frames t)
|
|
|
|
|
(special-display-buffer-names nil)
|
|
|
|
|
(special-display-regexps nil)
|
|
|
|
|
(same-window-buffer-names nil)
|
|
|
|
|
(same-window-regexps nil))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(pop-to-buffer "*mail*"))
|
|
|
|
|
(mail noerase to subject in-reply-to cc replybuffer sendactions))
|
|
|
|
|
|
1993-07-29 18:24:32 +00:00
|
|
|
|
;;; Do not execute these when sendmail.el is loaded,
|
|
|
|
|
;;; only in loaddefs.el.
|
|
|
|
|
;;;###autoload (define-key ctl-x-map "m" 'mail)
|
|
|
|
|
;;;###autoload (define-key ctl-x-4-map "m" 'mail-other-window)
|
|
|
|
|
;;;###autoload (define-key ctl-x-5-map "m" 'mail-other-frame)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1995-03-25 20:49:23 +00:00
|
|
|
|
;;;###autoload (add-hook 'same-window-buffer-names "*mail*")
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
;;; Do not add anything but external entries on this page.
|
1992-03-16 20:39:07 +00:00
|
|
|
|
|
|
|
|
|
(provide 'sendmail)
|
|
|
|
|
|
1992-05-30 21:11:25 +00:00
|
|
|
|
;;; sendmail.el ends here
|