diff options
| author | Stefan Monnier | 2008-07-10 16:06:22 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-07-10 16:06:22 +0000 |
| commit | ad5463609794f1207f11edbd9f59c3bd76ec4e53 (patch) | |
| tree | 3a459f5de98d23d4b72b6dd2cc4f06e731e01b28 | |
| parent | c5e7567d3b4aa6caeebcd7e43171f3a84b1a3e8f (diff) | |
| download | emacs-ad5463609794f1207f11edbd9f59c3bd76ec4e53.tar.gz emacs-ad5463609794f1207f11edbd9f59c3bd76ec4e53.zip | |
(message-send-mail-with-sendmail): Display the error message.
| -rw-r--r-- | lisp/gnus/ChangeLog | 9 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 1 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 271d33f562b..893ca129b3a 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,7 +1,12 @@ | |||
| 1 | 2008-07-10 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * message.el (message-send-mail-with-sendmail): | ||
| 4 | Display the error message. | ||
| 5 | |||
| 1 | 2008-07-02 Katsumi Yamaoka <yamaoka@jpl.org> | 6 | 2008-07-02 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 7 | ||
| 3 | * gnus-art.el (gnus-default-article-saver): Add | 8 | * gnus-art.el (gnus-default-article-saver): |
| 4 | gnus-summary-save-in-pipe to choices. | 9 | Add gnus-summary-save-in-pipe to choices. |
| 5 | (gnus-summary-save-in-pipe): Add :decode and :headers properties; use | 10 | (gnus-summary-save-in-pipe): Add :decode and :headers properties; use |
| 6 | gnus-summary-pipe-output-default-command as the default command. | 11 | gnus-summary-pipe-output-default-command as the default command. |
| 7 | (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program | 12 | (gnus-summary-pipe-to-muttprint): Update gnus-summary-muttprint-program |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 0a38ec028c1..ac4de57a736 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -4515,6 +4515,7 @@ If you always want Gnus to send messages in one piece, set | |||
| 4515 | (list resend-to-addresses) | 4515 | (list resend-to-addresses) |
| 4516 | '("-t")))))) | 4516 | '("-t")))))) |
| 4517 | (unless (or (null cpr) (and (numberp cpr) (zerop cpr))) | 4517 | (unless (or (null cpr) (and (numberp cpr) (zerop cpr))) |
| 4518 | (if errbuf (pop-to-buffer errbuf)) | ||
| 4518 | (error "Sending...failed with exit value %d" cpr))) | 4519 | (error "Sending...failed with exit value %d" cpr))) |
| 4519 | (when message-interactive | 4520 | (when message-interactive |
| 4520 | (with-current-buffer errbuf | 4521 | (with-current-buffer errbuf |