1998-09-08 Katsumi Yamaoka <yamaoka@jpl.org>
[elisp/gnus.git-] / lisp / gnus-draft.el
1 ;;; gnus-draft.el --- draft message support for Semi-gnus
2 ;; Copyright (C) 1997,98 Free Software Foundation, Inc.
3
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
5 ;;         MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: mail, news, MIME, offline
7
8 ;; This file is part of GNU Emacs.
9
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
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14
15 ;; GNU Emacs is distributed in the hope that it will be useful,
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.
19
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 the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'gnus)
30 (require 'gnus-sum)
31 (require 'message)
32 (require 'gnus-msg)
33 (require 'nndraft)
34 (require 'gnus-agent)
35 (eval-when-compile (require 'cl))
36
37 ;;; Draft minor mode
38
39 (defvar gnus-draft-mode nil
40   "Minor mode for providing a draft summary buffers.")
41
42 (defvar gnus-draft-mode-map nil)
43
44 (unless gnus-draft-mode-map
45   (setq gnus-draft-mode-map (make-sparse-keymap))
46
47   (gnus-define-keys gnus-draft-mode-map
48     "Dt" gnus-draft-toggle-sending
49     "De" gnus-draft-edit-message
50     "Ds" gnus-draft-send-message
51     "DS" gnus-draft-send-all-messages))
52
53 (defun gnus-draft-make-menu-bar ()
54   (unless (boundp 'gnus-draft-menu)
55     (easy-menu-define
56      gnus-draft-menu gnus-draft-mode-map ""
57      '("Drafts"
58        ["Toggle whether to send" gnus-draft-toggle-sending t]
59        ["Edit" gnus-draft-edit-message t]
60        ["Send selected message(s)" gnus-draft-send-message t]
61        ["Send all messages" gnus-draft-send-all-messages t]
62        ["Delete draft" gnus-summary-delete-article t]))))
63
64 (defun gnus-draft-mode (&optional arg)
65   "Minor mode for providing a draft summary buffers.
66
67 \\{gnus-draft-mode-map}"
68   (interactive "P")
69   (when (eq major-mode 'gnus-summary-mode)
70     (when (set (make-local-variable 'gnus-draft-mode)
71                   (if (null arg) (not gnus-draft-mode)
72                     (> (prefix-numeric-value arg) 0)))
73       ;; Set up the menu.
74       (when (gnus-visual-p 'draft-menu 'menu)
75         (gnus-draft-make-menu-bar))
76       (gnus-add-minor-mode 'gnus-draft-mode " Draft" gnus-draft-mode-map)
77       (gnus-run-hooks 'gnus-draft-mode-hook))))
78
79 ;;; Commands
80
81 (defun gnus-draft-toggle-sending (article)
82   "Toggle whether to send an article or not."
83   (interactive (list (gnus-summary-article-number)))
84   (if (gnus-draft-article-sendable-p article)
85       (progn
86         (push article gnus-newsgroup-unsendable)
87         (gnus-summary-mark-article article gnus-unsendable-mark))
88     (setq gnus-newsgroup-unsendable
89           (delq article gnus-newsgroup-unsendable))
90     (gnus-summary-mark-article article gnus-unread-mark))
91   (gnus-summary-position-point))
92
93 (defun gnus-draft-edit-message ()
94   "Enter a mail/post buffer to edit and send the draft."
95   (interactive)
96   (let ((article (gnus-summary-article-number)))
97     (gnus-summary-mark-as-read article gnus-canceled-mark)
98     (gnus-draft-setup article gnus-newsgroup-name)
99     (let ((gnus-verbose-backends nil))
100       (gnus-request-expire-articles (list article) gnus-newsgroup-name t))
101     (push
102      `((lambda ()
103          (when (gnus-buffer-exists-p ,gnus-summary-buffer)
104            (save-excursion
105              (set-buffer ,gnus-summary-buffer)
106              (gnus-cache-possibly-remove-article ,article nil nil nil t)))))
107      message-send-actions)))
108
109 (defun gnus-draft-send-message (&optional n)
110   "Send the current draft."
111   (interactive "P")
112   (let ((articles (gnus-summary-work-articles n))
113         article)
114     (while (setq article (pop articles))
115       (gnus-summary-remove-process-mark article)
116       (unless (memq article gnus-newsgroup-unsendable)
117         (gnus-draft-send article gnus-newsgroup-name)
118         (gnus-summary-mark-article article gnus-canceled-mark)))))
119
120 ;;(defun gnus-draft-send (article &optional group)
121 ;;  "Send message ARTICLE."
122 ;;  (gnus-draft-setup article (or group "nndraft:queue"))
123 ;;  (let ((message-syntax-checks 'dont-check-for-anything-just-trust-me)
124 ;;      message-send-hook type method)
125 ;;    ;; We read the meta-information that says how and where
126 ;;    ;; this message is to be sent.
127 ;;    (save-restriction
128 ;;      (message-narrow-to-head)
129 ;;      (when (re-search-forward
130 ;;           (concat "^" (regexp-quote gnus-agent-meta-information-header) ":")
131 ;;           nil t)
132 ;;      (setq type (ignore-errors (read (current-buffer)))
133 ;;            method (ignore-errors (read (current-buffer))))
134 ;;      (message-remove-header gnus-agent-meta-information-header)))
135 ;;    ;; Then we send it.  If we have no meta-information, we just send
136 ;;    ;; it and let Message figure out how.
137 ;;    (when (if type
138 ;;            (let ((message-this-is-news (eq type 'news))
139 ;;                  (message-this-is-mail (eq type 'mail))
140 ;;                  (gnus-post-method method)
141 ;;                  (message-post-method method))
142 ;;              (message-send-and-exit))
143 ;;          (message-send-and-exit))
144 ;;      (let ((gnus-verbose-backends nil))
145 ;;      (gnus-request-expire-articles
146 ;;       (list article) (or group "nndraft:queue") t)))))
147
148 ;; For draft TEST
149 (defvar gnus-draft-send-draft-buffer " *send draft*")
150 (defun gnus-draft-send (article &optional group)
151   "Send message ARTICLE."
152   (gnus-draft-setup article (or group "nndraft:queue"))
153   (let ((message-syntax-checks 'dont-check-for-anything-just-trust-me)
154         message-send-hook type method)
155     ;; We read the meta-information that says how and where
156     ;; this message is to be sent.
157     (save-restriction
158       (message-narrow-to-head)
159       (when (re-search-forward
160              (concat "^" (regexp-quote gnus-agent-meta-information-header) ":")
161              nil t)
162         (setq type (ignore-errors (read (current-buffer)))
163               method (ignore-errors (read (current-buffer))))
164         (message-remove-header gnus-agent-meta-information-header)))
165     ;; Then we send it.  If we have no meta-information, we just send
166     ;; it and let Message figure out how.
167     (if type
168         (gnus-draft-send-draft type method))))
169 ;;
170 (defun gnus-draft-send-draft (type method)
171   (if (eq type 'mail)
172       (progn
173         ;; Send draft via SMTP.
174         (require 'smtp)
175         (let ((recipients (smtp-deduce-address-list
176                            (current-buffer)
177                            (goto-char (point-min)) (search-forward "\n\n"))))
178           (if (not (null recipients))
179               (if (not (smtp-via-smtp user-mail-address recipients (current-buffer)))
180                   (error "Sending failed: SMTP protocol error")
181                 (let ((gnus-verbose-backends nil))
182                   (gnus-request-expire-articles
183                    (list article) (or group "nndraft:queue") t))
184                 (if (get-buffer gnus-draft-send-draft-buffer)
185                     (kill-buffer gnus-draft-send-draft-buffer))))))
186     ;; Send draft via NNTP.
187     (gnus-open-server method)
188     (gnus-request-post method)
189     (if (get-buffer gnus-draft-send-draft-buffer)
190         (kill-buffer gnus-draft-send-draft-buffer))))
191 ;; For draft TEST
192
193 (defun gnus-draft-send-all-messages ()
194   "Send all the sendable drafts."
195   (interactive)
196   (gnus-uu-mark-buffer)
197   (gnus-draft-send-message))
198
199 (defun gnus-group-send-drafts ()
200   "Send all sendable articles from the queue group."
201   (interactive)
202   (gnus-activate-group "nndraft:queue")
203   (save-excursion
204     (let ((articles (nndraft-articles))
205           (unsendable (gnus-uncompress-range
206                        (cdr (assq 'unsend
207                                   (gnus-info-marks
208                                    (gnus-get-info "nndraft:queue"))))))
209           article)
210       (while (setq article (pop articles))
211         (unless (memq article unsendable)
212           (gnus-draft-send article))))))
213
214 ;;; Utility functions
215
216 ;;(defcustom gnus-draft-decoding-function
217 ;;  (function
218 ;;   (lambda ()
219 ;;     (mime-edit-decode-buffer nil)
220 ;;     (eword-decode-header)
221 ;;     ))
222 ;;  "*Function called to decode the message from network representation."
223 ;;  :group 'gnus-agent
224 ;;  :type 'function)
225
226 ;;;!!!If this is byte-compiled, it fails miserably.
227 ;;;!!!This is because `gnus-setup-message' uses uninterned symbols.
228 ;;;!!!This has been fixed in recent versions of Emacs and XEmacs,
229 ;;;!!!but for the time being, we'll just run this tiny function uncompiled.
230
231 ;;(progn
232 ;;(defun gnus-draft-setup (narticle group)
233 ;;  (gnus-setup-message 'forward
234 ;;    (let ((article narticle))
235 ;;      (message-mail)
236 ;;      (erase-buffer)
237 ;;      (if (not (gnus-request-restore-buffer article group))
238 ;;        (error "Couldn't restore the article")
239 ;;      ;; Insert the separator.
240 ;;      (funcall gnus-draft-decoding-function)
241 ;;      (goto-char (point-min))
242 ;;      (search-forward "\n\n")
243 ;;      (forward-char -1)
244 ;;      (insert mail-header-separator)
245 ;;      (forward-line 1)
246 ;;      (message-set-auto-save-file-name))))))
247 ;;
248 ;; For draft TEST
249 (progn
250 (defun gnus-draft-setup (narticle group)
251   (let ((article narticle))
252     (if (not (get-buffer gnus-draft-send-draft-buffer))
253         (get-buffer-create gnus-draft-send-draft-buffer))
254     (set-buffer gnus-draft-send-draft-buffer)
255     (erase-buffer)
256     (if (not (gnus-request-restore-buffer article group))
257         (error "Couldn't restore the article")
258       ))))
259 ;; For draft TEST
260
261 (defun gnus-draft-article-sendable-p (article)
262   "Say whether ARTICLE is sendable."
263   (not (memq article gnus-newsgroup-unsendable)))
264
265 (provide 'gnus-draft)
266
267 ;;; gnus-draft.el ends here