2000-10-08 17:30:59 +00:00
|
|
|
|
;;; sendmail.el --- mail sending commands for Emacs. -*- byte-compile-dynamic: t -*-
|
1992-05-30 21:11:25 +00:00
|
|
|
|
|
2011-01-25 04:08:28 +00:00
|
|
|
|
;; Copyright (C) 1985-1986, 1992-1996, 1998, 2000-2011
|
2008-06-07 02:40:47 +00:00
|
|
|
|
;; 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.
|
|
|
|
|
|
2008-05-06 07:25:26 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1991-12-13 07:34:20 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 07:25:26 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
;; 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
|
2008-05-06 07:25:26 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
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:
|
2010-12-14 05:01:08 +00:00
|
|
|
|
(require 'mail-utils)
|
2000-01-08 22:36:16 +00:00
|
|
|
|
|
2011-05-23 04:44:29 +00:00
|
|
|
|
(require 'rfc2047)
|
2001-01-26 18:24:03 +00:00
|
|
|
|
|
1998-02-22 22:01:28 +00:00
|
|
|
|
(defgroup sendmail nil
|
|
|
|
|
"Mail sending commands for Emacs."
|
|
|
|
|
:prefix "mail-"
|
|
|
|
|
:group 'mail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
2005-06-17 14:28:44 +00:00
|
|
|
|
(defcustom mail-setup-with-from t
|
|
|
|
|
"Non-nil means insert `From:' field when setting up the message."
|
2005-06-23 21:22:43 +00:00
|
|
|
|
:type 'boolean
|
2005-06-17 14:28:44 +00:00
|
|
|
|
:group 'sendmail
|
|
|
|
|
:version "22.1")
|
|
|
|
|
|
2006-09-04 14:17:12 +00:00
|
|
|
|
(defcustom sendmail-program
|
2011-05-13 01:42:24 +00:00
|
|
|
|
(or (executable-find "sendmail")
|
|
|
|
|
(cond
|
|
|
|
|
((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail")
|
|
|
|
|
((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
|
|
|
|
|
((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail")
|
2011-05-18 03:39:45 +00:00
|
|
|
|
(t "sendmail")))
|
2006-09-04 14:17:12 +00:00
|
|
|
|
"Program used to send messages."
|
2011-05-18 03:39:45 +00:00
|
|
|
|
:version "24.1" ; add executable-find, remove fakemail
|
2006-09-04 14:17:12 +00:00
|
|
|
|
:group 'mail
|
|
|
|
|
:type 'file)
|
|
|
|
|
|
1994-11-30 22:03:35 +00:00
|
|
|
|
;;;###autoload
|
2009-11-19 16:48:30 +00:00
|
|
|
|
(defcustom mail-from-style 'default
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Specifies how \"From:\" fields look.
|
1994-11-30 22:03:35 +00:00
|
|
|
|
|
|
|
|
|
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:
|
1998-05-28 04:06:52 +00:00
|
|
|
|
Elvis Parsley <king@grassland.com>
|
2009-11-19 16:48:30 +00:00
|
|
|
|
|
|
|
|
|
Otherwise, most addresses look like `angles', but they look like
|
|
|
|
|
`parens' if `angles' would need quoting and `parens' would not."
|
|
|
|
|
;; The value `system-default' is now deprecated.
|
|
|
|
|
:type '(choice (const :tag "simple" nil)
|
|
|
|
|
(const parens)
|
|
|
|
|
(const angles)
|
|
|
|
|
(const default))
|
1998-05-28 04:07:14 +00:00
|
|
|
|
:version "20.3"
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:group 'sendmail)
|
1994-11-30 22:03:35 +00:00
|
|
|
|
|
1999-08-10 17:46:24 +00:00
|
|
|
|
;;;###autoload
|
2000-06-13 21:35:42 +00:00
|
|
|
|
(defcustom mail-specify-envelope-from nil
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"If non-nil, specify the envelope-from address when sending mail.
|
2001-07-06 10:31:11 +00:00
|
|
|
|
The value used to specify it is whatever is found in
|
2004-04-16 12:51:06 +00:00
|
|
|
|
the variable `mail-envelope-from', with `user-mail-address' as fallback.
|
1999-08-10 17:46:24 +00:00
|
|
|
|
|
2003-07-04 11:24:57 +00:00
|
|
|
|
On most systems, specifying the envelope-from address is a
|
2004-04-16 12:51:06 +00:00
|
|
|
|
privileged operation. This variable affects sendmail and
|
|
|
|
|
smtpmail -- if you use feedmail to send mail, see instead the
|
|
|
|
|
variable `feedmail-deduce-envelope-from'."
|
1999-08-10 17:46:24 +00:00
|
|
|
|
:version "21.1"
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'sendmail)
|
|
|
|
|
|
2001-07-06 10:31:11 +00:00
|
|
|
|
(defcustom mail-envelope-from nil
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"If non-nil, designate the envelope-from address when sending mail.
|
2003-07-04 11:24:57 +00:00
|
|
|
|
This only has an effect if `mail-specify-envelope-from' is non-nil.
|
|
|
|
|
The value should be either a string, or the symbol `header' (in
|
|
|
|
|
which case the contents of the \"From\" header of the message
|
|
|
|
|
being sent is used), or nil (in which case the value of
|
|
|
|
|
`user-mail-address' is used)."
|
2001-07-06 10:31:11 +00:00
|
|
|
|
:version "21.1"
|
2001-12-28 18:58:40 +00:00
|
|
|
|
:type '(choice (string :tag "From-name")
|
2002-10-11 02:27:30 +00:00
|
|
|
|
(const :tag "Use From: header from message" header)
|
2001-12-28 18:58:40 +00:00
|
|
|
|
(const :tag "Use `user-mail-address'" nil))
|
2001-07-06 10:31:11 +00:00
|
|
|
|
:group 'sendmail)
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
;;;###autoload
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(defcustom mail-self-blind nil
|
|
|
|
|
"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,
|
1998-02-22 22:01:28 +00:00
|
|
|
|
so you can remove or alter the BCC field to override the default."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'sendmail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2008-06-06 05:59:38 +00:00
|
|
|
|
(defcustom mail-interactive t
|
|
|
|
|
;; We used to use a default of nil rather than t, but nowadays it is very
|
|
|
|
|
;; common for sendmail to be misconfigured, so one cannot rely on the
|
|
|
|
|
;; bounce message to be delivered anywhere, least of all to the
|
|
|
|
|
;; user's mailbox.
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Non-nil means when sending a message wait for and display errors.
|
2009-03-14 20:25:06 +00:00
|
|
|
|
Otherwise, let mailer send back a message to report errors."
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:type 'boolean
|
2008-06-07 02:40:47 +00:00
|
|
|
|
:version "23.1" ; changed from nil to t
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:group 'sendmail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(defcustom mail-yank-ignored-headers
|
|
|
|
|
(concat "^"
|
|
|
|
|
(regexp-opt '("via" "mail-from" "origin" "status" "remailed"
|
|
|
|
|
"received" "message-id" "summary-line" "to" "subject"
|
|
|
|
|
"in-reply-to" "return-path" "mail-reply-to"
|
2009-03-14 20:25:06 +00:00
|
|
|
|
;; Should really be rmail-attribute-header and
|
|
|
|
|
;; rmail-keyword-header, but this file does not
|
|
|
|
|
;; require rmail (at run time).
|
|
|
|
|
"x-rmail-attributes" "x-rmail-keywords"
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"mail-followup-to") "\\(?:")
|
|
|
|
|
":")
|
|
|
|
|
"Delete these headers from old message when it's inserted in a reply."
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:type 'regexp
|
2009-03-14 20:25:06 +00:00
|
|
|
|
:group 'sendmail
|
|
|
|
|
:version "23.1")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
;; Useful to set in site-init.el
|
|
|
|
|
;;;###autoload
|
2011-10-11 21:31:22 +00:00
|
|
|
|
(defcustom send-mail-function
|
|
|
|
|
;; Assume smtpmail is the preferred choice if it's already configured.
|
|
|
|
|
(if (and (boundp 'smtpmail-smtp-server)
|
|
|
|
|
smtpmail-smtp-server)
|
|
|
|
|
'smtpmail-send-it 'sendmail-query-once)
|
2001-01-26 18:24:03 +00:00
|
|
|
|
"Function to call to send the current buffer as mail.
|
1998-05-03 04:35:16 +00:00
|
|
|
|
The headers should be delimited by a line which is
|
2001-09-27 11:03:03 +00:00
|
|
|
|
not a valid RFC822 header or continuation line,
|
|
|
|
|
that matches the variable `mail-header-separator'.
|
2001-01-26 18:24:03 +00:00
|
|
|
|
This is used by the default mail-sending commands. See also
|
|
|
|
|
`message-send-mail-function' for use with the Message package."
|
2000-12-18 13:57:32 +00:00
|
|
|
|
:type '(radio (function-item sendmail-send-it :tag "Use Sendmail package")
|
2011-06-29 20:21:29 +00:00
|
|
|
|
(function-item sendmail-query-once :tag "Query the user")
|
2000-12-18 13:57:32 +00:00
|
|
|
|
(function-item smtpmail-send-it :tag "Use SMTPmail package")
|
|
|
|
|
(function-item feedmail-send-it :tag "Use Feedmail package")
|
2005-09-09 01:22:05 +00:00
|
|
|
|
(function-item mailclient-send-it :tag "Use Mailclient package")
|
2000-12-18 13:48:34 +00:00
|
|
|
|
function)
|
2011-07-06 15:39:32 +00:00
|
|
|
|
:version "24.1"
|
2000-12-18 13:48:34 +00:00
|
|
|
|
:group 'sendmail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
2009-10-26 06:43:36 +00:00
|
|
|
|
(defcustom mail-header-separator (purecopy "--text follows this line--")
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Line used to separate headers from text in messages being composed."
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:type 'string
|
|
|
|
|
:group 'sendmail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
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))
|
2005-12-05 17:08:00 +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
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(defcustom mail-archive-file-name nil
|
|
|
|
|
"Name of file to write all outgoing messages in, or nil for none.
|
2009-03-10 07:20:32 +00:00
|
|
|
|
This is normally an mbox file, but for backwards compatibility may also
|
|
|
|
|
be a Babyl file."
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:type '(choice file (const nil))
|
|
|
|
|
:group 'sendmail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1993-12-23 02:45:28 +00:00
|
|
|
|
;;;###autoload
|
1998-02-22 22:01:28 +00:00
|
|
|
|
(defcustom mail-default-reply-to nil
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Address to insert as default Reply-to field of outgoing messages.
|
1995-07-19 15:43:56 +00:00
|
|
|
|
If nil, it will be initialized from the REPLYTO environment variable
|
1998-02-22 22:01:28 +00:00
|
|
|
|
when you first send mail."
|
|
|
|
|
:type '(choice (const nil) string)
|
|
|
|
|
:group 'sendmail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1998-02-22 22:01:28 +00:00
|
|
|
|
(defcustom mail-alias-file nil
|
2010-12-14 05:01:08 +00:00
|
|
|
|
"If non-nil, the name of a file to use instead of the sendmail default.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
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.
|
2010-12-14 05:01:08 +00:00
|
|
|
|
This variable has no effect unless your system uses sendmail as its mailer.
|
|
|
|
|
The default file is defined in sendmail's configuration file, e.g.
|
|
|
|
|
`/etc/aliases'."
|
|
|
|
|
:type '(choice (const :tag "Sendmail default" nil) file)
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:group 'sendmail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1995-01-03 23:43:27 +00:00
|
|
|
|
;;;###autoload
|
2009-10-26 06:43:36 +00:00
|
|
|
|
(defcustom mail-personal-alias-file (purecopy "~/.mailrc")
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"If non-nil, the name of the user's personal mail alias file.
|
1995-01-03 23:43:27 +00:00
|
|
|
|
This file typically should be in same format as the `.mailrc' file used by
|
|
|
|
|
the `Mail' or `mailx' program.
|
1998-02-22 22:01:28 +00:00
|
|
|
|
This file need not actually exist."
|
|
|
|
|
:type '(choice (const nil) file)
|
|
|
|
|
:group 'sendmail)
|
1995-01-03 23:43:27 +00:00
|
|
|
|
|
2005-10-20 14:34:42 +00:00
|
|
|
|
;;;###autoload
|
1998-02-22 22:01:28 +00:00
|
|
|
|
(defcustom mail-setup-hook nil
|
2009-12-01 16:20:59 +00:00
|
|
|
|
"Normal hook, run each time a new outgoing message is initialized."
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:type 'hook
|
2000-10-08 17:30:59 +00:00
|
|
|
|
:options '(fortune-to-signature spook mail-abbrevs-setup)
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:group 'sendmail)
|
1995-07-17 23:00:06 +00:00
|
|
|
|
|
2005-10-20 14:34:42 +00:00
|
|
|
|
;;;###autoload
|
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.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
\(The file's name is normally `~/.mailrc', but `mail-personal-alias-file'
|
|
|
|
|
can specify a different file name.)
|
1994-10-22 02:54:46 +00:00
|
|
|
|
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
|
|
|
|
|
2005-10-20 14:34:42 +00:00
|
|
|
|
;;;###autoload
|
2009-11-19 16:48:30 +00:00
|
|
|
|
(defcustom mail-yank-prefix "> "
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Prefix insert on lines of yanked message being replied to.
|
2009-03-15 21:07:39 +00:00
|
|
|
|
If this is nil, use indentation, as specified by `mail-indentation-spaces'."
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:type '(choice (const nil) string)
|
|
|
|
|
:group 'sendmail)
|
|
|
|
|
|
2005-10-20 14:34:42 +00:00
|
|
|
|
;;;###autoload
|
1998-02-22 22:01:28 +00:00
|
|
|
|
(defcustom mail-indentation-spaces 3
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Number of spaces to insert at the beginning of each cited line.
|
1998-02-22 22:01:28 +00:00
|
|
|
|
Used by `mail-yank-original' via `mail-indent-citation'."
|
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'sendmail)
|
2005-10-20 14:34:42 +00:00
|
|
|
|
|
2009-03-14 20:25:06 +00:00
|
|
|
|
;; FIXME make it really obsolete.
|
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.")
|
|
|
|
|
|
2005-03-18 00:08:24 +00:00
|
|
|
|
;;;###autoload
|
1998-02-22 22:01:28 +00:00
|
|
|
|
(defcustom mail-citation-hook nil
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Hook for modifying a citation just inserted in the mail buffer.
|
1998-08-10 07:43:08 +00:00
|
|
|
|
Each hook function can find the citation between (point) and (mark t),
|
|
|
|
|
and should leave point and mark around the citation text as modified.
|
|
|
|
|
The hook functions can find the header of the cited message
|
|
|
|
|
in the variable `mail-citation-header', whether or not this is included
|
|
|
|
|
in the cited portion of the message.
|
1993-06-01 23:19:49 +00:00
|
|
|
|
|
1993-06-17 23:44:04 +00:00
|
|
|
|
If this hook is entirely empty (nil), a default action is taken
|
1998-02-22 22:01:28 +00:00
|
|
|
|
instead of no action."
|
|
|
|
|
:type 'hook
|
|
|
|
|
:group 'sendmail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1998-08-10 07:43:08 +00:00
|
|
|
|
(defvar mail-citation-header nil
|
|
|
|
|
"While running `mail-citation-hook', this variable holds the message header.
|
|
|
|
|
This enables the hook functions to see the whole message header
|
|
|
|
|
regardless of what part of it (if any) is included in the cited text.")
|
|
|
|
|
|
2005-10-20 14:34:42 +00:00
|
|
|
|
;;;###autoload
|
2009-11-19 16:48:30 +00:00
|
|
|
|
(defcustom mail-citation-prefix-regexp
|
2010-09-28 02:13:41 +00:00
|
|
|
|
(purecopy "\\([ \t]*\\(\\w\\|[_.]\\)+>+\\|[ \t]*[]>|]\\)+")
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Regular expression to match a citation prefix plus whitespace.
|
1998-07-13 01:45:43 +00:00
|
|
|
|
It should match whatever sort of citation prefixes you want to handle,
|
|
|
|
|
with whitespace before and after; it should also match just whitespace.
|
|
|
|
|
The default value matches citations like `foo-bar>' plus whitespace."
|
|
|
|
|
:type 'regexp
|
|
|
|
|
:group 'sendmail
|
2010-09-28 02:13:41 +00:00
|
|
|
|
:version "24.1")
|
1998-07-13 01:45:43 +00:00
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defvar mail-abbrevs-loaded nil)
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(defvar mail-mode-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
2011-04-15 13:50:04 +00:00
|
|
|
|
(define-key map "\M-\t" 'completion-at-point)
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(define-key map "\C-c?" 'describe-mode)
|
|
|
|
|
(define-key map "\C-c\C-f\C-t" 'mail-to)
|
|
|
|
|
(define-key map "\C-c\C-f\C-b" 'mail-bcc)
|
|
|
|
|
(define-key map "\C-c\C-f\C-f" 'mail-fcc)
|
|
|
|
|
(define-key map "\C-c\C-f\C-c" 'mail-cc)
|
|
|
|
|
(define-key map "\C-c\C-f\C-s" 'mail-subject)
|
|
|
|
|
(define-key map "\C-c\C-f\C-r" 'mail-reply-to)
|
|
|
|
|
(define-key map "\C-c\C-f\C-a" 'mail-mail-reply-to) ; author
|
|
|
|
|
(define-key map "\C-c\C-f\C-l" 'mail-mail-followup-to) ; list
|
|
|
|
|
(define-key map "\C-c\C-t" 'mail-text)
|
|
|
|
|
(define-key map "\C-c\C-y" 'mail-yank-original)
|
|
|
|
|
(define-key map "\C-c\C-r" 'mail-yank-region)
|
|
|
|
|
(define-key map [remap split-line] 'mail-split-line)
|
|
|
|
|
(define-key map "\C-c\C-q" 'mail-fill-yanked-message)
|
|
|
|
|
(define-key map "\C-c\C-w" 'mail-signature)
|
|
|
|
|
(define-key map "\C-c\C-c" 'mail-send-and-exit)
|
|
|
|
|
(define-key map "\C-c\C-s" 'mail-send)
|
|
|
|
|
(define-key map "\C-c\C-i" 'mail-attach-file)
|
2009-03-15 21:07:39 +00:00
|
|
|
|
;; FIXME add this? "b" = bury buffer. It's in the menu-bar.
|
|
|
|
|
;;; (define-key map "\C-c\C-b" 'mail-dont-send)
|
2005-12-05 17:08:00 +00:00
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar mail]
|
|
|
|
|
(cons "Mail" (make-sparse-keymap "Mail")))
|
|
|
|
|
|
2011-09-03 10:08:14 +00:00
|
|
|
|
(define-key map [menu-bar mail attachment]
|
|
|
|
|
'("Attach File" . mail-add-attachment))
|
|
|
|
|
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(define-key map [menu-bar mail fill]
|
|
|
|
|
'("Fill Citation" . mail-fill-yanked-message))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar mail yank]
|
2009-03-15 21:07:39 +00:00
|
|
|
|
'(menu-item "Cite Original" mail-yank-original :enable mail-reply-action))
|
2005-12-05 17:08:00 +00:00
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar mail signature]
|
|
|
|
|
'("Insert Signature" . mail-signature))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar mail mail-sep]
|
|
|
|
|
'("--"))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar mail cancel]
|
|
|
|
|
'("Cancel" . mail-dont-send))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar mail send-stay]
|
|
|
|
|
'("Send, Keep Editing" . mail-send))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar mail send]
|
|
|
|
|
'("Send Message" . mail-send-and-exit))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers]
|
|
|
|
|
(cons "Headers" (make-sparse-keymap "Move to Header")))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers text]
|
|
|
|
|
'("Text" . mail-text))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers expand-aliases]
|
|
|
|
|
'("Expand Aliases" . expand-mail-aliases))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers mail-reply-to]
|
2009-03-15 21:07:39 +00:00
|
|
|
|
'("Mail-Reply-To" . mail-mail-reply-to))
|
2005-12-05 17:08:00 +00:00
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers mail-followup-to]
|
2009-03-15 21:07:39 +00:00
|
|
|
|
'("Mail-Followup-To" . mail-mail-followup-to))
|
2005-12-05 17:08:00 +00:00
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers reply-to]
|
|
|
|
|
'("Reply-To" . mail-reply-to))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers bcc]
|
|
|
|
|
'("Bcc" . mail-bcc))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers fcc]
|
|
|
|
|
'("Fcc" . mail-fcc))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers cc]
|
|
|
|
|
'("Cc" . mail-cc))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers subject]
|
|
|
|
|
'("Subject" . mail-subject))
|
|
|
|
|
|
|
|
|
|
(define-key map [menu-bar headers to]
|
|
|
|
|
'("To" . mail-to))
|
|
|
|
|
|
|
|
|
|
map))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1992-10-18 22:19:36 +00:00
|
|
|
|
(autoload 'build-mail-aliases "mailalias"
|
2010-11-27 03:29:06 +00:00
|
|
|
|
"Read mail aliases from personal aliases file and set `mail-aliases'.
|
2010-12-14 04:42:59 +00:00
|
|
|
|
By default, this is the file specified by `mail-personal-alias-file'." t)
|
1992-10-18 22:19:36 +00:00
|
|
|
|
|
1992-08-19 03:54:51 +00:00
|
|
|
|
;;;###autoload
|
2009-11-19 16:48:30 +00:00
|
|
|
|
(defcustom mail-signature t
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Text inserted at end of mail buffer when a message is initialized.
|
1998-05-09 07:24:47 +00:00
|
|
|
|
If t, it means to insert the contents of the file `mail-signature-file'.
|
|
|
|
|
If a string, that string is inserted.
|
|
|
|
|
(To make a proper signature, the string should begin with \\n\\n-- \\n,
|
|
|
|
|
which is the standard way to delimit a signature in a message.)
|
|
|
|
|
Otherwise, it should be an expression; it is evaluated
|
|
|
|
|
and should insert whatever you want to insert."
|
2002-05-20 16:05:56 +00:00
|
|
|
|
:type '(choice (const :tag "None" nil)
|
1998-05-09 07:24:47 +00:00
|
|
|
|
(const :tag "Use `.signature' file" t)
|
|
|
|
|
(string :tag "String to insert")
|
|
|
|
|
(sexp :tag "Expression to evaluate"))
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:group 'sendmail)
|
1998-05-09 07:24:47 +00:00
|
|
|
|
(put 'mail-signature 'risky-local-variable t)
|
1995-10-04 19:34:25 +00:00
|
|
|
|
|
2005-10-20 14:34:42 +00:00
|
|
|
|
;;;###autoload
|
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
(tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
(tex-start-options, slitex-run-command, latex-run-command)
(tex-run-command, tex-directory):
* textmodes/ispell.el (ispell-html-skip-alists)
(ispell-tex-skip-alists, ispell-tex-skip-alists):
* textmodes/fill.el (adaptive-fill-first-line-regexp):
(adaptive-fill-regexp):
* textmodes/dns-mode.el (auto-mode-alist):
* progmodes/python.el (interpreter-mode-alist):
* progmodes/etags.el (tags-compression-info-list):
* progmodes/etags.el (tags-file-name):
* net/browse-url.el (browse-url-galeon-program)
(browse-url-firefox-program):
* mail/sendmail.el (mail-signature-file)
(mail-citation-prefix-regexp):
* international/mule-conf.el (eight-bit):
* international/latexenc.el (latex-inputenc-coding-alist):
* international/fontset.el (x-pixel-size-width-font-regexp):
* emacs-lisp/warnings.el (warning-type-format):
* emacs-lisp/trace.el (trace-buffer):
* emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
(emacs-lisp-mode-map):
* calendar/holidays.el (holiday-solar-holidays)
(holiday-bahai-holidays, holiday-islamic-holidays)
(holiday-christian-holidays, holiday-hebrew-holidays)
(hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
(hebrew-holidays-1, holiday-oriental-holidays)
(holiday-general-holidays):
* x-dnd.el (x-dnd-known-types):
* tool-bar.el (tool-bar):
* startup.el (site-run-file):
* shell.el (shell-dumb-shell-regexp):
* rfn-eshadow.el (file-name-shadow-tty-properties)
(file-name-shadow-properties):
* paths.el (remote-shell-program, news-directory):
* mouse.el ([C-down-mouse-3]):
* menu-bar.el (menu-bar-tools-menu):
* jka-cmpr-hook.el (jka-compr-load-suffixes)
(jka-compr-mode-alist-additions, jka-compr-compression-info-list)
(jka-compr-compression-info-list):
* isearch.el (search-whitespace-regexp):
* image-file.el (image-file-name-extensions):
* find-dired.el (find-ls-option):
* files.el (directory-listing-before-filename-regexp)
(directory-free-space-args, insert-directory-program)
(list-directory-brief-switches, magic-fallback-mode-alist)
(magic-fallback-mode-alist, auto-mode-interpreter-regexp)
(automount-dir-prefix):
* faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
(x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
(face-font-registry-alternatives, face-font-registry-alternatives)
(face-font-family-alternatives):
* facemenu.el (facemenu-add-new-face, facemenu-background-menu)
(facemenu-foreground-menu, facemenu-face-menu):
* epa-hook.el (epa-file-name-regexp):
* dnd.el (dnd-protocol-alist):
* textmodes/rst.el (auto-mode-alist):
* button.el (default-button): Purecopy strings.
2009-11-06 05:16:23 +00:00
|
|
|
|
(defcustom mail-signature-file (purecopy "~/.signature")
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"File containing the text inserted at end of mail buffer."
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:type 'file
|
|
|
|
|
:group 'sendmail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
2002-05-20 16:05:56 +00:00
|
|
|
|
;;;###autoload
|
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
(tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
(tex-start-options, slitex-run-command, latex-run-command)
(tex-run-command, tex-directory):
* textmodes/ispell.el (ispell-html-skip-alists)
(ispell-tex-skip-alists, ispell-tex-skip-alists):
* textmodes/fill.el (adaptive-fill-first-line-regexp):
(adaptive-fill-regexp):
* textmodes/dns-mode.el (auto-mode-alist):
* progmodes/python.el (interpreter-mode-alist):
* progmodes/etags.el (tags-compression-info-list):
* progmodes/etags.el (tags-file-name):
* net/browse-url.el (browse-url-galeon-program)
(browse-url-firefox-program):
* mail/sendmail.el (mail-signature-file)
(mail-citation-prefix-regexp):
* international/mule-conf.el (eight-bit):
* international/latexenc.el (latex-inputenc-coding-alist):
* international/fontset.el (x-pixel-size-width-font-regexp):
* emacs-lisp/warnings.el (warning-type-format):
* emacs-lisp/trace.el (trace-buffer):
* emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
(emacs-lisp-mode-map):
* calendar/holidays.el (holiday-solar-holidays)
(holiday-bahai-holidays, holiday-islamic-holidays)
(holiday-christian-holidays, holiday-hebrew-holidays)
(hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
(hebrew-holidays-1, holiday-oriental-holidays)
(holiday-general-holidays):
* x-dnd.el (x-dnd-known-types):
* tool-bar.el (tool-bar):
* startup.el (site-run-file):
* shell.el (shell-dumb-shell-regexp):
* rfn-eshadow.el (file-name-shadow-tty-properties)
(file-name-shadow-properties):
* paths.el (remote-shell-program, news-directory):
* mouse.el ([C-down-mouse-3]):
* menu-bar.el (menu-bar-tools-menu):
* jka-cmpr-hook.el (jka-compr-load-suffixes)
(jka-compr-mode-alist-additions, jka-compr-compression-info-list)
(jka-compr-compression-info-list):
* isearch.el (search-whitespace-regexp):
* image-file.el (image-file-name-extensions):
* find-dired.el (find-ls-option):
* files.el (directory-listing-before-filename-regexp)
(directory-free-space-args, insert-directory-program)
(list-directory-brief-switches, magic-fallback-mode-alist)
(magic-fallback-mode-alist, auto-mode-interpreter-regexp)
(automount-dir-prefix):
* faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
(x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
(face-font-registry-alternatives, face-font-registry-alternatives)
(face-font-family-alternatives):
* facemenu.el (facemenu-add-new-face, facemenu-background-menu)
(facemenu-foreground-menu, facemenu-face-menu):
* epa-hook.el (epa-file-name-regexp):
* dnd.el (dnd-protocol-alist):
* textmodes/rst.el (auto-mode-alist):
* button.el (default-button): Purecopy strings.
2009-11-06 05:16:23 +00:00
|
|
|
|
(defcustom mail-default-directory (purecopy "~/")
|
2010-03-28 03:52:17 +00:00
|
|
|
|
"Value of `default-directory' for Mail mode buffers.
|
|
|
|
|
This directory is used for auto-save files of Mail mode buffers.
|
|
|
|
|
|
|
|
|
|
Note that Message mode does not use this variable; it auto-saves
|
|
|
|
|
in `message-auto-save-directory'."
|
2002-05-20 16:05:56 +00:00
|
|
|
|
:type '(directory :tag "Directory")
|
2002-11-07 17:23:00 +00:00
|
|
|
|
:group 'sendmail
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1")
|
2002-05-20 16:05:56 +00:00
|
|
|
|
|
1996-12-07 22:16:27 +00:00
|
|
|
|
(defvar mail-reply-action nil)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defvar mail-send-actions nil
|
|
|
|
|
"A list of actions to be performed upon successful sending of a message.")
|
2011-01-13 04:23:41 +00:00
|
|
|
|
(defvar mail-return-action nil)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
2005-10-20 14:34:42 +00:00
|
|
|
|
;;;###autoload
|
1998-02-22 22:01:28 +00:00
|
|
|
|
(defcustom mail-default-headers nil
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"A string containing header lines, to be inserted in outgoing messages.
|
2009-03-10 07:20:32 +00:00
|
|
|
|
It can contain newlines, and should end in one. It is inserted
|
|
|
|
|
before you edit the message, so you can edit or delete the lines."
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:type '(choice (const nil) string)
|
|
|
|
|
:group 'sendmail)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1998-02-22 22:01:28 +00:00
|
|
|
|
(defcustom mail-bury-selects-summary t
|
2009-02-07 03:02:39 +00:00
|
|
|
|
"If non-nil, try to show Rmail summary buffer after returning from mail.
|
1994-09-20 23:52:38 +00:00
|
|
|
|
The functions \\[mail-send-on-exit] or \\[mail-dont-send] select
|
2009-02-07 03:02:39 +00:00
|
|
|
|
the Rmail summary buffer before returning, if it exists and this variable
|
1998-02-22 22:01:28 +00:00
|
|
|
|
is non-nil."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'sendmail)
|
1994-09-20 23:52:38 +00:00
|
|
|
|
|
2000-03-07 12:33:39 +00:00
|
|
|
|
(defcustom mail-send-nonascii 'mime
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Specify whether to allow sending non-ASCII characters in mail.
|
1997-08-14 22:10:30 +00:00
|
|
|
|
If t, that means do allow it. nil means don't allow it.
|
|
|
|
|
`query' means ask the user each time.
|
2000-03-07 12:33:39 +00:00
|
|
|
|
`mime' means add an appropriate MIME header if none already present.
|
|
|
|
|
The default is `mime'.
|
1997-08-14 22:10:30 +00:00
|
|
|
|
Including non-ASCII characters in a mail message can be problematical
|
1998-02-22 22:01:28 +00:00
|
|
|
|
for the recipient, who may not know how to decode them properly."
|
2000-03-07 12:33:39 +00:00
|
|
|
|
:type '(choice (const t) (const nil) (const query) (const mime))
|
1998-02-22 22:01:28 +00:00
|
|
|
|
:group 'sendmail)
|
1997-08-14 22:10:30 +00:00
|
|
|
|
|
2002-04-25 21:33:38 +00:00
|
|
|
|
(defcustom mail-use-dsn nil
|
2005-12-05 17:08:00 +00:00
|
|
|
|
"Ask MTA for notification of failed, delayed or successful delivery.
|
2002-04-25 21:33:38 +00:00
|
|
|
|
Note that only some MTAs (currently only recent versions of Sendmail)
|
|
|
|
|
support Delivery Status Notification."
|
|
|
|
|
:group 'sendmail
|
|
|
|
|
:type '(repeat (radio (const :tag "Failure" failure)
|
|
|
|
|
(const :tag "Delay" delay)
|
|
|
|
|
(const :tag "Success" success)))
|
2005-02-09 15:50:47 +00:00
|
|
|
|
:version "22.1")
|
2002-04-25 21:33:38 +00:00
|
|
|
|
|
1994-01-24 23:52:51 +00:00
|
|
|
|
;; Note: could use /usr/ucb/mail instead of sendmail;
|
|
|
|
|
;; options -t, and -v if not interactive.
|
2010-12-14 05:01:08 +00:00
|
|
|
|
(defvar mail-mailer-swallows-blank-line nil
|
1994-01-24 23:52:51 +00:00
|
|
|
|
"Set this non-nil if the system's mailer runs the header and body together.
|
2010-12-14 05:01:08 +00:00
|
|
|
|
The actual value should be an expression to evaluate that returns
|
|
|
|
|
non-nil if the problem will actually occur.
|
|
|
|
|
\(As far as we know, this is not an issue on any system still supported
|
|
|
|
|
by Emacs.)")
|
|
|
|
|
|
|
|
|
|
(put 'mail-mailer-swallows-blank-line 'risky-local-variable t) ; gets evalled
|
|
|
|
|
(make-obsolete-variable 'mail-mailer-swallows-blank-line
|
2011-06-01 19:32:04 +00:00
|
|
|
|
"no need to set this on any modern system."
|
|
|
|
|
"24.1" 'set)
|
1994-01-24 23:52:51 +00:00
|
|
|
|
|
2001-10-27 22:19:29 +00:00
|
|
|
|
(defvar mail-mode-syntax-table
|
2009-03-14 20:25:06 +00:00
|
|
|
|
;; define-derived-mode will make it inherit from text-mode-syntax-table.
|
2001-10-27 22:19:29 +00:00
|
|
|
|
(let ((st (make-syntax-table)))
|
2009-03-14 20:25:06 +00:00
|
|
|
|
;; FIXME this is probably very obsolete now ("percent hack").
|
|
|
|
|
;; sending.texi used to say:
|
|
|
|
|
;; Mail mode defines the character `%' as a word separator; this
|
|
|
|
|
;; is helpful for using the word commands to edit mail addresses.
|
2001-10-27 22:19:29 +00:00
|
|
|
|
(modify-syntax-entry ?% ". " st)
|
|
|
|
|
st)
|
|
|
|
|
"Syntax table used while in `mail-mode'.")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1994-10-07 10:00:00 +00:00
|
|
|
|
(defvar mail-font-lock-keywords
|
1996-01-25 10:27:33 +00:00
|
|
|
|
(eval-when-compile
|
1996-10-23 09:26:35 +00:00
|
|
|
|
(let* ((cite-chars "[>|}]")
|
2000-11-12 00:27:05 +00:00
|
|
|
|
(cite-prefix "[:alpha:]")
|
1996-10-23 09:26:35 +00:00
|
|
|
|
(cite-suffix (concat cite-prefix "0-9_.@-`'\"")))
|
1997-03-15 13:26:59 +00:00
|
|
|
|
(list '("^\\(To\\|Newsgroups\\):" . font-lock-function-name-face)
|
2005-03-18 00:08:24 +00:00
|
|
|
|
'("^\\(B?CC\\|Reply-to\\|Mail-\\(reply\\|followup\\)-to\\):" . font-lock-keyword-face)
|
1996-01-25 10:27:33 +00:00
|
|
|
|
'("^\\(Subject:\\)[ \t]*\\(.+\\)?"
|
2005-04-17 15:54:45 +00:00
|
|
|
|
(1 font-lock-comment-face)
|
|
|
|
|
;; (2 font-lock-type-face nil t)
|
|
|
|
|
)
|
1996-10-23 09:26:35 +00:00
|
|
|
|
;; Use EVAL to delay in case `mail-header-separator' gets changed.
|
1997-03-15 13:26:59 +00:00
|
|
|
|
'(eval .
|
1998-03-25 16:41:18 +00:00
|
|
|
|
(let ((separator (if (zerop (length mail-header-separator))
|
1998-03-27 10:11:45 +00:00
|
|
|
|
" \\`\\' "
|
1998-03-25 16:41:18 +00:00
|
|
|
|
(regexp-quote mail-header-separator))))
|
|
|
|
|
(cons (concat "^" separator "$") 'font-lock-warning-face)))
|
1996-10-23 09:26:35 +00:00
|
|
|
|
;; Use MATCH-ANCHORED to effectively anchor the regexp left side.
|
|
|
|
|
`(,cite-chars
|
|
|
|
|
(,(concat "\\=[ \t]*"
|
2005-04-24 21:32:59 +00:00
|
|
|
|
"\\(\\(\\([" cite-prefix "]+[" cite-suffix "]*\\)?"
|
|
|
|
|
"\\(" cite-chars "[ \t]*\\)\\)+\\)"
|
1997-03-15 13:26:59 +00:00
|
|
|
|
"\\(.*\\)")
|
1996-10-23 09:26:35 +00:00
|
|
|
|
(beginning-of-line) (end-of-line)
|
2005-04-24 21:32:59 +00:00
|
|
|
|
(1 font-lock-comment-delimiter-face nil t)
|
|
|
|
|
(5 font-lock-comment-face nil t)))
|
2003-01-06 01:07:14 +00:00
|
|
|
|
'("^\\(X-[A-Za-z0-9-]+\\|In-reply-to\\):.*\\(\n[ \t]+.*\\)*$"
|
1996-01-25 10:27:33 +00:00
|
|
|
|
. font-lock-string-face))))
|
1994-10-07 10:00:00 +00:00
|
|
|
|
"Additional expressions to highlight in Mail mode.")
|
|
|
|
|
|
1996-08-29 01:25:34 +00:00
|
|
|
|
|
2011-09-03 20:24:12 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun sendmail-query-once ()
|
|
|
|
|
"Query for `send-mail-function' and send mail with it.
|
|
|
|
|
This also saves the value of `send-mail-function' via Customize."
|
2011-10-11 21:31:22 +00:00
|
|
|
|
;; If send-mail-function is already setup, we're incorrectly called
|
|
|
|
|
;; a second time, probably because someone's using an old value
|
|
|
|
|
;; of send-mail-function.
|
|
|
|
|
(when (eq send-mail-function 'sendmail-query-once)
|
2011-10-15 16:35:19 +00:00
|
|
|
|
(let* ((options `(("mail client" . mailclient-send-it)
|
2011-10-11 21:31:22 +00:00
|
|
|
|
,@(when (and sendmail-program
|
|
|
|
|
(executable-find sendmail-program))
|
2011-10-15 16:35:19 +00:00
|
|
|
|
'(("transport" . sendmail-send-it)))
|
|
|
|
|
("smtp" . smtpmail-send-it)))
|
2011-10-11 21:31:22 +00:00
|
|
|
|
(choice
|
|
|
|
|
;; Query the user.
|
|
|
|
|
(with-temp-buffer
|
2011-10-14 13:49:32 +00:00
|
|
|
|
(rename-buffer "*Emacs Mail Setup Help*" t)
|
|
|
|
|
(insert "\
|
2011-10-15 16:35:19 +00:00
|
|
|
|
Emacs is about to send an email message, but it has not been
|
|
|
|
|
configured for sending email. To tell Emacs how to send email:
|
|
|
|
|
|
|
|
|
|
- Type `"
|
|
|
|
|
(propertize "mail client" 'face 'bold)
|
|
|
|
|
"' to start your default email client and
|
|
|
|
|
pass it the message text.\n\n")
|
|
|
|
|
(and sendmail-program
|
|
|
|
|
(executable-find sendmail-program)
|
|
|
|
|
(insert "\
|
|
|
|
|
- Type `"
|
|
|
|
|
(propertize "transport" 'face 'bold)
|
|
|
|
|
"' to invoke the system's mail transport agent
|
|
|
|
|
(the `"
|
|
|
|
|
sendmail-program
|
|
|
|
|
"' program).\n\n"))
|
2011-10-14 13:49:32 +00:00
|
|
|
|
(insert "\
|
2011-10-15 16:35:19 +00:00
|
|
|
|
- Type `"
|
|
|
|
|
(propertize "smtp" 'face 'bold)
|
|
|
|
|
"' to send mail directly to an \"outgoing mail\" server.
|
|
|
|
|
(Emacs may prompt you for SMTP settings).
|
2011-10-14 13:49:32 +00:00
|
|
|
|
|
2011-10-15 16:35:19 +00:00
|
|
|
|
Emacs will record your selection and will use it thereafter.
|
|
|
|
|
To change it later, customize the option `send-mail-function'.\n")
|
2011-10-11 21:31:22 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(display-buffer (current-buffer))
|
|
|
|
|
(let ((completion-ignore-case t))
|
|
|
|
|
(completing-read "Send mail via: "
|
|
|
|
|
options nil 'require-match)))))
|
|
|
|
|
(customize-save-variable 'send-mail-function
|
|
|
|
|
(cdr (assoc-string choice options t)))))
|
|
|
|
|
(funcall send-mail-function))
|
2011-09-03 20:24:12 +00:00
|
|
|
|
|
1996-01-04 23:10:07 +00:00
|
|
|
|
(defun sendmail-sync-aliases ()
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(when mail-personal-alias-file
|
|
|
|
|
(let ((modtime (nth 5 (file-attributes mail-personal-alias-file))))
|
|
|
|
|
(or (equal mail-alias-modtime modtime)
|
|
|
|
|
(setq mail-alias-modtime modtime
|
|
|
|
|
mail-aliases t)))))
|
1994-09-16 22:29:25 +00:00
|
|
|
|
|
2011-01-13 04:23:41 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(define-mail-user-agent 'sendmail-user-agent
|
|
|
|
|
'sendmail-user-agent-compose
|
|
|
|
|
'mail-send-and-exit)
|
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defun sendmail-user-agent-compose (&optional to subject other-headers
|
|
|
|
|
continue switch-function yank-action
|
|
|
|
|
send-actions return-action
|
|
|
|
|
&rest ignored)
|
|
|
|
|
(if switch-function
|
2011-09-10 21:15:28 +00:00
|
|
|
|
(funcall switch-function "*mail*"))
|
2011-01-13 04:23:41 +00:00
|
|
|
|
(let ((cc (cdr (assoc-string "cc" other-headers t)))
|
|
|
|
|
(in-reply-to (cdr (assoc-string "in-reply-to" other-headers t)))
|
|
|
|
|
(body (cdr (assoc-string "body" other-headers t))))
|
|
|
|
|
(or (mail continue to subject in-reply-to cc yank-action
|
|
|
|
|
send-actions return-action)
|
|
|
|
|
continue
|
|
|
|
|
(error "Message aborted"))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(rfc822-goto-eoh)
|
|
|
|
|
(while other-headers
|
|
|
|
|
(unless (member-ignore-case (car (car other-headers))
|
|
|
|
|
'("in-reply-to" "cc" "body"))
|
|
|
|
|
(insert (car (car other-headers)) ": "
|
|
|
|
|
(cdr (car other-headers))
|
|
|
|
|
(if use-hard-newlines hard-newline "\n")))
|
|
|
|
|
(setq other-headers (cdr other-headers)))
|
|
|
|
|
(when body
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(insert body))
|
|
|
|
|
t)))
|
|
|
|
|
|
|
|
|
|
(defun mail-setup (to subject in-reply-to cc replybuffer
|
|
|
|
|
actions return-action)
|
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)
|
2010-12-14 05:01:08 +00:00
|
|
|
|
(when (eq mail-aliases t)
|
|
|
|
|
(setq mail-aliases nil)
|
|
|
|
|
(and mail-personal-alias-file
|
|
|
|
|
(file-exists-p mail-personal-alias-file)
|
|
|
|
|
(build-mail-aliases)))
|
1997-06-03 03:02:50 +00:00
|
|
|
|
;; Don't leave this around from a previous message.
|
1997-06-03 08:17:35 +00:00
|
|
|
|
(kill-local-variable 'buffer-file-coding-system)
|
2001-01-18 08:01:34 +00:00
|
|
|
|
;; This doesn't work for enable-multibyte-characters.
|
|
|
|
|
;; (kill-local-variable 'enable-multibyte-characters)
|
2009-09-03 06:54:57 +00:00
|
|
|
|
(set-buffer-multibyte (default-value 'enable-multibyte-characters))
|
1997-07-15 08:23:58 +00:00
|
|
|
|
(if current-input-method
|
|
|
|
|
(inactivate-input-method))
|
2011-01-13 04:23:41 +00:00
|
|
|
|
|
|
|
|
|
;; Local variables for Mail mode.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(setq mail-send-actions actions)
|
1996-12-07 22:16:27 +00:00
|
|
|
|
(setq mail-reply-action replybuffer)
|
2011-01-13 04:23:41 +00:00
|
|
|
|
(setq mail-return-action return-action)
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(goto-char (point-min))
|
2005-06-17 14:28:44 +00:00
|
|
|
|
(if mail-setup-with-from
|
|
|
|
|
(mail-insert-from-field))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(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")
|
1998-08-11 12:17:42 +00:00
|
|
|
|
(fill-region-as-paragraph address-start (point-max))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(unless (bolp)
|
|
|
|
|
(newline)))
|
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")
|
1998-08-11 12:17:42 +00:00
|
|
|
|
(fill-region-as-paragraph address-start (point-max))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(unless (bolp)
|
|
|
|
|
(newline))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(if in-reply-to
|
1998-08-11 12:17:42 +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")
|
1998-08-11 12:17:42 +00:00
|
|
|
|
(fill-region-as-paragraph address-start (point-max))
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(unless (bolp)
|
|
|
|
|
(newline))))
|
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)))
|
2009-03-14 20:25:06 +00:00
|
|
|
|
(if mail-signature (mail-signature t))
|
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))
|
1996-08-29 01:25:34 +00:00
|
|
|
|
|
2000-01-08 22:36:16 +00:00
|
|
|
|
(defcustom mail-mode-hook nil
|
2009-03-14 21:04:43 +00:00
|
|
|
|
"Hook run by Mail mode.
|
|
|
|
|
When composing a mail, this runs immediately after creating, or
|
|
|
|
|
switching to, the `*mail*' buffer. See also `mail-setup-hook'."
|
2000-01-08 22:36:16 +00:00
|
|
|
|
:group 'sendmail
|
|
|
|
|
:type 'hook
|
|
|
|
|
:options '(footnote-mode))
|
|
|
|
|
|
2002-09-02 17:24:54 +00:00
|
|
|
|
(defvar mail-mode-abbrev-table text-mode-abbrev-table)
|
2011-09-03 10:00:13 +00:00
|
|
|
|
(defvar mail-encode-mml)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
;;;###autoload
|
2001-10-27 22:19:29 +00:00
|
|
|
|
(define-derived-mode mail-mode text-mode "Mail"
|
1991-12-13 07:34:20 +00:00
|
|
|
|
"Major mode for editing mail to be sent.
|
|
|
|
|
Like Text Mode but with these additional commands:
|
2005-12-09 16:44:18 +00:00
|
|
|
|
|
|
|
|
|
\\[mail-send] mail-send (send the message)
|
|
|
|
|
\\[mail-send-and-exit] mail-send-and-exit (send the message and exit)
|
|
|
|
|
|
1998-04-15 06:30:16 +00:00
|
|
|
|
Here are commands that move to a header field (and create it if there isn't):
|
2007-04-06 18:04:26 +00:00
|
|
|
|
\\[mail-to] move to To: \\[mail-subject] move to Subj:
|
|
|
|
|
\\[mail-bcc] move to BCC: \\[mail-cc] move to CC:
|
2001-09-23 17:08:31 +00:00
|
|
|
|
\\[mail-fcc] move to FCC: \\[mail-reply-to] move to Reply-To:
|
2005-03-18 00:08:24 +00:00
|
|
|
|
\\[mail-mail-reply-to] move to Mail-Reply-To:
|
|
|
|
|
\\[mail-mail-followup-to] move to Mail-Followup-To:
|
2007-04-06 18:04:26 +00:00
|
|
|
|
\\[mail-text] move to message text.
|
1998-04-15 06:30:16 +00:00
|
|
|
|
\\[mail-signature] mail-signature (insert `mail-signature-file' file).
|
|
|
|
|
\\[mail-yank-original] mail-yank-original (insert current message, in Rmail).
|
|
|
|
|
\\[mail-fill-yanked-message] mail-fill-yanked-message (fill what was yanked).
|
2011-09-10 08:26:12 +00:00
|
|
|
|
\\[mail-insert-file] insert a text file into the message.
|
|
|
|
|
\\[mail-add-attachment] attach to the message a file as binary attachment.
|
2001-01-07 10:05:26 +00:00
|
|
|
|
Turning on Mail mode runs the normal hooks `text-mode-hook' and
|
|
|
|
|
`mail-mode-hook' (in that order)."
|
1996-12-07 22:16:27 +00:00
|
|
|
|
(make-local-variable 'mail-reply-action)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(make-local-variable 'mail-send-actions)
|
2011-01-13 04:23:41 +00:00
|
|
|
|
(make-local-variable 'mail-return-action)
|
2011-09-03 10:00:13 +00:00
|
|
|
|
(make-local-variable 'mail-encode-mml)
|
|
|
|
|
(setq mail-encode-mml nil)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(setq buffer-offer-save t)
|
1994-10-12 09:10:05 +00:00
|
|
|
|
(make-local-variable 'font-lock-defaults)
|
2001-03-20 12:43:30 +00:00
|
|
|
|
(setq font-lock-defaults '(mail-font-lock-keywords t t))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(make-local-variable 'paragraph-separate)
|
1996-08-29 01:25:34 +00:00
|
|
|
|
(make-local-variable 'normal-auto-fill-function)
|
|
|
|
|
(setq normal-auto-fill-function 'mail-mode-auto-fill)
|
1997-07-10 01:41:38 +00:00
|
|
|
|
(make-local-variable 'fill-paragraph-function)
|
1996-12-07 22:16:27 +00:00
|
|
|
|
(setq fill-paragraph-function 'mail-mode-fill-paragraph)
|
2000-12-21 02:11:01 +00:00
|
|
|
|
;; Allow using comment commands to add/remove quoting (this only does
|
|
|
|
|
;; anything if mail-yank-prefix is set to a non-nil value).
|
|
|
|
|
(set (make-local-variable 'comment-start) mail-yank-prefix)
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(if mail-yank-prefix
|
|
|
|
|
(set (make-local-variable 'comment-start-skip)
|
|
|
|
|
(concat "^" (regexp-quote mail-yank-prefix) "[ \t]*")))
|
1997-07-19 08:11:51 +00:00
|
|
|
|
(make-local-variable 'adaptive-fill-regexp)
|
|
|
|
|
(setq adaptive-fill-regexp
|
2002-01-23 00:44:27 +00:00
|
|
|
|
(concat "[ \t]*[-[:alnum:]]+>+[ \t]*\\|"
|
2001-10-27 22:19:29 +00:00
|
|
|
|
adaptive-fill-regexp))
|
1997-07-26 22:19:26 +00:00
|
|
|
|
(make-local-variable 'adaptive-fill-first-line-regexp)
|
1997-09-03 07:08:43 +00:00
|
|
|
|
(setq adaptive-fill-first-line-regexp
|
2002-02-01 22:00:02 +00:00
|
|
|
|
(concat "[ \t]*[-[:alnum:]]*>+[ \t]*\\|"
|
2001-10-27 22:19:29 +00:00
|
|
|
|
adaptive-fill-first-line-regexp))
|
2011-04-15 13:50:04 +00:00
|
|
|
|
(add-hook 'completion-at-point-functions #'mail-completion-at-point-function
|
|
|
|
|
nil 'local)
|
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.
|
2003-05-18 21:35:06 +00:00
|
|
|
|
(setq paragraph-separate (concat (regexp-quote mail-header-separator)
|
1999-01-02 00:14:41 +00:00
|
|
|
|
"$\\|\t*\\([-|#;>* ]\\|(?[0-9]+[.)]\\)+$"
|
2000-11-12 00:27:05 +00:00
|
|
|
|
"\\|[ \t]*[[:alnum:]]*>+[ \t]*$\\|[ \t]*$\\|"
|
2003-05-18 21:35:06 +00:00
|
|
|
|
"--\\( \\|-+\\)$\\|"
|
|
|
|
|
page-delimiter)))
|
1996-08-29 01:25:34 +00:00
|
|
|
|
|
1998-05-03 04:35:16 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-header-end ()
|
|
|
|
|
"Return the buffer location of the end of headers, as a number."
|
1998-06-09 06:04:20 +00:00
|
|
|
|
(save-restriction
|
|
|
|
|
(widen)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(rfc822-goto-eoh)
|
|
|
|
|
(point))))
|
1998-05-03 04:35:16 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-text-start ()
|
|
|
|
|
"Return the buffer location of the start of text, as a number."
|
1998-06-09 06:04:20 +00:00
|
|
|
|
(save-restriction
|
|
|
|
|
(widen)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(rfc822-goto-eoh)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(point))))
|
1998-05-03 04:35:16 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-sendmail-delimit-header ()
|
|
|
|
|
"Set up whatever header delimiter convention sendmail will use.
|
|
|
|
|
Concretely: replace the first blank line in the header with the separator."
|
|
|
|
|
(rfc822-goto-eoh)
|
|
|
|
|
(insert mail-header-separator)
|
|
|
|
|
(point))
|
|
|
|
|
|
|
|
|
|
(defun mail-sendmail-undelimit-header ()
|
|
|
|
|
"Remove header separator to put the message in correct form for sendmail.
|
|
|
|
|
Leave point at the start of the delimiter line."
|
|
|
|
|
(rfc822-goto-eoh)
|
|
|
|
|
(delete-region (point) (progn (end-of-line) (point))))
|
|
|
|
|
|
1996-08-29 01:25:34 +00:00
|
|
|
|
(defun mail-mode-auto-fill ()
|
|
|
|
|
"Carry out Auto Fill for Mail mode.
|
|
|
|
|
If within the headers, this makes the new lines into continuation lines."
|
1998-05-03 04:35:16 +00:00
|
|
|
|
(if (< (point) (mail-header-end))
|
Use line-end-position rather than end-of-line, etc.
* textmodes/texnfo-upd.el (texinfo-start-menu-description)
(texinfo-update-menu-region-beginning, texinfo-menu-first-node)
(texinfo-delete-existing-pointers, texinfo-find-pointer)
(texinfo-clean-up-node-line, texinfo-insert-node-lines)
(texinfo-multiple-files-update):
* textmodes/table.el (table--probe-cell-left-up)
(table--probe-cell-right-bottom):
* textmodes/picture.el (picture-tab-search):
* textmodes/page-ext.el (pages-copy-header-and-position)
(pages-directory-for-addresses):
* progmodes/vera-mode.el (vera-get-offset):
* progmodes/simula.el (simula-calculate-indent):
* progmodes/python.el (python-pdbtrack-overlay-arrow):
* progmodes/prolog.el (end-of-prolog-clause):
* progmodes/perl-mode.el (perl-calculate-indent, perl-indent-exp):
* progmodes/icon.el (indent-icon-exp):
* progmodes/etags.el (tag-re-match-p):
* progmodes/ebrowse.el (ebrowse-show-file-name-at-point):
* progmodes/ebnf2ps.el (ebnf-begin-file):
* progmodes/dcl-mode.el (dcl-back-to-indentation-1)
(dcl-save-local-variable):
* play/life.el (life-setup):
* play/gametree.el (gametree-looking-at-ply):
* nxml/nxml-maint.el (nxml-insert-target-repertoire-glyph-set):
* mail/sendmail.el (mail-mode-auto-fill):
* emacs-lisp/lisp-mode.el (calculate-lisp-indent):
* emacs-lisp/edebug.el (edebug-overlay-arrow):
* emacs-lisp/checkdoc.el (checkdoc-this-string-valid):
* woman.el (woman-parse-numeric-value, woman2-TH, woman2-SH)
(woman-tab-to-tab-stop, WoMan-warn-ignored):
* type-break.el (type-break-file-keystroke-count):
* term.el (term-replace-by-expanded-history-before-point)
(term-skip-prompt, term-extract-string):
* speedbar.el (speedbar-edit-line, speedbar-expand-line)
(speedbar-contract-line, speedbar-toggle-line-expansion)
(speedbar-parse-c-or-c++tag, speedbar-parse-tex-string)
(speedbar-buffer-revert-buffer, speedbar-highlight-one-tag-line):
* sort.el (sort-skip-fields):
* skeleton.el (skeleton-internal-list):
* simple.el (line-move-finish, line-move-to-column):
* shell.el (shell-forward-command):
* misc.el (copy-from-above-command):
* makesum.el (double-column):
* ebuff-menu.el (electric-buffer-update-highlight):
* dired.el (dired-move-to-end-of-filename):
* dframe.el (dframe-popup-kludge):
* bookmark.el (bookmark-kill-line, bookmark-bmenu-show-filenames):
* arc-mode.el (archive-get-lineno):
Use line-end-position and line-beginning-position.
* net/ange-ftp.el, progmodes/hideif.el, reposition.el:
Same, but only in comments.
2010-11-06 20:23:42 +00:00
|
|
|
|
(let ((old-line-start (line-beginning-position)))
|
1996-08-29 01:25:34 +00:00
|
|
|
|
(if (do-auto-fill)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(while (not (eq (point) old-line-start))
|
1997-07-15 19:34:10 +00:00
|
|
|
|
;; Use insert-before-markers in case we're inserting
|
|
|
|
|
;; before the saved value of point (which is common).
|
|
|
|
|
(insert-before-markers " ")
|
1996-08-29 01:25:34 +00:00
|
|
|
|
(forward-line -1))
|
|
|
|
|
t)))
|
|
|
|
|
(do-auto-fill)))
|
1996-12-07 22:16:27 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-mode-fill-paragraph (arg)
|
|
|
|
|
;; Do something special only if within the headers.
|
1998-05-03 04:35:16 +00:00
|
|
|
|
(if (< (point) (mail-header-end))
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(let (beg end fieldname)
|
2000-09-12 13:30:30 +00:00
|
|
|
|
(when (prog1 (re-search-backward "^[-a-zA-Z]+:" nil 'yes)
|
|
|
|
|
(setq beg (point)))
|
1996-12-07 22:16:27 +00:00
|
|
|
|
(setq fieldname
|
2000-09-12 13:30:30 +00:00
|
|
|
|
(downcase (buffer-substring beg (1- (match-end 0))))))
|
1996-12-07 22:16:27 +00:00
|
|
|
|
(forward-line 1)
|
|
|
|
|
;; Find continuation lines and get rid of their continuation markers.
|
|
|
|
|
(while (looking-at "[ \t]")
|
|
|
|
|
(delete-horizontal-space)
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
(setq end (point-marker))
|
|
|
|
|
(goto-char beg)
|
|
|
|
|
;; If this field contains addresses,
|
|
|
|
|
;; make sure we can fill after each address.
|
|
|
|
|
(if (member fieldname
|
|
|
|
|
'("to" "cc" "bcc" "from" "reply-to"
|
2005-03-18 00:08:24 +00:00
|
|
|
|
"mail-reply-to" "mail-followup-to"
|
1996-12-07 22:16:27 +00:00
|
|
|
|
"resent-to" "resent-cc" "resent-bcc"
|
|
|
|
|
"resent-from" "resent-reply-to"))
|
|
|
|
|
(while (search-forward "," end t)
|
|
|
|
|
(or (looking-at "[ \t]")
|
|
|
|
|
(insert " "))))
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(fill-region-as-paragraph beg end arg)
|
1996-12-07 22:16:27 +00:00
|
|
|
|
;; Mark all lines except the first as continuations.
|
|
|
|
|
(goto-char beg)
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(while (< (point) end)
|
|
|
|
|
(insert " ")
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
(move-marker end nil)
|
|
|
|
|
t)))
|
1993-06-21 20:08:39 +00:00
|
|
|
|
|
1996-08-29 01:25:34 +00:00
|
|
|
|
;; User-level commands for sending.
|
|
|
|
|
|
2003-04-24 02:00:09 +00:00
|
|
|
|
(defun mail-send-and-exit (&optional 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))
|
|
|
|
|
|
2003-05-03 13:52:57 +00:00
|
|
|
|
(defun mail-dont-send (&optional arg)
|
1993-07-13 20:18:05 +00:00
|
|
|
|
"Don't send the message you have been editing.
|
|
|
|
|
Prefix arg means don't delete this window."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(mail-bury arg))
|
|
|
|
|
|
2003-05-03 13:52:57 +00:00
|
|
|
|
(defun mail-bury (&optional arg)
|
1993-07-13 20:18:05 +00:00
|
|
|
|
"Bury this mail buffer."
|
2011-06-22 23:39:29 +00:00
|
|
|
|
(let ((newbuf (other-buffer (current-buffer)))
|
|
|
|
|
(return-action mail-return-action)
|
|
|
|
|
some-rmail)
|
1992-09-29 20:39:55 +00:00
|
|
|
|
(bury-buffer (current-buffer))
|
2011-06-22 23:39:29 +00:00
|
|
|
|
;; If there is an Rmail buffer, return to it nicely
|
|
|
|
|
;; even if this message was not started by an Rmail command.
|
|
|
|
|
(unless return-action
|
|
|
|
|
(dolist (buffer (buffer-list))
|
|
|
|
|
(if (eq (buffer-local-value 'major-mode buffer) 'rmail-mode)
|
|
|
|
|
(setq return-action `(rmail-mail-return ,newbuf)))))
|
|
|
|
|
(if (and (null arg) return-action)
|
|
|
|
|
(apply (car return-action) (cdr return-action))
|
2011-01-13 04:23:41 +00:00
|
|
|
|
(switch-to-buffer newbuf))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
2000-01-08 22:36:16 +00:00
|
|
|
|
(defcustom mail-send-hook nil
|
2009-12-01 16:20:59 +00:00
|
|
|
|
"Hook run just before sending a message."
|
2000-01-08 22:36:16 +00:00
|
|
|
|
:type 'hook
|
|
|
|
|
:options '(flyspell-mode-off)
|
|
|
|
|
:group 'sendmail)
|
|
|
|
|
|
2005-03-18 00:08:24 +00:00
|
|
|
|
;;;###autoload
|
2009-03-10 07:20:32 +00:00
|
|
|
|
(defcustom mail-mailing-lists nil
|
|
|
|
|
"List of mailing list addresses the user is subscribed to.
|
2005-03-18 00:08:24 +00:00
|
|
|
|
The variable is used to trigger insertion of the \"Mail-Followup-To\"
|
|
|
|
|
header when sending a message to a mailing list."
|
|
|
|
|
:type '(repeat string)
|
|
|
|
|
:group 'sendmail)
|
|
|
|
|
|
2011-09-10 08:26:12 +00:00
|
|
|
|
(declare-function mml-to-mime "mml" ())
|
2005-03-18 00:08:24 +00:00
|
|
|
|
|
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? ")))
|
1997-08-14 22:10:30 +00:00
|
|
|
|
(let ((inhibit-read-only t)
|
2005-03-18 00:08:24 +00:00
|
|
|
|
(opoint (point))
|
|
|
|
|
(ml (when mail-mailing-lists
|
|
|
|
|
;; The surrounding regexp assumes the use of
|
|
|
|
|
;; `mail-strip-quoted-names' on addresses before matching
|
|
|
|
|
;; Cannot deal with full RFC 822 freedom, but that is
|
|
|
|
|
;; unlikely to be problematic.
|
|
|
|
|
(concat "\\(?:[[:space:];,]\\|\\`\\)"
|
|
|
|
|
(regexp-opt mail-mailing-lists t)
|
|
|
|
|
"\\(?:[[:space:];,]\\|\\'\\)"))))
|
|
|
|
|
;; If there are mailing lists defined
|
|
|
|
|
(when ml
|
|
|
|
|
(save-excursion
|
|
|
|
|
(let* ((to (mail-fetch-field "to" nil t))
|
|
|
|
|
(cc (mail-fetch-field "cc" nil t))
|
|
|
|
|
(new-header-values ; To: and Cc:
|
|
|
|
|
(mail-strip-quoted-names
|
|
|
|
|
(concat to (when cc (concat ", " cc))))))
|
|
|
|
|
;; If message goes to known mailing list ...
|
|
|
|
|
(when (string-match ml new-header-values)
|
|
|
|
|
;; Add Mail-Followup-To if none yet
|
|
|
|
|
(unless (mail-fetch-field "mail-followup-to")
|
|
|
|
|
(goto-char (mail-header-end))
|
|
|
|
|
(insert "Mail-Followup-To: "
|
|
|
|
|
(let ((l))
|
|
|
|
|
(mapc
|
|
|
|
|
;; remove duplicates
|
2011-05-23 17:57:17 +00:00
|
|
|
|
(lambda (e)
|
|
|
|
|
(unless (member e l)
|
|
|
|
|
(push e l)))
|
2005-05-21 11:48:00 +00:00
|
|
|
|
(split-string new-header-values
|
|
|
|
|
",[[:space:]]+" t))
|
2005-03-18 00:08:24 +00:00
|
|
|
|
(mapconcat 'identity l ", "))
|
|
|
|
|
"\n"))
|
|
|
|
|
;; Add Mail-Reply-To if none yet
|
|
|
|
|
(unless (mail-fetch-field "mail-reply-to")
|
|
|
|
|
(goto-char (mail-header-end))
|
|
|
|
|
(insert "Mail-Reply-To: "
|
|
|
|
|
(or (mail-fetch-field "reply-to")
|
|
|
|
|
user-mail-address)
|
|
|
|
|
"\n"))))))
|
2001-09-10 09:37:02 +00:00
|
|
|
|
(unless (memq mail-send-nonascii '(t mime))
|
1997-08-14 22:10:30 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(skip-chars-forward "\0-\177")
|
|
|
|
|
(or (= (point) (point-max))
|
|
|
|
|
(if (eq mail-send-nonascii 'query)
|
|
|
|
|
(or (y-or-n-p "Message contains non-ASCII characters; send anyway? ")
|
|
|
|
|
(error "Aborted"))
|
|
|
|
|
(error "Message contains non-ASCII characters"))))
|
1997-08-30 18:03:33 +00:00
|
|
|
|
;; Complain about any invalid line.
|
|
|
|
|
(goto-char (point-min))
|
2006-06-15 18:34:26 +00:00
|
|
|
|
(re-search-forward (regexp-quote mail-header-separator) (point-max) t)
|
|
|
|
|
(let ((header-end (or (match-beginning 0) (point-max))))
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (< (point) header-end)
|
|
|
|
|
(unless (looking-at "[ \t]\\|.*:\\|$")
|
|
|
|
|
(push-mark opoint)
|
|
|
|
|
(error "Invalid header line (maybe a continuation line lacks initial whitespace)"))
|
|
|
|
|
(forward-line 1)))
|
1997-08-14 22:10:30 +00:00
|
|
|
|
(goto-char opoint)
|
2011-09-03 10:00:13 +00:00
|
|
|
|
(when mail-encode-mml
|
|
|
|
|
(mml-to-mime)
|
|
|
|
|
(setq mail-encode-mml nil))
|
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")
|
1998-10-06 23:22:48 +00:00
|
|
|
|
;; If buffer has no file, mark it as unmodified and delete auto-save.
|
1993-01-07 10:18:46 +00:00
|
|
|
|
(if (not buffer-file-name)
|
|
|
|
|
(progn
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(delete-auto-save-file-if-necessary t))))))
|
2002-10-11 02:27:30 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-envelope-from ()
|
|
|
|
|
"Return the envelope mail address to use when sending mail.
|
|
|
|
|
This function uses `mail-envelope-from'."
|
|
|
|
|
(if (eq mail-envelope-from 'header)
|
|
|
|
|
(nth 1 (mail-extract-address-components
|
|
|
|
|
(mail-fetch-field "From")))
|
|
|
|
|
mail-envelope-from))
|
1996-08-29 01:25:34 +00:00
|
|
|
|
|
|
|
|
|
;; This does the real work of sending a message via sendmail.
|
|
|
|
|
;; It is called via the variable send-mail-function.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1997-02-26 13:08:35 +00:00
|
|
|
|
;;;###autoload
|
|
|
|
|
(defvar sendmail-coding-system nil
|
1998-08-24 01:46:43 +00:00
|
|
|
|
"*Coding system for encoding the outgoing mail.
|
2009-08-28 04:21:14 +00:00
|
|
|
|
This has higher priority than the default `buffer-file-coding-system'
|
1998-08-24 01:46:43 +00:00
|
|
|
|
and `default-sendmail-coding-system',
|
|
|
|
|
but lower priority than the local value of `buffer-file-coding-system'.
|
1999-07-31 00:48:50 +00:00
|
|
|
|
See also the function `select-message-coding-system'.")
|
1998-08-24 01:46:43 +00:00
|
|
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
|
(defvar default-sendmail-coding-system 'iso-latin-1
|
1998-10-30 10:53:59 +00:00
|
|
|
|
"Default coding system for encoding the outgoing mail.
|
1998-08-24 01:46:43 +00:00
|
|
|
|
This variable is used only when `sendmail-coding-system' is nil.
|
|
|
|
|
|
2005-09-09 12:33:21 +00:00
|
|
|
|
This variable is set/changed by the command `set-language-environment'.
|
1998-08-24 01:46:43 +00:00
|
|
|
|
User should not set this variable manually,
|
2005-09-09 12:33:21 +00:00
|
|
|
|
instead use `sendmail-coding-system' to get a constant encoding
|
1998-08-24 01:46:43 +00:00
|
|
|
|
of outgoing mails regardless of the current language environment.
|
1999-07-31 00:48:50 +00:00
|
|
|
|
See also the function `select-message-coding-system'.")
|
1997-02-20 05:50:19 +00:00
|
|
|
|
|
2005-06-17 14:28:44 +00:00
|
|
|
|
(defun mail-insert-from-field ()
|
2011-05-23 04:44:29 +00:00
|
|
|
|
"Insert the \"From:\" field of a mail header.
|
|
|
|
|
The style of the field is determined by the variable `mail-from-style'.
|
|
|
|
|
This function does not perform RFC2047 encoding."
|
2005-06-17 14:28:44 +00:00
|
|
|
|
(let* ((login user-mail-address)
|
|
|
|
|
(fullname (user-full-name))
|
|
|
|
|
(quote-fullname nil))
|
|
|
|
|
(if (string-match "[^\0-\177]" fullname)
|
2011-05-23 04:44:29 +00:00
|
|
|
|
(setq quote-fullname t))
|
2009-11-19 16:48:30 +00:00
|
|
|
|
(cond ((null mail-from-style)
|
|
|
|
|
(insert "From: " login "\n"))
|
|
|
|
|
;; This is deprecated.
|
|
|
|
|
((eq mail-from-style 'system-default)
|
|
|
|
|
nil)
|
|
|
|
|
((or (eq mail-from-style 'angles)
|
|
|
|
|
(and (not (eq mail-from-style 'parens))
|
|
|
|
|
;; Use angles if no quoting is needed, or if
|
|
|
|
|
;; parens would need quoting too.
|
|
|
|
|
(or (not (string-match "[^- !#-'*+/-9=?A-Z^-~]" fullname))
|
|
|
|
|
(let ((tmp (concat fullname nil)))
|
|
|
|
|
(while (string-match "([^()]*)" tmp)
|
|
|
|
|
(aset tmp (match-beginning 0) ?-)
|
|
|
|
|
(aset tmp (1- (match-end 0)) ?-))
|
|
|
|
|
(string-match "[\\()]" tmp)))))
|
2005-06-17 14:28:44 +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 (or (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]"
|
|
|
|
|
fullname-end 1)
|
|
|
|
|
quote-fullname)
|
|
|
|
|
(progn
|
|
|
|
|
;; Quote fullname, escaping specials.
|
|
|
|
|
(goto-char fullname-start)
|
|
|
|
|
(insert "\"")
|
|
|
|
|
(while (re-search-forward "[\"\\]"
|
|
|
|
|
fullname-end 1)
|
|
|
|
|
(replace-match "\\\\\\&" t))
|
|
|
|
|
(insert "\""))))
|
|
|
|
|
(insert " <" login ">\n"))
|
2009-11-19 16:48:30 +00:00
|
|
|
|
;; 'parens or default
|
|
|
|
|
(t
|
2005-06-17 14:28:44 +00:00
|
|
|
|
(insert "From: " login " (")
|
|
|
|
|
(let ((fullname-start (point)))
|
|
|
|
|
(if quote-fullname
|
|
|
|
|
(insert "\""))
|
|
|
|
|
(insert fullname)
|
|
|
|
|
(if quote-fullname
|
|
|
|
|
(insert "\""))
|
|
|
|
|
(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))))
|
2009-11-19 16:48:30 +00:00
|
|
|
|
(insert ")\n")))))
|
2005-06-17 14:28:44 +00:00
|
|
|
|
|
2011-05-23 04:44:29 +00:00
|
|
|
|
(defun mail-encode-header (beg end)
|
|
|
|
|
"Encode the mail header between BEG and END according to RFC2047.
|
|
|
|
|
Return non-nil if and only if some part of the header is encoded."
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region beg end)
|
|
|
|
|
(let* ((selected (select-message-coding-system))
|
|
|
|
|
(mm-coding-system-priorities
|
|
|
|
|
(if (and selected (coding-system-get selected :mime-charset))
|
|
|
|
|
(cons selected mm-coding-system-priorities)
|
|
|
|
|
mm-coding-system-priorities))
|
2011-05-27 04:54:39 +00:00
|
|
|
|
(tick (buffer-chars-modified-tick))
|
|
|
|
|
(rfc2047-encode-encoded-words nil))
|
2011-05-23 04:44:29 +00:00
|
|
|
|
(rfc2047-encode-message-header)
|
|
|
|
|
(= tick (buffer-chars-modified-tick)))))
|
|
|
|
|
|
2007-10-15 14:38:42 +00:00
|
|
|
|
;; Normally you will not need to modify these options unless you are
|
|
|
|
|
;; using some non-genuine substitute for sendmail which does not
|
|
|
|
|
;; implement each and every option that the original supports.
|
|
|
|
|
;; E.g., ssmtp does not support "-odb", so, if your site uses it,
|
|
|
|
|
;; you will need to modify `sendmail-error-reporting-non-interactive'
|
|
|
|
|
;; in your site-init.el.
|
|
|
|
|
(defvar sendmail-error-reporting-interactive
|
|
|
|
|
;; These mean "report errors to terminal" and "deliver interactively"
|
|
|
|
|
'("-oep" "-odi"))
|
|
|
|
|
(defvar sendmail-error-reporting-non-interactive
|
|
|
|
|
;; These mean "report errors by mail" and "deliver in background".
|
|
|
|
|
'("-oem" "-odb"))
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defun sendmail-send-it ()
|
2001-01-26 18:24:03 +00:00
|
|
|
|
"Send the current mail buffer using the Sendmail package.
|
|
|
|
|
This is a suitable value for `send-mail-function'. It sends using the
|
|
|
|
|
external program defined by `sendmail-program'."
|
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")
|
1998-12-10 03:07:35 +00:00
|
|
|
|
0))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(tembuf (generate-new-buffer " sendmail temp"))
|
2002-09-23 00:17:51 +00:00
|
|
|
|
(multibyte enable-multibyte-characters)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(case-fold-search nil)
|
2002-10-15 01:10:03 +00:00
|
|
|
|
(selected-coding (select-message-coding-system))
|
2005-03-18 00:08:24 +00:00
|
|
|
|
resend-to-addresses
|
1991-12-13 07:34:20 +00:00
|
|
|
|
delimline
|
1996-12-16 08:06:37 +00:00
|
|
|
|
fcc-was-found
|
2001-07-04 09:54:15 +00:00
|
|
|
|
(mailbuf (current-buffer))
|
2001-12-28 18:58:40 +00:00
|
|
|
|
;; Examine these variables now, so that
|
|
|
|
|
;; local binding in the mail buffer will take effect.
|
|
|
|
|
(envelope-from
|
|
|
|
|
(and mail-specify-envelope-from
|
2002-10-11 02:27:30 +00:00
|
|
|
|
(or (mail-envelope-from) user-mail-address))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(unwind-protect
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(with-current-buffer tembuf
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(erase-buffer)
|
2002-09-23 00:17:51 +00:00
|
|
|
|
(unless multibyte
|
|
|
|
|
(set-buffer-multibyte nil))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(insert-buffer-substring mailbuf)
|
2011-05-23 04:44:29 +00:00
|
|
|
|
(set-buffer-file-coding-system selected-coding)
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
;; require one newline at the end.
|
|
|
|
|
(or (= (preceding-char) ?\n)
|
|
|
|
|
(insert ?\n))
|
|
|
|
|
;; Change header-delimiter to be what sendmail expects.
|
1998-05-03 04:35:16 +00:00
|
|
|
|
(goto-char (mail-header-end))
|
|
|
|
|
(delete-region (point) (progn (end-of-line) (point)))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(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))
|
1997-08-30 18:03:33 +00:00
|
|
|
|
;; Ignore any blank lines in the header
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(while (and (re-search-forward "\n\n\n*" delimline t)
|
|
|
|
|
(< (point) delimline))
|
|
|
|
|
(replace-match "\n"))
|
1997-08-30 18:03:33 +00:00
|
|
|
|
(goto-char (point-min))
|
2005-03-18 00:08:24 +00:00
|
|
|
|
;; Look for Resent- headers. They require sending
|
|
|
|
|
;; the message specially.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(let ((case-fold-search t))
|
2005-03-18 00:08:24 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(while (re-search-forward "^Resent-\\(to\\|cc\\|bcc\\):" delimline t)
|
|
|
|
|
;; Put a list of such addresses in resend-to-addresses.
|
|
|
|
|
(setq resend-to-addresses
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region (point)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(while (looking-at "^[ \t]")
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
(point)))
|
|
|
|
|
(append (mail-parse-comma-list)
|
|
|
|
|
resend-to-addresses)))
|
|
|
|
|
;; Delete Resent-BCC ourselves
|
|
|
|
|
(if (save-excursion (beginning-of-line)
|
|
|
|
|
(looking-at "resent-bcc"))
|
2010-09-20 11:20:38 +00:00
|
|
|
|
(delete-region (line-beginning-position)
|
|
|
|
|
(line-beginning-position 2))))
|
|
|
|
|
;; 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))
|
2005-06-17 14:28:44 +00:00
|
|
|
|
(mail-insert-from-field))
|
2000-03-07 12:33:39 +00:00
|
|
|
|
;; Possibly add a MIME header for the current coding system
|
2009-04-09 16:33:41 +00:00
|
|
|
|
(let (charset where-content-type)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(setq where-content-type
|
|
|
|
|
(re-search-forward "^Content-type:" delimline t))
|
2000-03-07 12:33:39 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(and (eq mail-send-nonascii 'mime)
|
|
|
|
|
(not (re-search-forward "^MIME-version:" delimline t))
|
|
|
|
|
(progn (skip-chars-forward "\0-\177")
|
|
|
|
|
(/= (point) (point-max)))
|
2002-10-15 01:10:03 +00:00
|
|
|
|
selected-coding
|
2000-03-07 12:33:39 +00:00
|
|
|
|
(setq charset
|
2002-05-14 15:38:09 +00:00
|
|
|
|
(coding-system-get selected-coding :mime-charset))
|
2009-04-09 16:33:41 +00:00
|
|
|
|
(progn
|
|
|
|
|
(goto-char delimline)
|
|
|
|
|
(insert "MIME-version: 1.0\n"
|
|
|
|
|
"Content-type: text/plain; charset="
|
|
|
|
|
(symbol-name charset)
|
|
|
|
|
"\nContent-Transfer-Encoding: 8bit\n")
|
|
|
|
|
;; The character set we will actually use
|
|
|
|
|
;; should override any specified in the message itself.
|
|
|
|
|
(when where-content-type
|
|
|
|
|
(goto-char where-content-type)
|
Replace still more end-of-line etc with line-end-position, etc.
* lisp/gnus/nnbabyl.el (nnbabyl-request-move-article, nnbabyl-delete-mail)
(nnbabyl-check-mbox): Use point-at-bol.
* lisp/cedet/semantic/lex.el (semantic-lex-ignore-comments, semantic-flex):
* lisp/cedet/semantic/grammar.el (semantic-grammar-epilogue):
* lisp/cedet/ede/speedbar.el (ede-find-nearest-file-line):
* lisp/cedet/ede/pmake.el (ede-proj-makefile-insert-dist-rules):
* lisp/cedet/ede/autoconf-edit.el (autoconf-delete-parameter):
Use point-at-bol and point-at-eol.
* lisp/vc/emerge.el (emerge-line-number-in-buf):
* lisp/textmodes/ispell.el (ispell-region):
* lisp/textmodes/fill.el (current-fill-column):
* lisp/progmodes/xscheme.el (xscheme-send-current-line):
* lisp/progmodes/vhdl-mode.el (vhdl-current-line, vhdl-line-copy):
* lisp/progmodes/tcl.el (tcl-hairy-scan-for-comment):
* lisp/progmodes/sh-script.el (sh-handle-prev-do):
* lisp/progmodes/meta-mode.el (meta-indent-line):
* lisp/progmodes/idlwave.el (idlwave-goto-comment, idlwave-fill-paragraph)
(idlwave-in-quote):
* lisp/progmodes/idlw-shell.el (idlwave-shell-current-frame)
(idlwave-shell-update-bp-overlays, idlwave-shell-sources-filter):
* lisp/progmodes/fortran.el (fortran-looking-at-if-then):
* lisp/progmodes/etags.el (find-tag-in-order, etags-snarf-tag):
* lisp/progmodes/cperl-mode.el (cperl-sniff-for-indent)
(cperl-find-pods-heres):
* lisp/progmodes/ada-mode.el (ada-get-current-indent, ada-narrow-to-defun):
* lisp/net/quickurl.el (quickurl-list-insert):
* lisp/net/ldap.el (ldap-search-internal):
* lisp/net/eudc.el (eudc-expand-inline):
* lisp/mail/sendmail.el (sendmail-send-it):
* lisp/mail/mspools.el (mspools-visit-spool, mspools-get-spool-name):
* lisp/emulation/viper-cmd.el (viper-paren-match, viper-backward-indent)
(viper-brac-function):
* lisp/calc/calc-yank.el (calc-do-grab-region):
* lisp/calc/calc-keypd.el (calc-keypad-press):
* lisp/term.el (term-move-columns, term-insert-spaces):
* lisp/speedbar.el (speedbar-highlight-one-tag-line):
* lisp/simple.el (current-word):
* lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
* lisp/info.el (Info-find-node-in-buffer-1, Info-follow-reference)
(Info-scroll-down):
* lisp/hippie-exp.el (he-line-beg):
* lisp/epa.el (epa--marked-keys):
* lisp/dired-aux.el (dired-kill-line, dired-do-kill-lines)
(dired-update-file-line, dired-add-entry, dired-remove-entry)
(dired-relist-entry):
* lisp/buff-menu.el (Buffer-menu-buffer):
* lisp/array.el (current-line):
* lisp/allout.el (allout-resolve-xref)
(allout-latex-verbatim-quote-curr-line):
Replace yet more uses of end-of-line etc with line-end-position.
2010-11-09 05:33:07 +00:00
|
|
|
|
(delete-region (point-at-bol)
|
2009-04-09 16:33:41 +00:00
|
|
|
|
(progn (forward-line 1) (point)))))))
|
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)
|
1996-12-16 08:06:37 +00:00
|
|
|
|
(progn
|
|
|
|
|
(setq fcc-was-found t)
|
|
|
|
|
(mail-do-fcc delimline)))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(if mail-interactive
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(with-current-buffer errbuf
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(erase-buffer))))
|
2011-05-23 04:44:29 +00:00
|
|
|
|
;; Encode the header according to RFC2047.
|
|
|
|
|
(mail-encode-header (point-min) delimline)
|
1996-12-16 08:06:37 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(if (let ((case-fold-search t))
|
2005-03-18 00:08:24 +00:00
|
|
|
|
(or resend-to-addresses
|
|
|
|
|
(re-search-forward "^To:\\|^cc:\\|^bcc:"
|
|
|
|
|
delimline t)))
|
1998-11-05 19:31:09 +00:00
|
|
|
|
(let* ((default-directory "/")
|
2002-10-15 01:10:03 +00:00
|
|
|
|
(coding-system-for-write selected-coding)
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(args
|
1998-11-05 19:31:09 +00:00
|
|
|
|
(append (list (point-min) (point-max)
|
2011-05-13 01:42:24 +00:00
|
|
|
|
sendmail-program
|
1998-11-05 19:31:09 +00:00
|
|
|
|
nil errbuf nil "-oi")
|
2001-12-28 18:58:40 +00:00
|
|
|
|
(and envelope-from
|
|
|
|
|
(list "-f" envelope-from))
|
2010-09-20 11:20:38 +00:00
|
|
|
|
;; ;; Don't say "from root" if running under su.
|
|
|
|
|
;; (and (equal (user-real-login-name) "root")
|
|
|
|
|
;; (list "-f" (user-login-name)))
|
1998-11-05 19:31:09 +00:00
|
|
|
|
(and mail-alias-file
|
|
|
|
|
(list (concat "-oA" mail-alias-file)))
|
|
|
|
|
(if mail-interactive
|
2007-10-15 14:38:42 +00:00
|
|
|
|
sendmail-error-reporting-interactive
|
|
|
|
|
sendmail-error-reporting-non-interactive)
|
2005-03-18 00:08:24 +00:00
|
|
|
|
;; 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
|
2001-03-21 10:29:26 +00:00
|
|
|
|
'("-t")
|
2005-03-18 00:08:24 +00:00
|
|
|
|
)
|
2002-04-25 21:33:38 +00:00
|
|
|
|
(if mail-use-dsn
|
|
|
|
|
(list "-N" (mapconcat 'symbol-name
|
|
|
|
|
mail-use-dsn ",")))
|
2001-03-21 10:29:26 +00:00
|
|
|
|
)
|
|
|
|
|
)
|
1998-11-05 19:31:09 +00:00
|
|
|
|
(exit-value (apply 'call-process-region args)))
|
2009-02-26 03:53:15 +00:00
|
|
|
|
(cond ((or (null exit-value) (eq 0 exit-value)))
|
|
|
|
|
((numberp exit-value)
|
|
|
|
|
(error "Sending...failed with exit value %d" exit-value))
|
|
|
|
|
((stringp exit-value)
|
|
|
|
|
(error "Sending...terminated by signal: %s" exit-value))
|
|
|
|
|
(t
|
|
|
|
|
(error "SENDMAIL-SEND-IT -- fall through: %S" exit-value))))
|
1996-12-16 08:06:37 +00:00
|
|
|
|
(or fcc-was-found
|
|
|
|
|
(error "No recipients")))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(if mail-interactive
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(with-current-buffer errbuf
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(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)))))
|
|
|
|
|
|
2009-02-07 03:02:39 +00:00
|
|
|
|
(autoload 'rmail-output-to-rmail-buffer "rmailout")
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defun mail-do-fcc (header-end)
|
2009-02-07 03:02:39 +00:00
|
|
|
|
"Find and act on any FCC: headers in the current message before HEADER-END.
|
|
|
|
|
If a buffer is visiting the FCC file, append to it before
|
|
|
|
|
offering to save it, if it was modified initially. If this is an
|
|
|
|
|
Rmail buffer, update Rmail as needed. If there is no buffer,
|
|
|
|
|
just append to the file, in Babyl format if necessary."
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(unless (markerp header-end)
|
|
|
|
|
(error "Value of `header-end' must be a marker"))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(let (fcc-list
|
2009-02-07 03:02:39 +00:00
|
|
|
|
(mailbuf (current-buffer))
|
|
|
|
|
(time (current-time)))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
2009-02-07 03:02:39 +00:00
|
|
|
|
(let ((case-fold-search t))
|
|
|
|
|
(while (re-search-forward "^FCC:[ \t]*" header-end t)
|
|
|
|
|
(push (buffer-substring (point)
|
|
|
|
|
(progn
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
|
(point)))
|
|
|
|
|
fcc-list)
|
|
|
|
|
(delete-region (match-beginning 0)
|
|
|
|
|
(progn (forward-line 1) (point)))))
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
;; This initial newline is not written out if we create a new
|
|
|
|
|
;; file (see below).
|
|
|
|
|
(insert "\nFrom " (user-login-name) " " (current-time-string time) "\n")
|
|
|
|
|
;; Insert the time zone before the year.
|
|
|
|
|
(forward-char -1)
|
|
|
|
|
(forward-word -1)
|
|
|
|
|
(require 'mail-utils)
|
|
|
|
|
(insert (mail-rfc822-time-zone time) " ")
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert-buffer-substring mailbuf)
|
|
|
|
|
;; 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 ?>)))
|
|
|
|
|
(dolist (fcc fcc-list)
|
|
|
|
|
(let* ((buffer (find-buffer-visiting fcc))
|
|
|
|
|
(curbuf (current-buffer))
|
|
|
|
|
dont-write-the-file
|
|
|
|
|
buffer-matches-file
|
|
|
|
|
(beg (point-min)) ; the initial blank line
|
|
|
|
|
(end (point-max))
|
|
|
|
|
;; After the ^From line.
|
|
|
|
|
(beg2 (save-excursion (goto-char (point-min))
|
|
|
|
|
(forward-line 2) (point))))
|
|
|
|
|
(if buffer
|
|
|
|
|
;; File is present in a buffer => append to that buffer.
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(setq buffer-matches-file
|
|
|
|
|
(and (not (buffer-modified-p))
|
|
|
|
|
(verify-visited-file-modtime buffer)))
|
|
|
|
|
(let ((msg (bound-and-true-p rmail-current-message))
|
|
|
|
|
(buffer-read-only nil))
|
|
|
|
|
;; If MSG is non-nil, buffer is in Rmail mode.
|
|
|
|
|
(if msg
|
|
|
|
|
(let ((buff (generate-new-buffer " *mail-do-fcc")))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(with-current-buffer buff
|
|
|
|
|
(insert-buffer-substring curbuf (1+ beg) end))
|
|
|
|
|
(rmail-output-to-rmail-buffer buff msg))
|
|
|
|
|
(kill-buffer buff)))
|
|
|
|
|
;; Output file not in Rmail mode => just insert
|
|
|
|
|
;; at the end.
|
|
|
|
|
(save-restriction
|
|
|
|
|
(widen)
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert-buffer-substring curbuf beg end)))
|
|
|
|
|
;; Offer to save the buffer if it was modified
|
|
|
|
|
;; before we started.
|
|
|
|
|
(unless buffer-matches-file
|
|
|
|
|
(if (y-or-n-p (format "Save file %s? " fcc))
|
|
|
|
|
(save-buffer))
|
|
|
|
|
(setq dont-write-the-file t)))))
|
|
|
|
|
;; Append to the file directly, unless we've already taken
|
|
|
|
|
;; care of it.
|
|
|
|
|
(unless dont-write-the-file
|
|
|
|
|
(if (and (file-exists-p fcc)
|
|
|
|
|
(mail-file-babyl-p fcc))
|
|
|
|
|
;; If the file is a Babyl file, convert the message to
|
|
|
|
|
;; Babyl format. Even though Rmail no longer uses
|
|
|
|
|
;; Babyl, this code can remain for the time being, on
|
|
|
|
|
;; the off-chance one FCCs to a Babyl file that has
|
|
|
|
|
;; not yet been converted to mbox.
|
|
|
|
|
(let ((coding-system-for-write
|
|
|
|
|
(or rmail-file-coding-system 'emacs-mule)))
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(insert "\C-l\n0, unseen,,\n*** EOOH ***\nDate: "
|
|
|
|
|
(mail-rfc822-date) "\n")
|
|
|
|
|
(insert-buffer-substring curbuf beg2 end)
|
|
|
|
|
(insert "\n\C-_")
|
|
|
|
|
(write-region (point-min) (point-max) fcc t)))
|
|
|
|
|
;; Ensure there is a blank line between messages, but
|
|
|
|
|
;; not at the very start of the file.
|
|
|
|
|
(write-region (if (file-exists-p fcc)
|
|
|
|
|
(point-min)
|
|
|
|
|
(1+ (point-min)))
|
|
|
|
|
(point-max) fcc t)))
|
|
|
|
|
(and buffer (not dont-write-the-file)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(set-visited-file-modtime)))))))))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-sent-via ()
|
|
|
|
|
"Make a Sent-via header line from each To or CC header line."
|
|
|
|
|
(interactive)
|
|
|
|
|
(save-excursion
|
|
|
|
|
;; put a marker at the end of the header
|
1999-04-26 04:33:56 +00:00
|
|
|
|
(let ((end (copy-marker (mail-header-end)))
|
2005-12-05 17:08:00 +00:00
|
|
|
|
(case-fold-search t))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(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))))))
|
2011-03-03 07:08:22 +00:00
|
|
|
|
|
|
|
|
|
(make-obsolete 'mail-sent-via "nobody can remember what it is for." "24.1")
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-to ()
|
2009-03-14 20:25:06 +00:00
|
|
|
|
"Move point to end of To field, creating it if necessary."
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(mail-position-on-field "To"))
|
|
|
|
|
|
|
|
|
|
(defun mail-subject ()
|
2009-03-14 20:25:06 +00:00
|
|
|
|
"Move point to end of Subject field, creating it if necessary."
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(mail-position-on-field "Subject"))
|
|
|
|
|
|
|
|
|
|
(defun mail-cc ()
|
2009-03-14 20:25:06 +00:00
|
|
|
|
"Move point to end of CC field, creating it if necessary."
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(or (mail-position-on-field "cc" t)
|
|
|
|
|
(progn (mail-position-on-field "to")
|
|
|
|
|
(insert "\nCC: "))))
|
|
|
|
|
|
|
|
|
|
(defun mail-bcc ()
|
2009-03-14 20:25:06 +00:00
|
|
|
|
"Move point to end of BCC field, creating it if necessary."
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(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
|
|
|
|
|
2003-02-04 13:24:35 +00:00
|
|
|
|
(defun mail-reply-to ()
|
2009-03-14 20:25:06 +00:00
|
|
|
|
"Move point to end of Reply-To field, creating it if necessary."
|
1995-02-13 06:49:27 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(mail-position-on-field "Reply-To"))
|
|
|
|
|
|
2005-03-18 00:08:24 +00:00
|
|
|
|
(defun mail-mail-reply-to ()
|
2009-03-14 20:25:06 +00:00
|
|
|
|
"Move point to end of Mail-Reply-To field, creating it if necessary."
|
2005-03-18 00:08:24 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(or (mail-position-on-field "mail-reply-to" t)
|
|
|
|
|
(progn (mail-position-on-field "to")
|
|
|
|
|
(insert "\nMail-Reply-To: "))))
|
|
|
|
|
|
|
|
|
|
(defun mail-mail-followup-to ()
|
2009-03-14 20:25:06 +00:00
|
|
|
|
"Move point to end of Mail-Followup-To field, creating it if necessary."
|
2005-03-18 00:08:24 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(expand-abbrev)
|
|
|
|
|
(or (mail-position-on-field "mail-followup-to" t)
|
|
|
|
|
(progn (mail-position-on-field "to")
|
|
|
|
|
(insert "\nMail-Followup-To: "))))
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defun mail-position-on-field (field &optional soft)
|
|
|
|
|
(let (end
|
|
|
|
|
(case-fold-search t))
|
1998-05-03 04:35:16 +00:00
|
|
|
|
(setq end (mail-header-end))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(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 ()
|
2007-04-06 18:04:26 +00:00
|
|
|
|
"Move point to beginning of text field."
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(interactive)
|
1995-05-22 19:41:25 +00:00
|
|
|
|
(expand-abbrev)
|
1998-05-03 04:35:16 +00:00
|
|
|
|
(goto-char (mail-text-start)))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
2001-09-27 11:03:03 +00:00
|
|
|
|
(defun mail-signature (&optional atpoint)
|
2009-03-14 20:25:06 +00:00
|
|
|
|
"Sign letter with signature.
|
|
|
|
|
If the variable `mail-signature' is a string, inserts it.
|
|
|
|
|
If it is t or nil, inserts the contents of the file `mail-signature-file'.
|
|
|
|
|
Otherwise, evals `mail-signature'.
|
|
|
|
|
Prefix argument ATPOINT means insert at point rather than the end."
|
|
|
|
|
(interactive "*P")
|
|
|
|
|
;; Test for an unreadable file here, before we delete trailing
|
|
|
|
|
;; whitespace, so that we don't modify the buffer needlessly.
|
|
|
|
|
(if (and (memq mail-signature '(t nil))
|
|
|
|
|
(not (file-readable-p mail-signature-file)))
|
2009-10-02 03:48:36 +00:00
|
|
|
|
(if (called-interactively-p 'interactive)
|
2009-03-14 20:25:06 +00:00
|
|
|
|
(message "The signature file `%s' could not be read"
|
|
|
|
|
mail-signature-file))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(unless atpoint
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
;; Delete trailing whitespace and blank lines.
|
|
|
|
|
(skip-chars-backward " \t\n")
|
|
|
|
|
(end-of-line)
|
1992-06-03 17:50:56 +00:00
|
|
|
|
(delete-region (point) (point-max)))
|
2009-03-14 20:25:06 +00:00
|
|
|
|
(cond ((stringp mail-signature)
|
|
|
|
|
(insert mail-signature))
|
|
|
|
|
((memq mail-signature '(t nil))
|
|
|
|
|
(insert "\n\n-- \n")
|
|
|
|
|
(insert-file-contents (expand-file-name mail-signature-file)))
|
|
|
|
|
(t
|
|
|
|
|
;; FIXME add condition-case error handling?
|
|
|
|
|
(eval mail-signature))))))
|
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
|
1998-05-03 04:35:16 +00:00
|
|
|
|
(goto-char (mail-text-start))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(fill-individual-paragraphs (point)
|
|
|
|
|
(point-max)
|
|
|
|
|
justifyp
|
1998-07-13 01:45:43 +00:00
|
|
|
|
mail-citation-prefix-regexp)))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
1997-07-22 20:23:53 +00:00
|
|
|
|
(defun mail-indent-citation ()
|
1993-06-01 23:19:49 +00:00
|
|
|
|
"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."
|
1997-07-22 20:23:53 +00:00
|
|
|
|
(mail-yank-clear-headers (region-beginning) (region-end))
|
1996-12-27 02:02:21 +00:00
|
|
|
|
(if (null mail-yank-prefix)
|
1997-07-22 20:23:53 +00:00
|
|
|
|
(indent-rigidly (region-beginning) (region-end)
|
|
|
|
|
mail-indentation-spaces)
|
1996-12-27 02:02:21 +00:00
|
|
|
|
(save-excursion
|
1997-07-22 20:23:53 +00:00
|
|
|
|
(let ((end (set-marker (make-marker) (region-end))))
|
|
|
|
|
(goto-char (region-beginning))
|
|
|
|
|
(while (< (point) end)
|
|
|
|
|
(insert mail-yank-prefix)
|
|
|
|
|
(forward-line 1))))))
|
1993-06-01 23:19:49 +00:00
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defun mail-yank-original (arg)
|
2009-02-07 03:02:39 +00:00
|
|
|
|
"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")
|
1996-12-07 22:16:27 +00:00
|
|
|
|
(if mail-reply-action
|
|
|
|
|
(let ((start (point))
|
2010-01-17 23:34:53 +00:00
|
|
|
|
(original mail-reply-action)
|
|
|
|
|
(omark (mark t)))
|
1996-12-07 22:16:27 +00:00
|
|
|
|
(and (consp original) (eq (car original) 'insert-buffer)
|
|
|
|
|
(setq original (nth 1 original)))
|
|
|
|
|
(if (consp original)
|
2010-01-17 23:34:53 +00:00
|
|
|
|
(progn
|
|
|
|
|
;; Call yank function, and set the mark if it doesn't.
|
|
|
|
|
(apply (car original) (cdr original))
|
|
|
|
|
(if (eq omark (mark t))
|
|
|
|
|
(push-mark (point))))
|
|
|
|
|
;; If the original message is in another window in the same
|
|
|
|
|
;; frame, delete that window to save space.
|
1996-12-07 22:16:27 +00:00
|
|
|
|
(delete-windows-on original t)
|
2005-08-09 02:57:30 +00:00
|
|
|
|
(with-no-warnings
|
|
|
|
|
;; We really want this to set mark.
|
2009-08-07 17:30:16 +00:00
|
|
|
|
(insert-buffer original)
|
|
|
|
|
;; If they yank the original text, the encoding of the
|
|
|
|
|
;; original message is a better default than
|
2009-08-28 04:21:14 +00:00
|
|
|
|
;; the default buffer-file-coding-system.
|
2009-08-07 17:30:16 +00:00
|
|
|
|
(and (coding-system-equal
|
|
|
|
|
(default-value 'buffer-file-coding-system)
|
|
|
|
|
buffer-file-coding-system)
|
|
|
|
|
(setq buffer-file-coding-system
|
|
|
|
|
(coding-system-change-text-conversion
|
|
|
|
|
buffer-file-coding-system
|
|
|
|
|
(coding-system-base
|
|
|
|
|
(with-current-buffer original
|
|
|
|
|
buffer-file-coding-system))))))
|
1999-01-02 00:14:41 +00:00
|
|
|
|
(set-text-properties (point) (mark t) nil))
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(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)
|
1997-08-20 02:06:31 +00:00
|
|
|
|
mail-indentation-spaces))
|
1998-08-01 19:11:15 +00:00
|
|
|
|
;; Avoid error in Transient Mark mode
|
|
|
|
|
;; on account of mark's being inactive.
|
1997-08-20 02:06:31 +00:00
|
|
|
|
(mark-even-if-inactive t))
|
2001-09-27 11:03:03 +00:00
|
|
|
|
(cond (mail-citation-hook
|
|
|
|
|
;; Bind mail-citation-header to the inserted
|
|
|
|
|
;; message's header.
|
|
|
|
|
(let ((mail-citation-header
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
start
|
|
|
|
|
(save-excursion
|
|
|
|
|
(save-restriction
|
|
|
|
|
(narrow-to-region start (point-max))
|
|
|
|
|
(goto-char start)
|
|
|
|
|
(rfc822-goto-eoh)
|
|
|
|
|
(point))))))
|
|
|
|
|
(run-hooks 'mail-citation-hook)))
|
|
|
|
|
(mail-yank-hooks
|
|
|
|
|
(run-hooks 'mail-yank-hooks))
|
|
|
|
|
(t
|
|
|
|
|
(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)
|
1996-12-27 02:02:21 +00:00
|
|
|
|
(if (< end start)
|
|
|
|
|
(let (temp)
|
|
|
|
|
(setq temp start start end end temp)))
|
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)))))))))
|
1996-12-27 02:02:21 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-yank-region (arg)
|
|
|
|
|
"Insert the selected region from the message being replied to.
|
|
|
|
|
Puts point after the text and mark before.
|
|
|
|
|
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")
|
|
|
|
|
(and (consp mail-reply-action)
|
|
|
|
|
(eq (car mail-reply-action) 'insert-buffer)
|
1999-01-02 00:14:41 +00:00
|
|
|
|
(with-current-buffer (nth 1 mail-reply-action)
|
|
|
|
|
(or (mark t)
|
|
|
|
|
(error "No mark set: %S" (current-buffer))))
|
1996-12-27 02:02:21 +00:00
|
|
|
|
(let ((buffer (nth 1 mail-reply-action))
|
1998-08-01 19:11:15 +00:00
|
|
|
|
(start (point))
|
|
|
|
|
;; Avoid error in Transient Mark mode
|
|
|
|
|
;; on account of mark's being inactive.
|
|
|
|
|
(mark-even-if-inactive t))
|
1996-12-27 02:02:21 +00:00
|
|
|
|
;; Insert the citation text.
|
|
|
|
|
(insert (with-current-buffer buffer
|
1998-08-10 07:43:08 +00:00
|
|
|
|
(buffer-substring-no-properties (point) (mark))))
|
1996-12-27 02:02:21 +00:00
|
|
|
|
(push-mark start)
|
|
|
|
|
;; Indent or otherwise annotate the citation text.
|
|
|
|
|
(if (consp arg)
|
|
|
|
|
nil
|
|
|
|
|
(let ((mail-indentation-spaces (if arg (prefix-numeric-value arg)
|
|
|
|
|
mail-indentation-spaces)))
|
|
|
|
|
(if mail-citation-hook
|
2008-09-03 11:00:31 +00:00
|
|
|
|
;; Bind mail-citation-header to the original message's header.
|
1998-08-10 07:43:08 +00:00
|
|
|
|
(let ((mail-citation-header
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(point-min)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(rfc822-goto-eoh)
|
|
|
|
|
(point))))))
|
|
|
|
|
(run-hooks 'mail-citation-hook))
|
1996-12-27 02:02:21 +00:00
|
|
|
|
(if mail-yank-hooks
|
|
|
|
|
(run-hooks 'mail-yank-hooks)
|
1997-07-22 20:23:53 +00:00
|
|
|
|
(mail-indent-citation))))))))
|
2003-01-03 22:46:53 +00:00
|
|
|
|
|
|
|
|
|
(defun mail-split-line ()
|
|
|
|
|
"Split current line, moving portion beyond point vertically down.
|
|
|
|
|
If the current line has `mail-yank-prefix', insert it on the new line."
|
|
|
|
|
(interactive "*")
|
|
|
|
|
(split-line mail-yank-prefix))
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
|
2011-09-10 08:26:12 +00:00
|
|
|
|
(defun mail-insert-file (&optional file)
|
1997-04-20 01:20:58 +00:00
|
|
|
|
"Insert a file at the end of the buffer, with separator lines around it."
|
|
|
|
|
(interactive "fAttach file: ")
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(or (bolp) (newline))
|
|
|
|
|
(newline)
|
|
|
|
|
(let ((start (point))
|
|
|
|
|
middle)
|
|
|
|
|
(insert (format "===File %s===" file))
|
|
|
|
|
(insert-char ?= (max 0 (- 60 (current-column))))
|
|
|
|
|
(newline)
|
|
|
|
|
(setq middle (point))
|
|
|
|
|
(insert "============================================================\n")
|
|
|
|
|
(push-mark)
|
|
|
|
|
(goto-char middle)
|
|
|
|
|
(insert-file-contents file)
|
|
|
|
|
(or (bolp) (newline))
|
|
|
|
|
(goto-char start))))
|
2011-09-03 10:08:14 +00:00
|
|
|
|
|
2011-09-10 08:26:12 +00:00
|
|
|
|
(define-obsolete-function-alias 'mail-attach-file 'mail-insert-file "24.1")
|
|
|
|
|
|
|
|
|
|
(declare-function mml-attach-file "mml"
|
|
|
|
|
(file &optional type description disposition))
|
|
|
|
|
(declare-function mm-default-file-encoding "mm-encode" (file))
|
|
|
|
|
|
2011-09-03 10:08:14 +00:00
|
|
|
|
(defun mail-add-attachment (file)
|
2011-09-10 08:26:12 +00:00
|
|
|
|
"Add FILE as a MIME attachment to the end of the mail message being composed."
|
2011-09-03 10:08:14 +00:00
|
|
|
|
(interactive "fAttach file: ")
|
|
|
|
|
(mml-attach-file file
|
|
|
|
|
(or (mm-default-file-encoding file)
|
|
|
|
|
"application/octet-stream") nil)
|
|
|
|
|
(setq mail-encode-mml t))
|
|
|
|
|
|
1997-04-20 01:20:58 +00:00
|
|
|
|
|
1997-04-29 02:07:51 +00:00
|
|
|
|
;; Put these commands last, to reduce chance of lossage from quitting
|
|
|
|
|
;; in middle of loading the file.
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
;;;###autoload
|
2011-01-13 04:23:41 +00:00
|
|
|
|
(defun mail (&optional noerase to subject in-reply-to cc replybuffer
|
|
|
|
|
actions return-action)
|
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
|
|
|
|
|
2005-09-12 21:58:21 +00:00
|
|
|
|
The first argument, NOERASE, determines what to do when there is
|
|
|
|
|
an existing modified `*mail*' buffer. If NOERASE is nil, the
|
|
|
|
|
existing mail buffer is used, and the user is prompted whether to
|
|
|
|
|
keep the old contents or to erase them. If NOERASE has the value
|
|
|
|
|
`new', a new mail buffer will be created instead of using the old
|
|
|
|
|
one. Any other non-nil value means to always select the old
|
|
|
|
|
buffer without erasing the contents.
|
1994-09-27 20:14:55 +00:00
|
|
|
|
|
|
|
|
|
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.
|
1996-12-07 22:16:27 +00:00
|
|
|
|
The sixth argument REPLYBUFFER is a buffer which contains an
|
|
|
|
|
original message being replied to, or else an action
|
|
|
|
|
of the form (FUNCTION . ARGS) which says how to insert the original.
|
|
|
|
|
Or it can be nil, if not replying to anything.
|
1991-12-13 07:34:20 +00:00
|
|
|
|
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")
|
2005-09-12 21:58:21 +00:00
|
|
|
|
(if (eq noerase 'new)
|
2011-09-22 16:15:52 +00:00
|
|
|
|
(pop-to-buffer-same-window (generate-new-buffer "*mail*"))
|
2005-09-12 22:58:55 +00:00
|
|
|
|
(and noerase
|
|
|
|
|
(not (get-buffer "*mail*"))
|
|
|
|
|
(setq noerase nil))
|
2011-09-22 16:15:52 +00:00
|
|
|
|
(pop-to-buffer-same-window "*mail*"))
|
2005-09-12 21:58:21 +00:00
|
|
|
|
|
2002-05-20 16:05:56 +00:00
|
|
|
|
;; Avoid danger that the auto-save file can't be written.
|
|
|
|
|
(let ((dir (expand-file-name
|
|
|
|
|
(file-name-as-directory mail-default-directory))))
|
|
|
|
|
(if (file-exists-p dir)
|
|
|
|
|
(setq default-directory dir)))
|
1998-06-28 18:57:51 +00:00
|
|
|
|
;; Only call auto-save-mode if necessary, to avoid changing auto-save file.
|
|
|
|
|
(if (or (and auto-save-default (not buffer-auto-save-file-name))
|
|
|
|
|
(and (not auto-save-default) buffer-auto-save-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*).
|
2010-09-20 11:20:38 +00:00
|
|
|
|
;; (set-visited-file-name nil)
|
1992-07-30 04:31:37 +00:00
|
|
|
|
(let (initialized)
|
2005-09-12 22:58:55 +00:00
|
|
|
|
(and (not (and noerase
|
|
|
|
|
(not (eq noerase 'new))))
|
1997-07-25 00:10:37 +00:00
|
|
|
|
(if buffer-file-name
|
|
|
|
|
(if (buffer-modified-p)
|
|
|
|
|
(when (y-or-n-p "Buffer has unsaved changes; reinitialize it and discard them? ")
|
|
|
|
|
(if (y-or-n-p "Disconnect buffer from visited file? ")
|
|
|
|
|
(set-visited-file-name nil))
|
|
|
|
|
t)
|
|
|
|
|
(when (y-or-n-p "Reinitialize buffer, and disconnect it from the visited file? ")
|
|
|
|
|
(set-visited-file-name nil)
|
|
|
|
|
t))
|
|
|
|
|
;; A non-file-visiting buffer.
|
|
|
|
|
(if (buffer-modified-p)
|
|
|
|
|
(y-or-n-p "Unsent message being composed; erase it? ")
|
|
|
|
|
t))
|
1995-12-23 07:42:36 +00:00
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(erase-buffer)
|
2011-01-13 04:23:41 +00:00
|
|
|
|
(mail-setup to subject in-reply-to cc replybuffer actions
|
|
|
|
|
return-action)
|
1995-12-23 07:42:36 +00:00
|
|
|
|
(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
|
|
|
|
|
* progmodes/cperl-mode.el (compilation-error-regexp-alist): Pacify
byte compiler.
(cperl-mode): Use with-no-warnings for setting vc-header-alist.
* progmodes/idlwave.el (idlwave-shell-get-path-info)
(idlwave-shell-temp-file, idlwave-shell-is-running)
(widget-value, comint-dynamic-complete-filename, Info-goto-node):
* progmodes/idlw-help.el (idlwave-prepare-structure-tag-completion)
(idlwave-all-method-classes, idlwave-all-method-keyword-classes)
(idlwave-beginning-of-statement, idlwave-best-rinfo-assoc)
(idlwave-class-found-in, idlwave-class-or-superclass-with-tag)
(idlwave-completing-read, idlwave-current-routine)
(idlwave-downcase-safe, idlwave-entry-find-keyword)
(idlwave-expand-keyword, idlwave-find-class-definition)
(idlwave-find-inherited-class, idlwave-find-struct-tag)
(idlwave-get-buffer-visiting, idlwave-in-quote)
(idlwave-make-full-name, idlwave-members-only)
(idlwave-popup-select, idlwave-routine-source-file)
(idlwave-routines, idlwave-sintern-class)
(idlwave-sintern-keyword, idlwave-sintern-method)
(idlwave-sintern-routine-or-method)
(idlwave-substitute-link-target, idlwave-sys-dir)
(idlwave-this-word, idlwave-what-module-find-class)
(idlwave-where):
* progmodes/idlw-complete-structtag.el (idlwave-shell-buffer):
* mail/uce.el (rmail-msg-is-pruned)
(rmail-maybe-set-message-counters, rmail-msgbeg, rmail-msgend)
(rmail-toggle-header):
* mail/sendmail.el (dired-view-file, dired-get-filename):
* mail/rmailkwd.el (rmail-maybe-set-message-counters)
(rmail-display-labels, rmail-msgbeg)
(rmail-set-message-deleted-p, rmail-message-labels-p)
(rmail-show-message, mail-comma-list-regexp)
(mail-parse-comma-list):
* mail/rmail.el (rmail-spam-filter, rmail-summary-goto-msg)
(rmail-summary-mark-undeleted, rmail-summary-mark-deleted)
(rfc822-addresses, mail-abbrev-make-syntax-table)
(mail-sendmail-delimit-header, mail-header-end):
* mail/hashcash.el (message-narrow-to-headers-or-head)
(message-fetch-field, message-goto-eoh)
(message-narrow-to-headers):
* vc.el (view-mode-exit): Declare as functions.
* mail/vms-pmail.el:
* vmsproc.el:
* vms-patch.el: Don't byte compile these files, they don't work.
* Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
compiled anymore.
2007-11-27 06:57:07 +00:00
|
|
|
|
(declare-function dired-view-file "dired" ())
|
|
|
|
|
(declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
|
|
|
|
|
|
2002-01-03 16:52:26 +00:00
|
|
|
|
(defun mail-recover-1 ()
|
2002-01-04 10:25:20 +00:00
|
|
|
|
"Pop up a list of auto-saved draft messages so you can recover one of them."
|
2002-01-03 16:52:26 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(let ((file-name (make-auto-save-file-name))
|
|
|
|
|
(ls-lisp-support-shell-wildcards t)
|
|
|
|
|
non-random-len wildcard)
|
|
|
|
|
;; Remove the random part from the auto-save-file-name, and
|
|
|
|
|
;; create a wildcard which matches possible candidates.
|
|
|
|
|
;; Note: this knows that make-auto-save-file-name appends
|
|
|
|
|
;; "#<RANDOM-STUFF>#" to the buffer name, where RANDOM-STUFF
|
|
|
|
|
;; is the result of (make-temp-name "").
|
|
|
|
|
(setq non-random-len
|
2002-04-28 22:35:54 +00:00
|
|
|
|
(- (length file-name) (length (make-temp-name "")) 1))
|
2002-01-03 16:52:26 +00:00
|
|
|
|
(setq wildcard (concat (substring file-name 0 non-random-len) "*"))
|
|
|
|
|
(if (null (file-expand-wildcards wildcard))
|
|
|
|
|
(message "There are no auto-saved drafts to recover")
|
|
|
|
|
;; Bind dired-trivial-filenames to t because all auto-save file
|
|
|
|
|
;; names are normally ``trivial'', so Dired will set point after
|
|
|
|
|
;; all the files, at buffer bottom. We want it on the first
|
|
|
|
|
;; file instead.
|
2010-12-14 04:35:33 +00:00
|
|
|
|
;; Require dired so that dired-trivial-filenames does not get
|
|
|
|
|
;; unbound on exit from the let.
|
|
|
|
|
(require 'dired)
|
2002-01-03 16:52:26 +00:00
|
|
|
|
(let ((dired-trivial-filenames t))
|
2011-06-09 05:33:26 +00:00
|
|
|
|
(dired-other-window wildcard (concat dired-listing-switches " -t")))
|
2002-01-03 16:52:26 +00:00
|
|
|
|
(rename-buffer "*Auto-saved Drafts*" t)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(or (looking-at " Move to the draft file you want to recover,")
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
;; Each line starts with a space so that Font Lock mode
|
|
|
|
|
;; won't highlight the first character.
|
|
|
|
|
(insert "\
|
|
|
|
|
Move to the draft file you want to recover, then type C-c C-c
|
|
|
|
|
to recover text of message whose composition was interrupted.
|
|
|
|
|
To browse text of a draft, type v on the draft file's line.
|
|
|
|
|
|
|
|
|
|
You can also delete some of these files;
|
|
|
|
|
type d on a line to mark that file for deletion.
|
|
|
|
|
|
|
|
|
|
List of possible auto-save files for recovery:
|
|
|
|
|
|
|
|
|
|
"))))
|
|
|
|
|
(use-local-map
|
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
(set-keymap-parent map (current-local-map))
|
|
|
|
|
map))
|
|
|
|
|
(define-key (current-local-map) "v"
|
|
|
|
|
(lambda ()
|
|
|
|
|
(interactive)
|
2002-05-27 14:51:57 +00:00
|
|
|
|
(let ((coding-system-for-read 'utf-8-emacs-unix))
|
2002-01-03 16:52:26 +00:00
|
|
|
|
(dired-view-file))))
|
|
|
|
|
(define-key (current-local-map) "\C-c\C-c"
|
|
|
|
|
(lambda ()
|
|
|
|
|
(interactive)
|
|
|
|
|
(let ((fname (dired-get-filename))
|
|
|
|
|
;; Auto-saved files are written in the internal
|
|
|
|
|
;; representation, so they should be read accordingly.
|
2002-05-27 14:51:57 +00:00
|
|
|
|
(coding-system-for-read 'utf-8-emacs-unix))
|
2002-01-03 16:52:26 +00:00
|
|
|
|
(switch-to-buffer-other-window "*mail*")
|
|
|
|
|
(let ((buffer-read-only nil))
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert-file-contents fname nil)
|
|
|
|
|
;; insert-file-contents will set buffer-file-coding-system
|
2002-05-27 14:51:57 +00:00
|
|
|
|
;; to utf-8-emacs, which is probably not what they want to
|
2002-01-03 16:52:26 +00:00
|
|
|
|
;; use for sending the message. But we don't know what
|
|
|
|
|
;; was its value before the buffer was killed or Emacs
|
|
|
|
|
;; crashed. We therefore reset buffer-file-coding-system
|
|
|
|
|
;; to the default value, so that either the default does
|
|
|
|
|
;; TRT, or the user will get prompted for the right
|
|
|
|
|
;; encoding when they send the message.
|
|
|
|
|
(setq buffer-file-coding-system
|
2009-08-28 04:21:14 +00:00
|
|
|
|
(default-value 'buffer-file-coding-system)))))))))
|
2002-01-03 16:52:26 +00:00
|
|
|
|
|
2007-11-25 16:48:31 +00:00
|
|
|
|
(declare-function dired-move-to-filename "dired" (&optional raise-error eol))
|
|
|
|
|
(declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
|
|
|
|
|
(declare-function dired-view-file "dired" ())
|
|
|
|
|
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(defun mail-recover ()
|
2002-01-04 10:25:20 +00:00
|
|
|
|
"Recover interrupted mail composition from auto-save files.
|
|
|
|
|
|
|
|
|
|
If the mail buffer has a current valid auto-save file,
|
|
|
|
|
the command recovers that file. Otherwise, it displays a
|
|
|
|
|
buffer showing the existing auto-saved draft messages;
|
|
|
|
|
you can move to one of them and type C-c C-c to recover that one."
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(interactive)
|
2002-01-03 16:52:26 +00:00
|
|
|
|
;; In case they invoke us from some random buffer...
|
|
|
|
|
(switch-to-buffer "*mail*")
|
|
|
|
|
;; If *mail* didn't exist, set its directory, so that auto-saved
|
|
|
|
|
;; drafts will be found.
|
2002-05-20 16:05:56 +00:00
|
|
|
|
(let ((dir (expand-file-name
|
|
|
|
|
(file-name-as-directory mail-default-directory))))
|
|
|
|
|
(if (file-exists-p dir)
|
|
|
|
|
(setq default-directory dir)))
|
2002-01-03 16:52:26 +00:00
|
|
|
|
(or (eq major-mode 'mail-mode)
|
|
|
|
|
(mail-mode))
|
|
|
|
|
(let ((file-name buffer-auto-save-file-name))
|
|
|
|
|
(cond ((and file-name (file-exists-p file-name))
|
|
|
|
|
(let ((dispbuf
|
|
|
|
|
;; This used to invoke `ls' via call-process, but
|
|
|
|
|
;; dired-noselect is more portable to systems where
|
|
|
|
|
;; `ls' is not a standard program (it will use
|
|
|
|
|
;; ls-lisp instead).
|
|
|
|
|
(dired-noselect file-name
|
2011-06-09 05:33:26 +00:00
|
|
|
|
(concat dired-listing-switches " -t"))))
|
2002-03-03 22:18:12 +00:00
|
|
|
|
(save-selected-window
|
Change modes that used same-window-* vars to use switch-to-buffer.
* cmuscheme.el (run-scheme, switch-to-scheme):
* ielm.el (ielm):
* shell.el (shell):
* net/rlogin.el (rlogin):
* net/telnet.el (telnet, rsh):
* progmodes/inf-lisp.el (inferior-lisp): Use switch-to-buffer.
* cus-edit.el (customize-group, custom-buffer-create)
(customize-browse, custom-buffer-create-other-window): Use
switch-to-buffer or switch-to-buffer-other-window.
* info.el (info, Info-find-node, Info-revert-find-node, Info-next)
(Info-prev, Info-up, Info-speedbar-goto-node)
(info-display-manual): Use switch-to-buffer.
(Info-speedbar-goto-node): Use switch-to-buffer-other-frame.
* lisp/gnus/message.el (message-pop-to-buffer): Default to switch-to-buffer.
(message-mail-other-window, message-mail-other-frame)
(message-news-other-window, message-news-other-frame): Use
switch-to-buffer-other-frame and switch-to-buffer-other-window instead
of setting buffer display varibles.
* mail/sendmail.el (mail): Use switch-to-buffer.
(mail-recover): Use switch-to-buffer-other-window.
* progmodes/gdb-mi.el (gdb-restore-windows, gdb-setup-windows):
Use switch-to-buffer.
2011-09-11 18:30:07 +00:00
|
|
|
|
(switch-to-buffer-other-window dispbuf)
|
2002-03-03 22:18:12 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(forward-line 2)
|
|
|
|
|
(dired-move-to-filename)
|
|
|
|
|
(setq dispbuf (rename-buffer "*Directory*" t)))
|
2002-01-03 16:52:26 +00:00
|
|
|
|
(if (not (yes-or-no-p
|
|
|
|
|
(format "Recover mail draft from auto save file %s? "
|
|
|
|
|
file-name)))
|
|
|
|
|
(error "mail-recover cancelled")
|
|
|
|
|
(let ((buffer-read-only nil)
|
|
|
|
|
(buffer-coding buffer-file-coding-system)
|
|
|
|
|
;; Auto-save files are written in internal
|
|
|
|
|
;; representation of non-ASCII characters.
|
2002-05-27 14:51:57 +00:00
|
|
|
|
(coding-system-for-read 'utf-8-emacs-unix))
|
2002-01-03 16:52:26 +00:00
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert-file-contents file-name nil)
|
|
|
|
|
(setq buffer-file-coding-system buffer-coding)))))
|
|
|
|
|
(t (mail-recover-1)))))
|
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")
|
2011-09-10 21:15:28 +00:00
|
|
|
|
(switch-to-buffer-other-window "*mail*")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(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")
|
2011-09-10 21:15:28 +00:00
|
|
|
|
(switch-to-buffer-other-frame "*mail*")
|
1991-12-13 07:34:20 +00:00
|
|
|
|
(mail noerase to subject in-reply-to cc replybuffer sendactions))
|
|
|
|
|
|
2005-12-05 17:08:00 +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
|