(uncompface): Be verbose when changing `uncompface-use-external'.
[gnus] / lisp / gnus-draft.el
1 ;;; gnus-draft.el --- draft message support for Gnus
2 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
3 ;;        Free Software Foundation, Inc.
4
5 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
6 ;; Keywords: news
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     "e"  gnus-draft-edit-message ;; Use `B w' for `gnus-summary-edit-article'
50     "De" gnus-draft-edit-message
51     "Ds" gnus-draft-send-message
52     "DS" gnus-draft-send-all-messages))
53
54 (defun gnus-draft-make-menu-bar ()
55   (unless (boundp 'gnus-draft-menu)
56     (easy-menu-define
57      gnus-draft-menu gnus-draft-mode-map ""
58      '("Drafts"
59        ["Toggle whether to send" gnus-draft-toggle-sending t]
60        ["Edit" gnus-draft-edit-message t]
61        ["Send selected message(s)" gnus-draft-send-message t]
62        ["Send all messages" gnus-draft-send-all-messages t]
63        ["Delete draft" gnus-summary-delete-article t]))))
64
65 (defun gnus-draft-mode (&optional arg)
66   "Minor mode for providing a draft summary buffers.
67
68 \\{gnus-draft-mode-map}"
69   (interactive "P")
70   (when (eq major-mode 'gnus-summary-mode)
71     (when (set (make-local-variable 'gnus-draft-mode)
72                (if (null arg) (not gnus-draft-mode)
73                  (> (prefix-numeric-value arg) 0)))
74       ;; Set up the menu.
75       (when (gnus-visual-p 'draft-menu 'menu)
76         (gnus-draft-make-menu-bar))
77       (add-minor-mode 'gnus-draft-mode " Draft" gnus-draft-mode-map)
78       (mml-mode)
79       (gnus-run-hooks 'gnus-draft-mode-hook))))
80
81 ;;; Commands
82
83 (defun gnus-draft-toggle-sending (article)
84   "Toggle whether to send an article or not."
85   (interactive (list (gnus-summary-article-number)))
86   (if (gnus-draft-article-sendable-p article)
87       (progn
88         (push article gnus-newsgroup-unsendable)
89         (gnus-summary-mark-article article gnus-unsendable-mark))
90     (setq gnus-newsgroup-unsendable
91           (delq article gnus-newsgroup-unsendable))
92     (gnus-summary-mark-article article gnus-unread-mark))
93   (gnus-summary-position-point))
94
95 (defun gnus-draft-edit-message ()
96   "Enter a mail/post buffer to edit and send the draft."
97   (interactive)
98   (let ((article (gnus-summary-article-number))
99         (group gnus-newsgroup-name))
100     (gnus-summary-mark-as-read article gnus-canceled-mark)
101     (gnus-draft-setup article group t)
102     (set-buffer-modified-p t)
103     (save-excursion
104       (save-restriction
105         (message-narrow-to-headers)
106         (message-remove-header "date")))
107     (save-buffer)
108     (let ((gnus-verbose-backends nil))
109       (gnus-request-expire-articles (list article) group t))
110     (push
111      `((lambda ()
112          (when (gnus-buffer-exists-p ,gnus-summary-buffer)
113            (save-excursion
114              (set-buffer ,gnus-summary-buffer)
115              (gnus-cache-possibly-remove-article ,article nil nil nil t)))))
116      message-send-actions)))
117
118 (defun gnus-draft-send-message (&optional n)
119   "Send the current draft."
120   (interactive "P")
121   (let* ((articles (gnus-summary-work-articles n))
122          (total (length articles))
123          article)
124     (while (setq article (pop articles))
125       (gnus-summary-remove-process-mark article)
126       (unless (memq article gnus-newsgroup-unsendable)
127         (let ((message-sending-message
128                (format "Sending message %d of %d..."
129                        (- total (length articles)) total)))
130           (gnus-draft-send article gnus-newsgroup-name t))
131         (gnus-summary-mark-article article gnus-canceled-mark)))))
132
133 (defun gnus-draft-send (article &optional group interactive)
134   "Send message ARTICLE."
135   (let* ((is-queue (or (not group)
136                        (equal group "nndraft:queue")))
137          (message-syntax-checks (if interactive message-syntax-checks
138                                   'dont-check-for-anything-just-trust-me))
139          (message-hidden-headers nil)
140          (message-inhibit-body-encoding (or is-queue
141                                             message-inhibit-body-encoding))
142          (message-send-hook (and (not is-queue)
143                                  message-send-hook))
144          (message-setup-hook (and (not is-queue)
145                                   message-setup-hook))
146          (gnus-agent-queue-mail (and (not is-queue)
147                                      gnus-agent-queue-mail))
148          type method move-to)
149     (gnus-draft-setup article (or group "nndraft:queue"))
150     ;; We read the meta-information that says how and where
151     ;; this message is to be sent.
152     (save-restriction
153       (message-narrow-to-head)
154       (when (re-search-forward
155              (concat "^" (regexp-quote gnus-agent-target-move-group-header)
156                      ":") nil t)
157         (skip-syntax-forward "-")
158         (setq move-to (buffer-substring (point) (point-at-eol)))
159         (message-remove-header gnus-agent-target-move-group-header))
160       (goto-char (point-min))
161       (when (re-search-forward
162              (concat "^" (regexp-quote gnus-agent-meta-information-header) ":")
163              nil t)
164         (setq type (ignore-errors (read (current-buffer)))
165               method (ignore-errors (read (current-buffer))))
166         (message-remove-header gnus-agent-meta-information-header)))
167     ;; Let Agent restore any GCC lines and have message.el perform them.
168     (gnus-agent-restore-gcc)
169     ;; Then we send it.  If we have no meta-information, we just send
170     ;; it and let Message figure out how.
171     (when (and (or (null method)
172                    (gnus-server-opened method)
173                    (gnus-open-server method))
174                (if type
175                    (let ((message-this-is-news (eq type 'news))
176                          (message-this-is-mail (eq type 'mail))
177                          (gnus-post-method method)
178                          (message-post-method method))
179                      (if move-to
180                          (gnus-inews-do-gcc move-to)
181                        (message-send-and-exit)))
182                  (if move-to
183                      (gnus-inews-do-gcc move-to)
184                    (message-send-and-exit))))
185       (let ((gnus-verbose-backends nil))
186         (gnus-request-expire-articles
187          (list article) (or group "nndraft:queue") t)))))
188
189 (defun gnus-draft-send-all-messages ()
190   "Send all the sendable drafts."
191   (interactive)
192   (when (or
193          gnus-expert-user
194          (gnus-y-or-n-p
195           "Send all drafts? "))
196     (gnus-uu-mark-buffer)
197     (gnus-draft-send-message)))
198
199 (defun gnus-group-send-queue ()
200   "Send all sendable articles from the queue group."
201   (interactive)
202   (when (or gnus-plugged
203             (not gnus-agent-prompt-send-queue)
204             (gnus-y-or-n-p "Gnus is unplugged; really send queue? "))
205     (gnus-activate-group "nndraft:queue")
206     (save-excursion
207       (let* ((articles (nndraft-articles))
208              (unsendable (gnus-uncompress-range
209                           (cdr (assq 'unsend
210                                      (gnus-info-marks
211                                       (gnus-get-info "nndraft:queue"))))))
212              (gnus-posting-styles nil)
213              (total (length articles))
214              article)
215         (while (setq article (pop articles))
216           (unless (memq article unsendable)
217             (let ((message-sending-message
218                    (format "Sending message %d of %d..."
219                            (- total (length articles)) total)))
220               (gnus-draft-send article))))))))
221
222 ;;;###autoload
223 (defun gnus-draft-reminder ()
224   "Reminder user if there are unsent drafts."
225   (interactive)
226   (if (gnus-alive-p)
227       (let (active)
228         (catch 'continue
229           (dolist (group '("nndraft:drafts" "nndraft:queue"))
230             (setq active (gnus-activate-group group))
231             (if (and active (>= (cdr active) (car active)))
232                 (if (y-or-n-p "There are unsent drafts.  Confirm to exit? ")
233                     (throw 'continue t)
234                   (error "Stop!"))))))))
235
236 ;;; Utility functions
237
238 ;;;!!!If this is byte-compiled, it fails miserably.
239 ;;;!!!This is because `gnus-setup-message' uses uninterned symbols.
240 ;;;!!!This has been fixed in recent versions of Emacs and XEmacs,
241 ;;;!!!but for the time being, we'll just run this tiny function uncompiled.
242
243 (progn
244   (defun gnus-draft-setup (narticle group &optional restore)
245     (let (ga)
246       (gnus-setup-message 'forward
247         (let ((article narticle))
248           (message-mail)
249           (erase-buffer)
250           (if (not (gnus-request-restore-buffer article group))
251               (error "Couldn't restore the article")
252             (when (and restore
253                        (equal group "nndraft:queue"))
254               (mime-to-mml))
255             ;; Insert the separator.
256             (goto-char (point-min))
257             (search-forward "\n\n")
258             (forward-char -1)
259             (insert mail-header-separator)
260             (forward-line 1)
261             (setq ga (message-fetch-field gnus-draft-meta-information-header))
262             (message-set-auto-save-file-name))))
263       (gnus-backlog-remove-article group narticle)
264       (when (and ga
265                  (ignore-errors (setq ga (car (read-from-string ga)))))
266         (setq gnus-newsgroup-name
267               (if (equal (car ga) "") nil (car ga)))
268         (gnus-configure-posting-styles)
269         (setq gnus-message-group-art (cons gnus-newsgroup-name (cadr ga)))
270         (setq message-post-method
271               `(lambda (arg)
272                  (gnus-post-method arg ,(car ga))))
273         (unless (equal (cadr ga) "")
274           (message-add-action
275            `(progn
276               (gnus-add-mark ,(car ga) 'replied ,(cadr ga))
277               (gnus-request-set-mark ,(car ga) (list (list (list ,(cadr ga))
278                                                            'add '(reply)))))
279            'send))))))
280
281 (defun gnus-draft-article-sendable-p (article)
282   "Say whether ARTICLE is sendable."
283   (not (memq article gnus-newsgroup-unsendable)))
284
285 (provide 'gnus-draft)
286
287 ;;; gnus-draft.el ends here