aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2008-06-06 05:59:38 +0000
committerStefan Monnier2008-06-06 05:59:38 +0000
commit10b6d5c455c4b479ff27eb8ea0882c098cae2b18 (patch)
treeb1e1dc6b9f61cd985c31ac4c9148d69e9c5fc14e
parent7fc743d473b8845cc120e4f2781ebda444501c92 (diff)
downloademacs-10b6d5c455c4b479ff27eb8ea0882c098cae2b18.tar.gz
emacs-10b6d5c455c4b479ff27eb8ea0882c098cae2b18.zip
(mail-interactive): Change default.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/mail/sendmail.el6
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7e3d537e6ec..f0540dab168 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12008-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * mail/sendmail.el (mail-interactive): Change default.
4
12008-06-05 John Paul Wallington <jpw@pobox.com> 52008-06-05 John Paul Wallington <jpw@pobox.com>
2 6
3 * bindings.el (completion-ignored-extensions): 7 * bindings.el (completion-ignored-extensions):
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index 410ce4daef1..51739656112 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -114,7 +114,11 @@ so you can remove or alter the BCC field to override the default."
114 :group 'sendmail) 114 :group 'sendmail)
115 115
116;;;###autoload 116;;;###autoload
117(defcustom mail-interactive nil 117(defcustom mail-interactive t
118 ;; We used to use a default of nil rather than t, but nowadays it is very
119 ;; common for sendmail to be misconfigured, so one cannot rely on the
120 ;; bounce message to be delivered anywhere, least of all to the
121 ;; user's mailbox.
118 "Non-nil means when sending a message wait for and display errors. 122 "Non-nil means when sending a message wait for and display errors.
119nil means let mailer mail back a message to report errors." 123nil means let mailer mail back a message to report errors."
120 :type 'boolean 124 :type 'boolean