Merge from gnus--rel--5.10
[gnus] / lisp / gnus-draft.el
1 ;;; gnus-draft.el --- draft message support for Gnus
2
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;;   2005, 2006, 2007 Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 (require 'gnus)
31 (require 'gnus-sum)
32 (require 'message)
33 (require 'gnus-msg)
34 (require 'nndraft)
35 (require 'gnus-agent)
36 (eval-when-compile (require 'cl))
37
38 ;;; Draft minor mode
39
40 (defvar gnus-draft-mode nil
41   "Minor mode for providing a draft summary buffers.")
42
43 (defvar gnus-draft-mode-map nil)
44
45 (unless gnus-draft-mode-map
46   (setq gnus-draft-mode-map (make-sparse-keymap))
47
48   (gnus-define-keys gnus-draft-mode-map
49     "Dt" gnus-draft-toggle-sending
50     "e"  gnus-draft-edit-message ;; Use `B w' for `gnus-summary-edit-article'
51     "De" gnus-draft-edit-message
52     "Ds" gnus-draft-send-message
53     "DS" gnus-draft-send-all-messages))
54
55 (defun gnus-draft-make-menu-bar ()
56   (unless (boundp 'gnus-draft-menu)
57     (easy-menu-define
58      gnus-draft-menu gnus-draft-mode-map ""
59      '("Drafts"
60        ["Toggle whether to send" gnus-draft-toggle-sending t]
61        ["Edit" gnus-draft-edit-message t]
62        ["Send selected message(s)" gnus-draft-send-message t]
63        ["Send all messages" gnus-draft-send-all-messages t]
64        ["Delete draft" gnus-summary-delete-article t]))))
65
66 (defun gnus-draft-mode (&optional arg)
67   "Minor mode for providing a draft summary buffers.
68
69 \\{gnus-draft-mode-map}"
70   (interactive "P")
71   (when (eq major-mode 'gnus-summary-mode)
72     (when (set (make-local-variable 'gnus-draft-mode)
73                (if (null arg) (not gnus-draft-mode)
74                  (> (prefix-numeric-value arg) 0)))
75       ;; Set up the menu.
76       (when (gnus-visual-p 'draft-menu 'menu)
77         (gnus-draft-make-menu-bar))
78       (add-minor-mode 'gnus-draft-mode " Draft" gnus-draft-mode-map)
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-draft-check-draft-articles (list article))
101     (gnus-summary-mark-as-read article gnus-canceled-mark)
102     (gnus-draft-setup article group t)
103     (set-buffer-modified-p t)
104     (save-excursion
105       (save-restriction
106         (message-narrow-to-headers)
107         (message-remove-header "date")))
108     (let ((message-draft-headers
109            (delq 'Date (copy-sequence message-draft-headers))))
110       (save-buffer))
111     (let ((gnus-verbose-backends nil))
112       (gnus-request-expire-articles (list article) group t))
113     (push
114      `((lambda ()
115          (when (gnus-buffer-exists-p ,gnus-summary-buffer)
116            (save-excursion
117              (set-buffer ,gnus-summary-buffer)
118              (gnus-cache-possibly-remove-article ,article nil nil nil t)))))
119      message-send-actions)))
120
121 (defun gnus-draft-send-message (&optional n)
122   "Send the current draft."
123   (interactive "P")
124   (let* ((articles (gnus-summary-work-articles n))
125          (total (length articles))
126          article)
127     (gnus-draft-check-draft-articles articles)
128     (while (setq article (pop articles))
129       (gnus-summary-remove-process-mark article)
130       (unless (memq article gnus-newsgroup-unsendable)
131         (let ((message-sending-message
132                (format "Sending message %d of %d..."
133                        (- total (length articles)) total)))
134           (gnus-draft-send article gnus-newsgroup-name t))
135         (gnus-summary-mark-article article gnus-canceled-mark)))))
136
137 (defun gnus-draft-send (article &optional group interactive)
138   "Send message ARTICLE."
139   (let* ((is-queue (or (not group)
140                        (equal group "nndraft:queue")))
141          (message-syntax-checks (if interactive message-syntax-checks
142                                   'dont-check-for-anything-just-trust-me))
143          (message-hidden-headers nil)
144          (message-inhibit-body-encoding (or is-queue
145                                             message-inhibit-body-encoding))
146          (message-send-hook (and (not is-queue)
147                                  message-send-hook))
148          (message-setup-hook (and (not is-queue)
149                                   message-setup-hook))
150          (message-signature (and (not is-queue)
151                                  message-signature))
152          (gnus-agent-queue-mail (and (not is-queue)
153                                      gnus-agent-queue-mail))
154          (rfc2047-encode-encoded-words nil)
155          type method move-to)
156     (gnus-draft-setup article (or group "nndraft:queue"))
157     ;; We read the meta-information that says how and where
158     ;; this message is to be sent.
159     (save-restriction
160       (message-narrow-to-headers)
161       (when (re-search-forward
162              (concat "^" (regexp-quote gnus-agent-target-move-group-header)
163                      ":") nil t)
164         (skip-syntax-forward "-")
165         (setq move-to (buffer-substring (point) (point-at-eol)))
166         (message-remove-header gnus-agent-target-move-group-header))
167       (goto-char (point-min))
168       (when (re-search-forward
169              (concat "^" (regexp-quote gnus-agent-meta-information-header) ":")
170              nil t)
171         (setq type (ignore-errors (read (current-buffer)))
172               method (ignore-errors (read (current-buffer))))
173         (message-remove-header gnus-agent-meta-information-header)))
174     ;; Let Agent restore any GCC lines and have message.el perform them.
175     (gnus-agent-restore-gcc)
176     ;; Then we send it.  If we have no meta-information, we just send
177     ;; it and let Message figure out how.
178     (when (and (or (null method)
179                    (gnus-server-opened method)
180                    (gnus-open-server method))
181                (if type
182                    (let ((message-this-is-news (eq type 'news))
183                          (message-this-is-mail (eq type 'mail))
184                          (gnus-post-method method)
185                          (message-post-method method))
186                      (if move-to
187                          (gnus-inews-do-gcc move-to)
188                        (message-send-and-exit)))
189                  (if move-to
190                      (gnus-inews-do-gcc move-to)
191                    (message-send-and-exit))))
192       (let ((gnus-verbose-backends nil))
193         (gnus-request-expire-articles
194          (list article) (or group "nndraft:queue") t)))))
195
196 (defun gnus-draft-send-all-messages ()
197   "Send all the sendable drafts."
198   (interactive)
199   (when (or
200          gnus-expert-user
201          (gnus-y-or-n-p
202           "Send all drafts? "))
203     (gnus-uu-mark-buffer)
204     (gnus-draft-send-message)))
205
206 (defun gnus-group-send-queue ()
207   "Send all sendable articles from the queue group."
208   (interactive)
209   (when (or gnus-plugged
210             (not gnus-agent-prompt-send-queue)
211             (gnus-y-or-n-p "Gnus is unplugged; really send queue? "))
212     (gnus-activate-group "nndraft:queue")
213     (save-excursion
214       (let* ((articles (nndraft-articles))
215              (unsendable (gnus-uncompress-range
216                           (cdr (assq 'unsend
217                                      (gnus-info-marks
218                                       (gnus-get-info "nndraft:queue"))))))
219              (gnus-posting-styles nil)
220              (total (length articles))
221              article)
222         (while (setq article (pop articles))
223           (unless (memq article unsendable)
224             (let ((message-sending-message
225                    (format "Sending message %d of %d..."
226                            (- total (length articles)) total)))
227               (gnus-draft-send article))))))))
228
229 ;;;###autoload
230 (defun gnus-draft-reminder ()
231   "Reminder user if there are unsent drafts."
232   (interactive)
233   (if (gnus-alive-p)
234       (let (active)
235         (catch 'continue
236           (dolist (group '("nndraft:drafts" "nndraft:queue"))
237             (setq active (gnus-activate-group group))
238             (if (and active (>= (cdr active) (car active)))
239                 (if (y-or-n-p "There are unsent drafts.  Confirm to exit? ")
240                     (throw 'continue t)
241                   (error "Stop!"))))))))
242
243 ;;; Utility functions
244
245 ;;;!!!If this is byte-compiled, it fails miserably.
246 ;;;!!!This is because `gnus-setup-message' uses uninterned symbols.
247 ;;;!!!This has been fixed in recent versions of Emacs and XEmacs,
248 ;;;!!!but for the time being, we'll just run this tiny function uncompiled.
249
250 (progn
251   (defun gnus-draft-setup (narticle group &optional restore)
252     (let (ga)
253       (gnus-setup-message 'forward
254         (let ((article narticle))
255           (message-mail)
256           (erase-buffer)
257           (if (not (gnus-request-restore-buffer article group))
258               (error "Couldn't restore the article")
259             (when (and restore
260                        (equal group "nndraft:queue"))
261               (mime-to-mml))
262             ;; Insert the separator.
263             (goto-char (point-min))
264             (search-forward "\n\n")
265             (forward-char -1)
266             (save-restriction
267               (narrow-to-region (point-min) (point))
268               (setq ga
269                     (message-fetch-field gnus-draft-meta-information-header)))
270             (insert mail-header-separator)
271             (forward-line 1)
272             (message-set-auto-save-file-name))))
273       (gnus-backlog-remove-article group narticle)
274       (when (and ga
275                  (ignore-errors (setq ga (car (read-from-string ga)))))
276         (setq gnus-newsgroup-name
277               (if (equal (car ga) "") nil (car ga)))
278         (gnus-configure-posting-styles)
279         (setq gnus-message-group-art (cons gnus-newsgroup-name (cadr ga)))
280         (setq message-post-method
281               `(lambda (arg)
282                  (gnus-post-method arg ,(car ga))))
283         (unless (equal (cadr ga) "")
284           (dolist (article (cdr ga))
285             (message-add-action
286              `(progn
287                 (gnus-add-mark ,(car ga) 'replied ,article)
288                 (gnus-request-set-mark ,(car ga) (list (list (list ,article)
289                                                              'add '(reply)))))
290              'send)))))))
291
292 (defun gnus-draft-article-sendable-p (article)
293   "Say whether ARTICLE is sendable."
294   (not (memq article gnus-newsgroup-unsendable)))
295
296 (defun gnus-draft-check-draft-articles (articles)
297   "Check whether the draft articles ARTICLES are under edit."
298   (when (equal gnus-newsgroup-name "nndraft:drafts")
299     (let ((buffers (buffer-list))
300           file buffs buff)
301       (save-current-buffer
302         (while (and articles
303                     (not buff))
304           (setq file (nndraft-article-filename (pop articles))
305                 buffs buffers)
306           (while buffs
307             (set-buffer (setq buff (pop buffs)))
308             (if (and buffer-file-name
309                      (string-equal (file-truename buffer-file-name)
310                                    (file-truename file))
311                      (buffer-modified-p))
312                 (setq buffs nil)
313               (setq buff nil)))))
314       (when buff
315         (let* ((window (get-buffer-window buff t))
316                (frame (and window (window-frame window))))
317           (if frame
318               (gnus-select-frame-set-input-focus frame)
319             (pop-to-buffer buff t)))
320         (error "The draft %s is under edit" file)))))
321
322 (provide 'gnus-draft)
323
324 ;;; arch-tag: 3d92af58-8c97-4a5c-9db4-a98e85198022
325 ;;; gnus-draft.el ends here