(gnus-point-at-bol, gnus-point-at-eol): Remove.
[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       (gnus-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 ((message-syntax-checks (if interactive message-syntax-checks
136                                  'dont-check-for-anything-just-trust-me))
137         (message-hidden-headers nil)
138         (message-inhibit-body-encoding (or (not group)
139                                            (equal group "nndraft:queue")
140                                            message-inhibit-body-encoding))
141         (message-send-hook (and group (not (equal group "nndraft:queue"))
142                                 message-send-hook))
143         (message-setup-hook (and group (not (equal group "nndraft:queue"))
144                                  message-setup-hook))
145         type method move-to)
146     (gnus-draft-setup article (or group "nndraft:queue"))
147     ;; We read the meta-information that says how and where
148     ;; this message is to be sent.
149     (save-restriction
150       (message-narrow-to-head)
151       (when (re-search-forward
152              (concat "^" (regexp-quote gnus-agent-target-move-group-header)
153                      ":") nil t)
154         (skip-syntax-forward "-")
155         (setq move-to (buffer-substring (point) (point-at-eol)))
156         (message-remove-header gnus-agent-target-move-group-header))
157       (goto-char (point-min))
158       (when (re-search-forward
159              (concat "^" (regexp-quote gnus-agent-meta-information-header) ":")
160              nil t)
161         (setq type (ignore-errors (read (current-buffer)))
162               method (ignore-errors (read (current-buffer))))
163         (message-remove-header gnus-agent-meta-information-header)))
164     ;; Let Agent restore any GCC lines and have message.el perform them.
165     (gnus-agent-restore-gcc)
166     ;; Then we send it.  If we have no meta-information, we just send
167     ;; it and let Message figure out how.
168     (when (and (or (null method)
169                    (gnus-server-opened method)
170                    (gnus-open-server method))
171                (if type
172                    (let ((message-this-is-news (eq type 'news))
173                          (message-this-is-mail (eq type 'mail))
174                          (gnus-post-method method)
175                          (message-post-method method))
176                      (if move-to
177                          (gnus-inews-do-gcc move-to)
178                        (message-send-and-exit)))
179                  (if move-to
180                      (gnus-inews-do-gcc move-to)
181                    (message-send-and-exit))))
182       (let ((gnus-verbose-backends nil))
183         (gnus-request-expire-articles
184          (list article) (or group "nndraft:queue") t)))))
185
186 (defun gnus-draft-send-all-messages ()
187   "Send all the sendable drafts."
188   (interactive)
189   (when (or
190          gnus-expert-user
191          (gnus-y-or-n-p
192           "Send all drafts? "))
193     (gnus-uu-mark-buffer)
194     (gnus-draft-send-message)))
195
196 (defun gnus-group-send-queue ()
197   "Send all sendable articles from the queue group."
198   (interactive)
199   (gnus-activate-group "nndraft:queue")
200   (save-excursion
201     (let* ((articles (nndraft-articles))
202            (unsendable (gnus-uncompress-range
203                         (cdr (assq 'unsend
204                                    (gnus-info-marks
205                                     (gnus-get-info "nndraft:queue"))))))
206            (gnus-posting-styles nil)
207            (total (length articles))
208            article)
209       (while (setq article (pop articles))
210         (unless (memq article unsendable)
211           (let ((message-sending-message
212                  (format "Sending message %d of %d..."
213                          (- total (length articles)) total)))
214             (gnus-draft-send article)))))))
215
216 ;;;###autoload
217 (defun gnus-draft-reminder ()
218   "Reminder user if there are unsent drafts."
219   (interactive)
220   (if (gnus-alive-p)
221       (let (active)
222         (catch 'continue
223           (dolist (group '("nndraft:drafts" "nndraft:queue"))
224             (setq active (gnus-activate-group group))
225             (if (and active (>= (cdr active) (car active)))
226                 (if (y-or-n-p "There are unsent drafts.  Confirm to exit? ")
227                     (throw 'continue t)
228                   (error "Stop!"))))))))
229
230 ;;; Utility functions
231
232 ;;;!!!If this is byte-compiled, it fails miserably.
233 ;;;!!!This is because `gnus-setup-message' uses uninterned symbols.
234 ;;;!!!This has been fixed in recent versions of Emacs and XEmacs,
235 ;;;!!!but for the time being, we'll just run this tiny function uncompiled.
236
237 (progn
238   (defun gnus-draft-setup (narticle group &optional restore)
239     (let (ga)
240       (gnus-setup-message 'forward
241         (let ((article narticle))
242           (message-mail)
243           (erase-buffer)
244           (if (not (gnus-request-restore-buffer article group))
245               (error "Couldn't restore the article")
246             (when (and restore
247                        (equal group "nndraft:queue"))
248               (mime-to-mml))
249             ;; Insert the separator.
250             (goto-char (point-min))
251             (search-forward "\n\n")
252             (forward-char -1)
253             (insert mail-header-separator)
254             (forward-line 1)
255             (setq ga (message-fetch-field gnus-draft-meta-information-header))
256             (message-set-auto-save-file-name))))
257       (gnus-backlog-remove-article group narticle)
258       (when (and ga
259                  (ignore-errors (setq ga (car (read-from-string ga)))))
260         (setq gnus-newsgroup-name
261               (if (equal (car ga) "") nil (car ga)))
262         (gnus-configure-posting-styles)
263         (setq gnus-message-group-art (cons gnus-newsgroup-name (cadr ga)))
264         (setq message-post-method
265               `(lambda (arg)
266                  (gnus-post-method arg ,(car ga))))
267         (unless (equal (cadr ga) "")
268           (message-add-action
269            `(progn
270               (gnus-add-mark ,(car ga) 'replied ,(cadr ga))
271               (gnus-request-set-mark ,(car ga) (list (list (list ,(cadr ga))
272                                                            'add '(reply)))))
273            'send))))))
274
275 (defun gnus-draft-article-sendable-p (article)
276   "Say whether ARTICLE is sendable."
277   (not (memq article gnus-newsgroup-unsendable)))
278
279 (provide 'gnus-draft)
280
281 ;;; gnus-draft.el ends here