(xmenu_show): Don't look in menubar for core.height if no menu bar.
[bpt/emacs.git] / lisp / gnusmail.el
CommitLineData
1a06eabd
ER
1;;; gnusmail.el --- mail reply commands for GNUS newsreader
2
b027f415 3;; Copyright (C) 1990, 1993 Free Software Foundation, Inc.
3a801d0c 4
e5167999 5;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
fd7fa35a 6;; Keywords: news
e5167999 7
d6f8131c
JB
8;; This file is part of GNU Emacs.
9
08b684de
RS
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
e5167999 12;; the Free Software Foundation; either version 2, or (at your option)
08b684de
RS
13;; any later version.
14
d6f8131c 15;; GNU Emacs is distributed in the hope that it will be useful,
08b684de
RS
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
d6f8131c 19
08b684de
RS
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs; see the file COPYING. If not, write to
22;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
d6f8131c 23
e5167999 24;;; Commentary:
d6f8131c
JB
25
26;; Provides mail reply and mail other window command using usual mail
27;; interface and mh-e interface.
28;;
29;; To use MAIL: set the variables gnus-mail-reply-method and
30;; gnus-mail-other-window-method to gnus-mail-reply-using-mail and
31;; gnus-mail-other-window-using-mail, respectively.
32;;
33;; To use MH-E: set the variables gnus-mail-reply-method and
34;; gnus-mail-other-window-method to gnus-mail-reply-using-mhe and
35;; gnus-mail-other-window-using-mhe, respectively.
36
e5167999
ER
37;;; Code:
38
39(require 'gnus)
40
d6f8131c
JB
41(autoload 'news-mail-reply "rnewspost")
42(autoload 'news-mail-other-window "rnewspost")
43
44(autoload 'mh-send "mh-e")
45(autoload 'mh-send-other-window "mh-e")
46(autoload 'mh-find-path "mh-e")
47(autoload 'mh-yank-cur-msg "mh-e")
48
b027f415 49;;; Mail reply commands of GNUS Summary Mode
d6f8131c 50
b027f415 51(defun gnus-summary-reply (yank)
d6f8131c 52 "Reply mail to news author.
b027f415
RS
53If prefix argument YANK is non-nil, original article is yanked automatically.
54Customize the variable gnus-mail-reply-method to use another mailer."
d6f8131c 55 (interactive "P")
b027f415
RS
56 ;; Bug fix by jbw@bigbird.bu.edu (Joe Wells)
57 ;; Stripping headers should be specified with mail-yank-ignored-headers.
58 (gnus-summary-select-article t t)
59 (switch-to-buffer gnus-article-buffer)
d6f8131c
JB
60 (widen)
61 (delete-other-windows)
b027f415 62 (bury-buffer gnus-article-buffer)
d6f8131c
JB
63 (funcall gnus-mail-reply-method yank))
64
b027f415
RS
65(defun gnus-summary-reply-with-original ()
66 "Reply mail to news author with original article.
67Customize the variable gnus-mail-reply-method to use another mailer."
d6f8131c 68 (interactive)
b027f415 69 (gnus-summary-reply t))
d6f8131c 70
b027f415
RS
71(defun gnus-summary-mail-forward ()
72 "Forward the current message to another user.
73Customize the variable gnus-mail-forward-method to use another mailer."
74 (interactive)
75 (gnus-summary-select-article)
76 (switch-to-buffer gnus-article-buffer)
77 (widen)
78 (delete-other-windows)
79 (bury-buffer gnus-article-buffer)
80 (funcall gnus-mail-forward-method))
81
82(defun gnus-summary-mail-other-window ()
d6f8131c 83 "Compose mail in other window.
b027f415 84Customize the variable gnus-mail-other-window-method to use another mailer."
d6f8131c 85 (interactive)
b027f415
RS
86 (gnus-summary-select-article)
87 (switch-to-buffer gnus-article-buffer)
d6f8131c
JB
88 (widen)
89 (delete-other-windows)
b027f415 90 (bury-buffer gnus-article-buffer)
d6f8131c
JB
91 (funcall gnus-mail-other-window-method))
92
93\f
94;;; Send mail using sendmail mail mode.
95
96(defun gnus-mail-reply-using-mail (&optional yank)
97 "Compose reply mail using mail.
98Optional argument YANK means yank original article."
99 (news-mail-reply)
100 (gnus-overload-functions)
101 (if yank
102 (let ((last (point)))
103 (goto-char (point-max))
104 (mail-yank-original nil)
105 (goto-char last)
106 )))
107
b027f415
RS
108(defun gnus-mail-forward-using-mail ()
109 "Forward the current message to another user using mail."
110 ;; This is almost a carbon copy of rmail-forward in rmail.el.
111 (let ((forward-buffer (current-buffer))
112 (subject
113 (concat "[" gnus-newsgroup-name "] "
114 ;;(mail-strip-quoted-names (gnus-fetch-field "From")) ": "
115 (or (gnus-fetch-field "Subject") ""))))
116 ;; If only one window, use it for the mail buffer.
117 ;; Otherwise, use another window for the mail buffer
118 ;; so that the Rmail buffer remains visible
119 ;; and sending the mail will get back to it.
120 (if (if (one-window-p t)
121 (mail nil nil subject)
122 (mail-other-window nil nil subject))
123 (save-excursion
124 (goto-char (point-max))
125 (insert "------- Start of forwarded message -------\n")
126 (insert-buffer forward-buffer)
127 (goto-char (point-max))
128 (insert "------- End of forwarded message -------\n")
129 ;; You have a chance to arrange the message.
130 (run-hooks 'gnus-mail-forward-hook)
131 ))))
132
d6f8131c
JB
133(defun gnus-mail-other-window-using-mail ()
134 "Compose mail other window using mail."
135 (news-mail-other-window)
136 (gnus-overload-functions))
137
138\f
139;;; Send mail using mh-e.
140
141;; The following mh-e interface is all cooperative works of
142;; tanaka@flab.fujitsu.CO.JP (TANAKA Hiroshi), kawabe@sra.CO.JP
143;; (Yoshikatsu Kawabe), and shingu@casund.cpr.canon.co.jp (Toshiaki
144;; SHINGU).
145
146(defun gnus-mail-reply-using-mhe (&optional yank)
147 "Compose reply mail using mh-e.
148Optional argument YANK means yank original article.
b027f415 149The command \\[mh-yank-cur-msg] yank the original message into current buffer."
d6f8131c
JB
150 ;; First of all, prepare mhe mail buffer.
151 (let (from cc subject date to reply-to (buffer (current-buffer)))
152 (save-restriction
b027f415 153 (gnus-article-show-all-headers) ;I don't think this is really needed.
d6f8131c
JB
154 (setq from (gnus-fetch-field "from")
155 subject (let ((subject (gnus-fetch-field "subject")))
156 (if (and subject
157 (not (string-match "^[Rr][Ee]:.+$" subject)))
158 (concat "Re: " subject) subject))
159 reply-to (gnus-fetch-field "reply-to")
160 cc (gnus-fetch-field "cc")
161 date (gnus-fetch-field "date"))
162 (setq mh-show-buffer buffer)
163 (setq to (or reply-to from))
164 (mh-find-path)
165 (mh-send to (or cc "") subject)
166 (save-excursion
167 (mh-insert-fields
168 "In-reply-to:"
169 (concat
170 (substring from 0 (string-match " *at \\| *@ \\| *(\\| *<" from))
171 "'s message of " date)))
172 (setq mh-sent-from-folder buffer)
173 (setq mh-sent-from-msg 1)
174 ))
175 ;; Then, yank original article if requested.
176 (if yank
177 (let ((last (point)))
178 (mh-yank-cur-msg)
179 (goto-char last)
180 )))
181
b027f415
RS
182;; gnus-mail-forward-using-mhe is contributed by Jun-ichiro Itoh
183;; <itojun@ingram.mt.cs.keio.ac.jp>
184
185(defun gnus-mail-forward-using-mhe ()
186 "Forward the current message to another user using mh-e."
187 ;; First of all, prepare mhe mail buffer.
188 (let ((to (read-string "To: "))
189 (cc (read-string "Cc: "))
190 (buffer (current-buffer))
191 subject)
192 ;;(gnus-article-show-all-headers)
193 (setq subject
194 (concat "[" gnus-newsgroup-name "] "
195 ;;(mail-strip-quoted-names (gnus-fetch-field "From")) ": "
196 (or (gnus-fetch-field "subject") "")))
197 (setq mh-show-buffer buffer)
198 (mh-find-path)
199 (mh-send to (or cc "") subject)
200 (save-excursion
201 (goto-char (point-max))
202 (insert "\n------- Forwarded Message\n\n")
203 (insert-buffer buffer)
204 (goto-char (point-max))
205 (insert "\n------- End of Forwarded Message\n")
206 (setq mh-sent-from-folder buffer)
207 (setq mh-sent-from-msg 1))))
208
d6f8131c 209(defun gnus-mail-other-window-using-mhe ()
b027f415 210 "Compose mail other window using mh-e."
d6f8131c
JB
211 (let ((to (read-string "To: "))
212 (cc (read-string "Cc: "))
213 (subject (read-string "Subject: " (gnus-fetch-field "subject"))))
b027f415 214 (gnus-article-show-all-headers) ;I don't think this is really needed.
d6f8131c
JB
215 (setq mh-show-buffer (current-buffer))
216 (mh-find-path)
217 (mh-send-other-window to cc subject)
218 (setq mh-sent-from-folder (current-buffer))
219 (setq mh-sent-from-msg 1)))
49116ac0
JB
220
221(provide 'gnusmail)
1a06eabd
ER
222
223;;; gnusmail.el ends here