d4995b209cca3bb2d3c49991f1fa083534777e29
[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     (push
100      `((lambda ()
101          (when (gnus-buffer-exists-p ,gnus-summary-buffer)
102            (save-excursion
103              (set-buffer ,gnus-summary-buffer)
104              (gnus-cache-possibly-remove-article ,article nil nil nil t)))))
105      message-send-actions)))
106
107 (defun gnus-draft-send-message (&optional n)
108   "Send the current draft."
109   (interactive "P")
110   (let ((articles (gnus-summary-work-articles n))
111         article)
112     (while (setq article (pop articles))
113       (gnus-summary-remove-process-mark article)
114       (unless (memq article gnus-newsgroup-unsendable)
115         (gnus-draft-send article gnus-newsgroup-name)
116         (gnus-summary-mark-article article gnus-canceled-mark)))))
117
118 ;;(defun gnus-draft-send (article &optional group)
119 ;;  "Send message ARTICLE."
120 ;;  (gnus-draft-setup article (or group "nndraft:queue"))
121 ;;  (let ((message-syntax-checks 'dont-check-for-anything-just-trust-me)
122 ;;      message-send-hook type method)
123 ;;    ;; We read the meta-information that says how and where
124 ;;    ;; this message is to be sent.
125 ;;    (save-restriction
126 ;;      (message-narrow-to-head)
127 ;;      (when (re-search-forward
128 ;;           (concat "^" (regexp-quote gnus-agent-meta-information-header) ":")
129 ;;           nil t)
130 ;;      (setq type (ignore-errors (read (current-buffer)))
131 ;;            method (ignore-errors (read (current-buffer))))
132 ;;      (message-remove-header gnus-agent-meta-information-header)))
133 ;;    ;; Then we send it.  If we have no meta-information, we just send
134 ;;    ;; it and let Message figure out how.
135 ;;    (when (if type
136 ;;            (let ((message-this-is-news (eq type 'news))
137 ;;                  (message-this-is-mail (eq type 'mail))
138 ;;                  (gnus-post-method method)
139 ;;                  (message-post-method method))
140 ;;              (message-send-and-exit))
141 ;;          (message-send-and-exit))
142 ;;      (let ((gnus-verbose-backends nil))
143 ;;      (gnus-request-expire-articles
144 ;;       (list article) (or group "nndraft:queue") t)))))
145
146 ;; For draft TEST
147 (defvar gnus-draft-send-draft-buffer " *send draft*")
148 (defun gnus-draft-send (article &optional group)
149   "Send message ARTICLE."
150   (gnus-draft-setup article (or group "nndraft:queue"))
151   (let ((message-syntax-checks 'dont-check-for-anything-just-trust-me)
152         message-send-hook type method)
153     ;; We read the meta-information that says how and where
154     ;; this message is to be sent.
155     (save-restriction
156       (message-narrow-to-head)
157       (when (re-search-forward
158              (concat "^" (regexp-quote gnus-agent-meta-information-header) ":")
159              nil t)
160         (setq type (ignore-errors (read (current-buffer)))
161               method (ignore-errors (read (current-buffer))))
162         (message-remove-header gnus-agent-meta-information-header)))
163     ;; Then we send it.  If we have no meta-information, we just send
164     ;; it and let Message figure out how.
165     (gnus-draft-send-draft type method)))
166 ;;
167 (defun gnus-draft-send-draft (type method)
168   (if (eq type 'mail)
169       (progn
170         ;; Send draft via SMTP.
171         (require 'smtp)
172         (let ((recipients (smtp-deduce-address-list
173                            (current-buffer)
174                            (goto-char (point-min)) (search-forward "\n\n"))))
175           (if (not (null recipients))
176               (if (not (smtp-via-smtp user-mail-address recipients (current-buffer)))
177                   (error "Sending failed: SMTP protocol error")))))
178     ;; Send draft via NNTP.
179     (gnus-open-server method)
180     (gnus-request-post method))
181   (if (get-buffer gnus-draft-send-draft-buffer)
182       (kill-buffer gnus-draft-send-draft-buffer)))
183 ;; For draft TEST
184
185 (defun gnus-draft-send-all-messages ()
186   "Send all the sendable drafts."
187   (interactive)
188   (gnus-uu-mark-buffer)
189   (gnus-draft-send-message))
190
191 (defun gnus-group-send-drafts ()
192   "Send all sendable articles from the queue group."
193   (interactive)
194   (gnus-activate-group "nndraft:queue")
195   (save-excursion
196     (let ((articles (nndraft-articles))
197           (unsendable (gnus-uncompress-range
198                        (cdr (assq 'unsend
199                                   (gnus-info-marks
200                                    (gnus-get-info "nndraft:queue"))))))
201           article)
202       (while (setq article (pop articles))
203         (unless (memq article unsendable)
204           (gnus-draft-send article))))))
205
206 ;;; Utility functions
207
208 ;;(defcustom gnus-draft-decoding-function
209 ;;  (function
210 ;;   (lambda ()
211 ;;     (mime-edit-decode-buffer nil)
212 ;;     (eword-decode-header)
213 ;;     ))
214 ;;  "*Function called to decode the message from network representation."
215 ;;  :group 'gnus-agent
216 ;;  :type 'function)
217
218 ;;;!!!If this is byte-compiled, it fails miserably.
219 ;;;!!!This is because `gnus-setup-message' uses uninterned symbols.
220 ;;;!!!This has been fixed in recent versions of Emacs and XEmacs,
221 ;;;!!!but for the time being, we'll just run this tiny function uncompiled.
222
223 ;;(progn
224 ;;(defun gnus-draft-setup (narticle group)
225 ;;  (gnus-setup-message 'forward
226 ;;    (let ((article narticle))
227 ;;      (message-mail)
228 ;;      (erase-buffer)
229 ;;      (if (not (gnus-request-restore-buffer article group))
230 ;;        (error "Couldn't restore the article")
231 ;;      ;; Insert the separator.
232 ;;      (funcall gnus-draft-decoding-function)
233 ;;      (goto-char (point-min))
234 ;;      (search-forward "\n\n")
235 ;;      (forward-char -1)
236 ;;      (insert mail-header-separator)
237 ;;      (forward-line 1)
238 ;;      (message-set-auto-save-file-name))))))
239 ;;
240 ;; For draft TEST
241 (progn
242 (defun gnus-draft-setup (narticle group)
243   (let ((article narticle))
244     (if (not (get-buffer gnus-draft-send-draft-buffer))
245         (get-buffer-create gnus-draft-send-draft-buffer))
246     (set-buffer gnus-draft-send-draft-buffer)
247     (erase-buffer)
248     (if (not (gnus-request-restore-buffer article group))
249         (error "Couldn't restore the article")
250       ))))
251 ;; For draft TEST
252
253 (defun gnus-draft-article-sendable-p (article)
254   "Say whether ARTICLE is sendable."
255   (not (memq article gnus-newsgroup-unsendable)))
256
257 (provide 'gnus-draft)
258
259 ;;; gnus-draft.el ends here