2001-02-07 Yuuichi Teranishi <teranisi@gohome.org>
[elisp/wanderlust.git] / wl / wl-draft.el
1 ;;; wl-draft.el -- Message draft mode for Wanderlust.
2
3 ;; Copyright (C) 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
4 ;; Copyright (C) 1998,1999,2000 Masahiro MURATA <muse@ba2.so-net.ne.jp>
5
6 ;; Author: Yuuichi Teranishi <teranisi@gohome.org>
7 ;;      Masahiro MURATA <muse@ba2.so-net.ne.jp>
8 ;; Keywords: mail, net news
9
10 ;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
11
12 ;; This program is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16 ;;
17 ;; This program is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21 ;;
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25 ;; Boston, MA 02111-1307, USA.
26 ;;
27
28 ;;; Commentary:
29 ;; 
30
31 ;;; Code:
32 ;; 
33
34 (require 'sendmail)
35 (require 'wl-template)
36 (require 'emu)
37 (condition-case nil (require 'timezone) (error nil))
38 (require 'std11)
39 (require 'wl-vars)
40
41 (defvar x-face-add-x-face-version-header)
42 (defvar mail-reply-buffer)
43 (defvar mail-from-style)
44
45 (eval-when-compile
46   (require 'elmo-pop3)
47   (defalias-maybe 'x-face-insert 'ignore)
48   (defalias-maybe 'x-face-insert-version-header 'ignore)
49   (defalias-maybe 'wl-init 'ignore)
50   (defalias-maybe 'wl-draft-mode 'ignore))
51
52 (defvar wl-draft-buf-name "Draft")
53 (defvar wl-caesar-region-func nil)
54 (defvar wl-draft-cite-func 'wl-default-draft-cite)
55 (defvar wl-draft-buffer-file-name nil)
56 (defvar wl-draft-field-completion-list nil)
57 (defvar wl-draft-verbose-send t)
58 (defvar wl-draft-verbose-msg nil)
59 (defvar wl-draft-queue-flushing nil)
60 (defvar wl-draft-config-variables nil)
61 (defvar wl-draft-config-exec-flag t)
62 (defvar wl-draft-buffer-cur-summary-buffer nil)
63 (defvar wl-draft-clone-local-variable-regexp "^\\(wl\\|mime\\)")
64 (defvar wl-draft-sendlog-filename "sendlog")
65 (defvar wl-draft-queue-save-filename "qinfo")
66 (defvar wl-draft-config-save-filename "config")
67 (defvar wl-draft-queue-flush-send-func 'wl-draft-dispatch-message)
68 (defvar wl-sent-message-via nil)
69 (defvar wl-sent-message-modified nil)
70 (defvar wl-draft-fcc-list nil)
71 (defvar wl-draft-reedit nil)
72 (defvar wl-draft-reply-buffer nil)
73 (defvar wl-draft-forward nil)
74
75 (defvar wl-draft-config-sub-func-alist
76   '((body        . wl-draft-config-sub-body)
77     (top         . wl-draft-config-sub-top)
78     (bottom      . wl-draft-config-sub-bottom)
79     (header      . wl-draft-config-sub-header)
80     (body-file   . wl-draft-config-sub-body-file)
81     (top-file    . wl-draft-config-sub-top-file)
82     (bottom-file . wl-draft-config-sub-bottom-file)
83     (header-file . wl-draft-config-sub-header-file)
84     (template    . wl-draft-config-sub-template)
85     (x-face      . wl-draft-config-sub-x-face)))
86
87 (make-variable-buffer-local 'wl-draft-buffer-file-name)
88 (make-variable-buffer-local 'wl-draft-buffer-cur-summary-buffer)
89 (make-variable-buffer-local 'wl-draft-config-variables)
90 (make-variable-buffer-local 'wl-draft-config-exec-flag)
91 (make-variable-buffer-local 'wl-sent-message-via)
92 (make-variable-buffer-local 'wl-draft-fcc-list)
93 (make-variable-buffer-local 'wl-draft-reply-buffer)
94
95 (defmacro wl-smtp-extension-bind (&rest body)
96   (` (let* ((smtp-sasl-mechanisms
97              (if wl-smtp-authenticate-type
98                  (mapcar 'upcase
99                          (if (listp wl-smtp-authenticate-type)
100                              wl-smtp-authenticate-type
101                            (list wl-smtp-authenticate-type)))))
102             (smtp-use-sasl (and smtp-sasl-mechanisms t))
103             (smtp-use-starttls wl-smtp-connection-type)
104             smtp-sasl-user-name smtp-sasl-properties sasl-read-passphrase)
105        (if (and (string= (car smtp-sasl-mechanisms) "DIGEST-MD5")
106                 ;; sendmail bug?
107                 (string-match "^\\([^@]*\\)@\\([^@]*\\)"
108                               wl-smtp-posting-user))
109            (setq smtp-sasl-user-name (match-string 1 wl-smtp-posting-user)
110                  smtp-sasl-properties (list 'realm 
111                                             (match-string 2 wl-smtp-posting-user)))
112          (setq smtp-sasl-user-name wl-smtp-posting-user
113                smtp-sasl-properties nil))
114        (setq sasl-read-passphrase
115              (function
116               (lambda (prompt)
117                 (elmo-get-passwd
118                  (format "%s@%s"
119                          smtp-sasl-user-name
120                          smtp-server)))))
121        (,@ body))))
122
123 (defun wl-draft-insert-date-field ()
124   "Insert Date field."
125   (insert "Date: " (wl-make-date-string) "\n"))
126
127 (defun wl-draft-insert-from-field ()
128   "Insert From field."
129   ;; Put the "From:" field in unless for some odd reason
130   ;; they put one in themselves.
131   (let* ((login (or user-mail-address (user-login-name)))
132          (fullname (user-full-name)))
133     (cond ((eq mail-from-style 'angles)
134            (insert "From: " fullname)
135            (let ((fullname-start (+ (point-min) (length "From: ")))
136                  (fullname-end (point-marker)))
137              (goto-char fullname-start)
138              ;; Look for a character that cannot appear unquoted
139              ;; according to RFC 822.
140              (if (re-search-forward "[^- !#-'*+/-9=?A-Z^-~]"
141                                     fullname-end 1)
142                  (progn
143                    ;; Quote fullname, escaping specials.
144                    (goto-char fullname-start)
145                    (insert "\"")
146                    (while (re-search-forward "[\"\\]"
147                                              fullname-end 1)
148                      (replace-match "\\\\\\&" t))
149                    (insert "\""))))
150            (insert " <" login ">\n"))
151           ((eq mail-from-style 'parens)
152            (insert "From: " login " (")
153            (let ((fullname-start (point)))
154              (insert fullname)
155              (let ((fullname-end (point-marker)))
156                (goto-char fullname-start)
157                ;; RFC 822 says \ and nonmatching parentheses
158                ;; must be escaped in comments.
159                ;; Escape every instance of ()\ ...
160                (while (re-search-forward "[()\\]" fullname-end 1)
161                  (replace-match "\\\\\\&" t))
162                ;; ... then undo escaping of matching parentheses,
163                ;; including matching nested parentheses.
164                (goto-char fullname-start)
165                (while (re-search-forward
166                        "\\(\\=\\|[^\\]\\(\\\\\\\\\\)*\\)\\\\(\\(\\([^\\]\\|\\\\\\\\\\)*\\)\\\\)"
167                        fullname-end 1)
168                  (replace-match "\\1(\\3)" t)
169                  (goto-char fullname-start))))
170            (insert ")\n"))
171           ((not mail-from-style)
172            (insert "From: " login "\n")))))
173
174 (defun wl-draft-insert-x-face-field ()
175   "Insert X-Face header."
176   (interactive)
177   (if (not (file-exists-p wl-x-face-file))
178       (error "File %s does not exist" wl-x-face-file)
179     (beginning-of-buffer)
180     (search-forward mail-header-separator nil t)
181     (beginning-of-line)
182     (wl-draft-insert-x-face-field-here)
183     (run-hooks 'wl-draft-insert-x-face-field-hook))) ; highlight it if you want.
184
185 (defun wl-draft-insert-x-face-field-here ()
186   "Insert X-Face field at point."
187   (let ((x-face-string (elmo-get-file-string wl-x-face-file)))
188     (when (string-match "^[ \t]*" x-face-string)
189       (setq x-face-string (substring x-face-string (match-end 0))))
190     (insert "X-Face: " x-face-string))
191   (when (not (= (preceding-char) ?\n))  ; for chomped (choped) x-face-string
192     (insert ?\n))
193   ;; Insert X-Face-Version: field
194   (when (and (fboundp 'x-face-insert-version-header)
195              (boundp 'x-face-add-x-face-version-header)
196              x-face-add-x-face-version-header)
197     (x-face-insert-version-header)))
198
199 (defun wl-draft-setup ()
200   (let ((field wl-draft-fields)
201         ret-val)
202     (while field
203       (setq ret-val (append ret-val
204                             (list (cons (concat (car field) " ")
205                                         (concat (car field) " ")))))
206       (setq field (cdr field)))
207     (setq wl-draft-field-completion-list ret-val)))
208
209 (defun wl-draft-make-mail-followup-to (recipients)
210   (if (elmo-list-member
211        (or wl-user-mail-address-list
212            (list (wl-address-header-extract-address wl-from)))
213        recipients)
214       (let ((rlist (elmo-list-delete
215                     (or wl-user-mail-address-list
216                         (list (wl-address-header-extract-address wl-from)))
217                     (copy-sequence recipients))))
218         (if (elmo-list-member rlist (mapcar 'downcase
219                                             wl-subscribed-mailing-list))
220             rlist
221           (append rlist (list (wl-address-header-extract-address
222                                wl-from)))))
223     recipients))
224
225 (defun wl-draft-delete-myself-from-cc (to cc)
226   (let ((myself (or wl-user-mail-address-list
227                     (list (wl-address-header-extract-address wl-from)))))
228     (cond (wl-draft-always-delete-myself ; always-delete option
229            (elmo-list-delete myself cc))
230           ((elmo-list-member (append to cc) ; subscribed mailing-list
231                              (mapcar 'downcase wl-subscribed-mailing-list))
232            (elmo-list-delete myself cc))
233           (t cc))))
234
235 (defun wl-draft-forward (original-subject summary-buf)
236   (let (references)
237     (with-current-buffer (wl-message-get-original-buffer)
238       (setq references (nconc
239                         (std11-field-bodies '("References" "In-Reply-To"))
240                         (list (std11-field-body "Message-Id"))))
241       (setq references (delq nil references)
242             references (mapconcat 'identity references " ")
243             references (wl-draft-parse-msg-id-list-string references)
244             references (wl-delete-duplicates references)
245             references (when references
246                          (mapconcat 'identity references "\n\t"))))
247     (wl-draft "" (concat "Forward: " original-subject)
248               nil nil references nil nil nil nil nil nil summary-buf))
249   (goto-char (point-max))
250   (wl-draft-insert-message)
251   (mail-position-on-field "To"))
252
253 (defun wl-draft-strip-subject-re (subject)
254   "Remove \"Re:\" from subject lines. Shamelessly copied from Gnus"
255   (if (string-match wl-subject-prefix-regexp subject)
256       (substring subject (match-end 0))
257     subject))
258
259 (defun wl-draft-reply-list-symbol (with-arg)
260   "Return symbol `wl-draft-reply-*-argument-list' match condition.
261 Check WITH-ARG and From: field."
262   (if (wl-address-user-mail-address-p (or (elmo-field-body "From") ""))
263       (if with-arg
264           'wl-draft-reply-myself-with-argument-list
265         'wl-draft-reply-myself-without-argument-list)
266     (if with-arg
267         'wl-draft-reply-with-argument-list
268       'wl-draft-reply-without-argument-list)))
269
270 (defun wl-draft-reply (buf with-arg summary-buf)
271   "Reply to BUF buffer message.
272 Reply to author if WITH-ARG is non-nil."
273 ;;;(save-excursion
274   (let (r-list
275         to mail-followup-to cc subject in-reply-to references newsgroups
276         from to-alist cc-alist decoder)
277     (set-buffer buf)
278     (setq r-list (symbol-value (wl-draft-reply-list-symbol with-arg)))
279     (catch 'done
280       (while r-list
281         (when (let ((condition (car (car r-list))))
282                 (cond ((stringp condition)
283                        (std11-field-body condition))
284                       ((listp condition)
285                        (catch 'done
286                          (while condition
287                            (if (not (std11-field-body (car condition)))
288                                (throw 'done nil))
289                            (setq condition (cdr condition)))
290                          t))
291                       ((symbolp condition)
292                        (funcall condition))))
293           (let ((r-to-list (nth 0 (cdr (car r-list))))
294                 (r-cc-list (nth 1 (cdr (car r-list))))
295                 (r-ng-list (nth 2 (cdr (car r-list)))))
296             (when (and (member "Followup-To" r-ng-list)
297                        (string= (std11-field-body "Followup-To") "poster"))
298               (setq r-to-list (cons "From" r-to-list))
299               (setq r-ng-list (delete "Followup-To" (copy-sequence r-ng-list))))
300             (setq to (wl-concat-list (cons to
301                                            (elmo-multiple-fields-body-list
302                                             r-to-list))
303                                      ","))
304             (setq cc (wl-concat-list (cons cc
305                                            (elmo-multiple-fields-body-list
306                                             r-cc-list))
307                                      ","))
308             (setq newsgroups (wl-concat-list (cons newsgroups
309                                                    (std11-field-bodies
310                                                     r-ng-list))
311                                              ",")))
312           (throw 'done nil))
313         (setq r-list (cdr r-list)))
314       (error "No match field: check your `%s'"
315              (symbol-name (wl-draft-reply-list-symbol with-arg))))
316     (setq subject (std11-field-body "Subject"))
317     (setq to (wl-parse-addresses to)
318           cc (wl-parse-addresses cc))
319     (with-temp-buffer                   ; to keep raw buffer unibyte.
320       (elmo-set-buffer-multibyte default-enable-multibyte-characters)
321       (setq decoder (mime-find-field-decoder 'Subject 'plain))
322       (setq subject (if (and subject decoder)
323                         (funcall decoder subject) subject))
324       (setq to-alist 
325             (mapcar
326              (lambda (addr)
327                (setq decoder (mime-find-field-decoder 'To 'plain))
328                (cons (nth 1 (std11-extract-address-components addr))
329                      (if decoder (funcall decoder addr) addr)))
330              to))
331       (setq cc-alist 
332             (mapcar
333              (lambda (addr)
334                (setq decoder (mime-find-field-decoder 'Cc 'plain))
335                (cons (nth 1 (std11-extract-address-components addr))
336                      (if decoder (funcall decoder addr) addr)))
337              cc)))
338     (and wl-reply-subject-prefix
339          (setq subject (concat wl-reply-subject-prefix
340                                (wl-draft-strip-subject-re
341                                 (or subject "")))))
342     (setq in-reply-to (std11-field-body "Message-Id"))
343     (setq references (nconc
344                       (std11-field-bodies '("References" "In-Reply-To"))
345                       (list in-reply-to)))
346     (setq to (delq nil (mapcar 'car to-alist)))
347     (setq cc (delq nil (mapcar 'car cc-alist)))
348     ;; if subscribed mailing list is contained in cc or to
349     ;; and myself is contained in cc,
350     ;; delete myself from cc.
351     (setq cc (wl-draft-delete-myself-from-cc to cc))
352     (when wl-insert-mail-followup-to
353       (setq mail-followup-to
354             (wl-draft-make-mail-followup-to (append to cc)))
355       (setq mail-followup-to (wl-delete-duplicates mail-followup-to nil t)))
356     (setq newsgroups (wl-parse newsgroups
357                                "[ \t\f\r\n,]*\\([^ \t\f\r\n,]+\\)")
358           newsgroups (wl-delete-duplicates newsgroups)
359           newsgroups (if newsgroups (mapconcat 'identity newsgroups ",")))
360     (setq to (wl-delete-duplicates to nil t))
361     (setq cc (wl-delete-duplicates
362               (append (wl-delete-duplicates cc nil t)
363                       to (copy-sequence to))
364               t t))
365     (and to (setq to (mapconcat
366                       '(lambda (addr)
367                          (if wl-draft-reply-use-address-with-full-name
368                              (or (cdr (assoc addr to-alist)) addr)
369                            addr))
370                       to ",\n\t")))
371     (and cc (setq cc (mapconcat
372                       '(lambda (addr)
373                          (if wl-draft-reply-use-address-with-full-name
374                              (or (cdr (assoc addr cc-alist)) addr)
375                            addr))
376                       cc ",\n\t")))
377     (and mail-followup-to
378          (setq mail-followup-to
379                (mapconcat
380                 '(lambda (addr)
381                    (if wl-draft-reply-use-address-with-full-name
382                        (or (cdr (assoc addr (append to-alist cc-alist))) addr)
383                      addr))
384                 mail-followup-to ",\n\t")))
385     (and (null to) (setq to cc cc nil))
386     (setq references (delq nil references)
387           references (mapconcat 'identity references " ")
388           references (wl-draft-parse-msg-id-list-string references)
389           references (wl-delete-duplicates references)
390           references (if references
391                          (mapconcat 'identity references "\n\t")))
392     (wl-draft
393      to subject in-reply-to cc references newsgroups mail-followup-to
394      nil nil nil nil summary-buf)
395     (setq wl-draft-reply-buffer buf))
396   (run-hooks 'wl-reply-hook))
397
398 (defun wl-draft-add-references ()
399   (let* ((mes-id (save-excursion
400                    (set-buffer mail-reply-buffer)
401                    (std11-field-body "message-id")))
402          (ref (std11-field-body "References"))
403          (ref-list nil) (st nil))
404     (when (and mes-id ref)
405       (while (string-match "<[^>]+>" ref st)
406         (setq ref-list
407               (cons (substring ref (match-beginning 0) (setq st (match-end 0)))
408                     ref-list)))
409       (when (and ref-list
410                  (member mes-id ref-list))
411         (setq mes-id nil)))
412     (when mes-id
413       (save-excursion
414         (when (mail-position-on-field "References")
415           (forward-line)
416           (while (looking-at "^[ \t]")
417             (forward-line))
418           (setq mes-id (concat "\t" mes-id "\n")))
419         (insert mes-id))
420       t)))
421
422 (defun wl-draft-yank-from-mail-reply-buffer (decode-it
423                                              &optional ignored-fields)
424   (interactive)
425   (save-restriction
426     (narrow-to-region (point)(point))
427     (insert
428      (save-excursion
429        (set-buffer mail-reply-buffer)
430        (when decode-it
431          (decode-mime-charset-region (point-min) (point-max)
432                                      wl-mime-charset))
433        (buffer-substring-no-properties
434         (point-min) (point-max))))
435     (when ignored-fields
436       (goto-char (point-min))
437       (wl-draft-delete-fields ignored-fields))
438     (goto-char (point-max))
439     (push-mark)
440     (goto-char (point-min)))
441   (let ((beg (point)))
442     (cond (mail-citation-hook (run-hooks 'mail-citation-hook))
443           (mail-yank-hooks (run-hooks 'mail-yank-hooks))
444           (t (and wl-draft-cite-func
445                   (funcall wl-draft-cite-func)))) ; default cite
446     (run-hooks 'wl-draft-cited-hook)
447     (when (and wl-draft-add-references
448                (wl-draft-add-references))
449       (wl-highlight-headers 'for-draft)) ; highlight when added References:
450     (when wl-highlight-body-too
451       (wl-highlight-body-region beg (point-max)))))
452
453 (defun wl-draft-confirm ()
454   "Confirm send message."
455   (interactive)
456   (y-or-n-p (format "Send current draft as %s? "
457                     (cond ((and (wl-message-mail-p) (wl-message-news-p))
458                            "Mail and News")
459                           ((wl-message-mail-p) "Mail")
460                           ((wl-message-news-p) "News")))))
461
462 (defun wl-message-news-p ()
463   "If exist valid Newsgroups field, return non-nil."
464   (std11-field-body "Newsgroups"))
465
466 (defun wl-message-field-exists-p (field)
467   "If FIELD exist and FIELD value is not empty, return non-nil."
468   (let ((value (std11-field-body field)))
469     (and value
470          (not (string= value "")))))
471
472 (defun wl-message-mail-p ()
473   "If exist To, Cc or Bcc field, return non-nil."
474   (or (wl-message-field-exists-p "To")
475       (wl-message-field-exists-p "Cc")
476       (wl-message-field-exists-p "Bcc")
477 ;;; This may be needed..
478 ;;;   (wl-message-field-exists-p "Fcc")
479       ))
480
481 (defun wl-draft-open-file (&optional file)
482   "Open FILE for edit."
483   (interactive)
484 ;;;(interactive "*fFile to edit: ")
485   (wl-draft-edit-string (elmo-get-file-string
486                          (or file
487                              (read-file-name "File to edit: "
488                                              (or wl-tmp-dir "~/"))))))
489
490 (defun wl-draft-edit-string (string)
491   (let ((cur-buf (current-buffer))
492         (tmp-buf (get-buffer-create " *wl-draft-edit-string*"))
493         to subject in-reply-to cc references newsgroups mail-followup-to
494         content-type content-transfer-encoding
495         body-beg buffer-read-only
496         )
497     (set-buffer tmp-buf)
498     (erase-buffer)
499     (insert string)
500     (setq to (std11-field-body "To"))
501     (setq to (and to
502                   (eword-decode-string
503                    (decode-mime-charset-string
504                     to
505                     wl-mime-charset))))
506     (setq subject (std11-field-body "Subject"))
507     (setq subject (and subject
508                        (eword-decode-string
509                         (decode-mime-charset-string
510                          subject
511                          wl-mime-charset))))
512     (setq in-reply-to (std11-field-body "In-Reply-To"))
513     (setq cc (std11-field-body "Cc"))
514     (setq cc (and cc
515                   (eword-decode-string
516                    (decode-mime-charset-string
517                     cc
518                     wl-mime-charset))))
519     (setq references (std11-field-body "References"))
520     (setq newsgroups (std11-field-body "Newsgroups"))
521     (setq mail-followup-to (std11-field-body "Mail-Followup-To"))
522     (setq content-type (std11-field-body "Content-Type"))
523     (setq content-transfer-encoding (std11-field-body "Content-Transfer-Encoding"))
524     (goto-char (point-min))
525     (or (re-search-forward "\n\n" nil t)
526         (search-forward (concat mail-header-separator "\n") nil t))
527     (unwind-protect
528         (set-buffer
529          (wl-draft to subject in-reply-to cc references newsgroups
530                    mail-followup-to
531                    content-type content-transfer-encoding
532                    (buffer-substring (point) (point-max))
533                    'edit-again
534                    ))
535       (and to (mail-position-on-field "To"))
536       (delete-other-windows)
537       (kill-buffer tmp-buf)))
538   (setq buffer-read-only nil) ;;??
539   (run-hooks 'wl-draft-reedit-hook))
540
541 (defun wl-draft-insert-current-message (dummy)
542   (interactive)
543   (let ((mail-reply-buffer (wl-message-get-original-buffer))
544         mail-citation-hook mail-yank-hooks
545         wl-draft-add-references wl-draft-cite-func)
546     (if (eq 0
547             (save-excursion
548               (set-buffer mail-reply-buffer)
549               (buffer-size)))
550         (error "No current message")
551       (wl-draft-yank-from-mail-reply-buffer nil
552                                             wl-ignored-forwarded-headers))))
553
554 (defun wl-draft-insert-get-message (dummy)
555   (let ((fld (completing-read
556               "Folder name: "
557               (if (memq 'read-folder wl-use-folder-petname)
558                   (wl-folder-get-entity-with-petname)
559                 wl-folder-entity-hashtb)
560               nil nil wl-default-spec
561               'wl-read-folder-hist))
562         (number (call-interactively
563                  (function (lambda (num)
564                              (interactive "nNumber: ")
565                              num))))
566         (mail-reply-buffer (get-buffer-create "*wl-draft-insert-get-message*"))
567         mail-citation-hook mail-yank-hooks
568         wl-draft-cite-func)
569     (unwind-protect
570         (progn
571           (save-excursion
572             (elmo-read-msg-with-cache fld number mail-reply-buffer nil))
573           (wl-draft-yank-from-mail-reply-buffer nil))
574       (kill-buffer mail-reply-buffer))))
575
576 ;;
577 ;; default body citation func
578 ;;
579 (defun wl-default-draft-cite ()
580   (let ((mail-yank-ignored-headers "[^:]+:")
581         (mail-yank-prefix "> ")
582         (summary-buf wl-current-summary-buffer)
583         (message-buf (get-buffer (wl-current-message-buffer)))
584         from date cite-title num entity)
585     (if (and summary-buf
586              (buffer-live-p summary-buf)
587              message-buf
588              (buffer-live-p message-buf))
589         (progn
590           (save-excursion
591             (set-buffer summary-buf)
592             (setq num
593                   (save-excursion
594                     (set-buffer message-buf)
595                     wl-message-buffer-cur-number))
596             (setq entity (assoc (cdr (assq num
597                                            (elmo-msgdb-get-number-alist
598                                             wl-summary-buffer-msgdb)))
599                                 (elmo-msgdb-get-overview
600                                  wl-summary-buffer-msgdb)))
601             (setq from (elmo-msgdb-overview-entity-get-from entity))
602             (setq date (elmo-msgdb-overview-entity-get-date entity)))
603           (setq cite-title (format "At %s,\n%s wrote:"
604                                    (or date "some time ago")
605                                    (wl-summary-from-func-internal
606                                     (or from "you"))))))
607     (and cite-title
608          (insert cite-title "\n"))
609     (mail-indent-citation)))
610
611 (defvar wl-draft-buffer nil "Draft buffer to yank content")
612 (defun wl-draft-yank-to-draft-buffer (buffer)
613   "Yank BUFFER content to `wl-draft-buffer'."
614   (set-buffer wl-draft-buffer)
615   (let ((mail-reply-buffer buffer))
616     (wl-draft-yank-from-mail-reply-buffer nil)
617     (kill-buffer buffer)))
618
619 (defun wl-draft-yank-original (&optional arg)
620   "Yank original message."
621   (interactive "P")
622   (if arg
623       (let (buf mail-reply-buffer)
624         (elmo-set-work-buf
625          (yank)
626          (setq buf (current-buffer)))
627         (setq mail-reply-buffer buf)
628         (wl-draft-yank-from-mail-reply-buffer nil))
629     (wl-draft-yank-current-message-entity)))
630
631 (defun wl-draft-hide (editing-buffer)
632   "Hide the editing draft buffer if possible."
633   (interactive)
634   (when (and editing-buffer
635              (buffer-live-p editing-buffer))
636     (set-buffer editing-buffer)
637     (let ((sum-buf wl-draft-buffer-cur-summary-buffer)
638           fld-buf sum-win fld-win)
639       (if (and wl-draft-use-frame
640                (> (length (visible-frame-list)) 1))
641           ;; hide draft frame
642           (delete-frame)
643         ;; hide draft window
644         (or (one-window-p)
645             (delete-window)))
646       ;; stay folder window if required
647       (when wl-stay-folder-window
648         (if (setq fld-buf (get-buffer wl-folder-buffer-name))
649             (if (setq fld-win (get-buffer-window fld-buf))
650                 (select-window fld-win)
651               (if wl-draft-resume-folder-window ;; resume folder window
652                   (switch-to-buffer fld-buf)))))
653       (if (buffer-live-p sum-buf)
654           (if (setq sum-win (get-buffer-window sum-buf t))
655               ;; if Summary is on the frame, select it.
656               (select-window sum-win)
657             ;; if summary is not on the frame, switch to it.
658             (if (and wl-stay-folder-window
659                      (or wl-draft-resume-folder-window fld-win))
660                 (wl-folder-select-buffer sum-buf)
661               (switch-to-buffer sum-buf)))))))
662
663 (defun wl-draft-delete (editing-buffer)
664   "kill the editing draft buffer and delete the file corresponds to it."
665   (save-excursion
666     (when editing-buffer
667       (set-buffer editing-buffer)
668       (if wl-draft-buffer-file-name
669           (progn
670             (if (file-exists-p wl-draft-buffer-file-name)
671                 (delete-file wl-draft-buffer-file-name))
672             (let ((msg (and wl-draft-buffer-file-name
673                             (string-match "[0-9]+$" wl-draft-buffer-file-name)
674                             (string-to-int
675                              (elmo-match-string 0 wl-draft-buffer-file-name)))))
676               (wl-draft-config-info-operation msg 'delete))))
677       (set-buffer-modified-p nil)               ; force kill
678       (kill-buffer editing-buffer))))
679
680 (defun wl-draft-kill (&optional force-kill)
681   "Kill current draft buffer and quit editing."
682   (interactive "P")
683   (save-excursion
684     (when (and (or (eq major-mode 'wl-draft-mode)
685                    (eq major-mode 'mail-mode))
686                (or force-kill
687                    (y-or-n-p "Kill Current Draft?")))
688       (let ((cur-buf (current-buffer)))
689         (wl-draft-hide cur-buf)
690         (wl-draft-delete cur-buf)))
691     (message "")))
692
693 (defun wl-draft-fcc ()
694   "Add a new FCC field, with file name completion."
695   (interactive)
696   (or (mail-position-on-field "fcc" t)  ;Put new field after exiting FCC.
697       (mail-position-on-field "to"))
698   (insert "\nFCC: "))
699
700 ;; function for wl-sent-message-via
701
702 (defmacro wl-draft-sent-message-p (type)
703   (` (eq (nth 1 (assq (, type) wl-sent-message-via)) 'sent)))
704
705 (defmacro wl-draft-set-sent-message (type result &optional server-port)
706   (` (let ((element (assq (, type) wl-sent-message-via)))
707        (if element
708            (unless (eq (nth 1 element) (, result))
709              (setcdr element (list (, result) (, server-port)))
710              (setq wl-sent-message-modified t))
711          (push (list (, type) (, result) (, server-port)) wl-sent-message-via)
712          (setq wl-sent-message-modified t)))))
713
714 (defun wl-draft-sent-message-results ()
715   (let ((results wl-sent-message-via)
716         unplugged-via sent-via)
717     (while results
718       (cond ((eq (nth 1 (car results)) 'unplugged)
719              (push (caar results) unplugged-via))
720             ((eq (nth 1 (car results)) 'sent)
721              (push (caar results) sent-via)))
722       (setq results (cdr results)))
723     (list unplugged-via sent-via)))
724
725 (defun wl-draft-write-sendlog (status proto server to id)
726   "Write send log file, if `wl-draft-sendlog' is non-nil."
727   (when wl-draft-sendlog
728     (save-excursion
729       (let* ((tmp-buf (get-buffer-create " *wl-draft-sendlog*"))
730              (filename (expand-file-name wl-draft-sendlog-filename
731                                          elmo-msgdb-dir))
732              (filesize (nth 7 (file-attributes filename)))
733              (server (if server (concat " server=" server) ""))
734              (to (if to (cond
735                          ((memq proto '(fcc queue))
736                           (format " folder=\"%s\"" to))
737                          ((eq proto 'nntp)
738                           (format " ng=<%s>" to))
739                          (t
740                           (concat " to="
741                                   (mapconcat
742                                    'identity
743                                    (mapcar '(lambda(x) (format "<%s>" x)) to)
744                                    ","))))
745                    ""))
746              (id (if id (concat " id=" id) ""))
747              (time (wl-sendlog-time)))
748         (set-buffer tmp-buf)
749         (erase-buffer)
750         (insert (format "%s proto=%s stat=%s%s%s%s\n"
751                         time proto status server to id))
752         (if (and wl-draft-sendlog-max-size filesize
753                  (> filesize wl-draft-sendlog-max-size))
754             (rename-file filename (concat filename ".old") t))
755         (if (file-writable-p filename)
756             (write-region (point-min) (point-max)
757                           filename t 'no-msg)
758           (message (format "%s is not writable." filename)))
759         (kill-buffer tmp-buf)))))
760
761 (defun wl-draft-get-header-delimiter (&optional delete)
762   ;; If DELETE is non-nil, replace the header delimiter with a blank line
763   (let (delimline)
764     (goto-char (point-min))
765     (when (re-search-forward
766            (concat "^" (regexp-quote mail-header-separator) "$\\|^$") nil t)
767       (replace-match "")
768       (if delete
769           (forward-char -1))
770       (setq delimline (point-marker)))
771     delimline))
772
773 (defun wl-draft-send-mail-with-qmail ()
774   "Pass the prepared message buffer to qmail-inject.
775 Refer to the documentation for the variable `send-mail-function'
776 to find out how to use this."
777   (if (and wl-draft-qmail-send-plugged
778            (not (elmo-plugged-p)))
779       (wl-draft-set-sent-message 'mail 'unplugged)
780     ;; send the message
781     (let ((id (std11-field-body "Message-ID"))
782           (to (std11-field-body "To")))
783       (case
784           (as-binary-process
785            (apply
786             'call-process-region 1 (point-max) wl-qmail-inject-program
787             nil nil nil
788             wl-qmail-inject-args))
789         ;; qmail-inject doesn't say anything on it's stdout/stderr,
790         ;; we have to look at the retval instead
791         (0   (progn
792                (wl-draft-set-sent-message 'mail 'sent)
793                (wl-draft-write-sendlog 'ok 'qmail nil (list to) id)))
794         (1   (error "qmail-inject reported permanent failure"))
795         (111 (error "qmail-inject reported transient failure"))
796         ;; should never happen
797         (t   (error "qmail-inject reported unknown failure"))))))
798
799 (defun wl-draft-parse-msg-id-list-string (string)
800   "Get msg-id list from STRING."
801   (let (msg-id-list)
802     (dolist (parsed-id (std11-parse-msg-ids-string string))
803       (when (eq (car parsed-id) 'msg-id)
804         (setq msg-id-list (cons (std11-msg-id-string parsed-id)
805                                 msg-id-list))))
806     (nreverse msg-id-list)))
807
808 (defun wl-draft-parse-mailbox-list (field &optional remove-group-list)
809   "Get mailbox list of FIELD from current buffer.
810 The buffer is expected to be narrowed to just the headers of the message.
811 If optional argument REMOVE-GROUP-LIST is non-nil, remove group list content
812 from current buffer."
813   (save-excursion
814     (let ((case-fold-search t)
815           (inhibit-read-only t)
816           addresses address
817           mailbox-list beg seq has-group-list)
818       (goto-char (point-min))
819       (while (re-search-forward (concat "^" (regexp-quote field) "[\t ]*:")
820                                 nil t)
821         (setq beg (point))
822         (re-search-forward "^[^ \t]" nil 'move)
823         (beginning-of-line)
824         (skip-chars-backward "\n")
825         (setq seq (std11-lexical-analyze
826                    (buffer-substring-no-properties beg (point))))
827         (setq addresses (std11-parse-addresses seq))
828         (while addresses
829           (cond ((eq (car (car addresses)) 'group)
830                  (setq has-group-list t)
831                  (setq mailbox-list
832                        (nconc mailbox-list
833                               (mapcar
834                                'std11-address-string
835                                (nth 2 (car addresses))))))
836                 ((eq (car (car addresses)) 'mailbox)
837                  (setq address (nth 1 (car addresses)))
838                  (setq mailbox-list
839                        (nconc mailbox-list
840                               (list
841                                (std11-addr-to-string
842                                 (if (eq (car address) 'phrase-route-addr)
843                                     (nth 2 address)
844                                   (cdr address))))))))
845           (setq addresses (cdr addresses)))
846         (when (and remove-group-list has-group-list)
847           (delete-region beg (point))
848           (insert (wl-address-string-without-group-list-contents seq))))
849       mailbox-list)))
850
851 (defun wl-draft-deduce-address-list (buffer header-start header-end)
852   "Get address list suitable for smtp RCPT TO:<address>.
853 Group list content is removed if `wl-draft-remove-group-list-contents' is
854 non-nil."
855   (let ((fields        '("to" "cc" "bcc"))
856         (resent-fields '("resent-to" "resent-cc" "resent-bcc"))
857         (case-fold-search t)
858         addrs recipients)
859     (save-excursion
860       (save-restriction
861         (narrow-to-region header-start header-end)
862         (goto-char (point-min))
863         (save-excursion
864           (if (re-search-forward "^resent-to[\t ]*:" nil t)
865               (setq fields resent-fields)))
866         (while fields
867           (setq recipients
868                 (nconc recipients
869                        (wl-draft-parse-mailbox-list
870                         (car fields)
871                         wl-draft-remove-group-list-contents)))
872           (setq fields (cdr fields)))
873         recipients))))
874
875 ;;
876 ;; from Semi-gnus
877 ;;
878 (defun wl-draft-send-mail-with-smtp ()
879   "Send the prepared message buffer with SMTP."
880   (require 'smtp)
881   (let* ((errbuf (if mail-interactive
882                      (generate-new-buffer " smtp errors")
883                    0))
884          (case-fold-search t)
885          (default-case-fold-search t)
886          (sender (or wl-envelope-from
887                      (wl-address-header-extract-address wl-from)))
888          (delimline (save-excursion
889                       (goto-char (point-min))
890                       (re-search-forward
891                        (concat "^" (regexp-quote mail-header-separator)
892                                "$\\|^$") nil t)
893                       (point-marker)))
894          (smtp-server
895           (or wl-smtp-posting-server
896               ;; Compatibility stuff for FLIM 1.12.5 or earlier.
897               ;; They don't accept a function as the value of `smtp-server'.
898               (if (functionp smtp-server)
899                   (funcall
900                    smtp-server
901                    sender
902                    ;; no harm..
903                    (let (wl-draft-remove-group-list-contents)
904                      (wl-draft-deduce-address-list
905                       (current-buffer) (point-min) delimline)))
906                 (or smtp-server "localhost"))))
907          (smtp-service (or wl-smtp-posting-port smtp-service))
908          (smtp-local-domain (or smtp-local-domain wl-local-domain))
909          (id (std11-field-body "message-id"))
910          recipients)
911     (if (not (elmo-plugged-p smtp-server smtp-service))
912         (wl-draft-set-sent-message 'mail 'unplugged
913                                    (cons smtp-server smtp-service))
914       (unwind-protect
915           (save-excursion
916             ;; Instead of `smtp-deduce-address-list'.
917             (setq recipients (wl-draft-deduce-address-list
918                               (current-buffer) (point-min) delimline))
919             (unless recipients (error "No recipients"))
920             ;; Insert an extra newline if we need it to work around
921             ;; Sun's bug that swallows newlines.
922             (goto-char (1+ delimline))
923             (if (eval mail-mailer-swallows-blank-line)
924                 (newline))
925 ;;;         (run-hooks 'wl-mail-send-pre-hook)
926             (if mail-interactive
927                 (save-excursion
928                   (set-buffer errbuf)
929                   (erase-buffer)))
930             (wl-draft-delete-field "bcc" delimline)
931             (wl-draft-delete-field "resent-bcc" delimline)
932             (let (process-connection-type)
933               (as-binary-process
934                (when recipients
935                  (wl-smtp-extension-bind
936                   (condition-case err
937                       (smtp-send-buffer sender recipients (current-buffer))
938                     (error
939                      (wl-draft-write-sendlog 'failed 'smtp smtp-server
940                                              recipients id)
941                      (signal (car err) (cdr err)))))
942                  (wl-draft-set-sent-message 'mail 'sent)
943                  (wl-draft-write-sendlog
944                   'ok 'smtp smtp-server recipients id)))))
945         (if (bufferp errbuf)
946             (kill-buffer errbuf))))))
947
948 (defun wl-draft-send-mail-with-pop-before-smtp ()
949   "Send the prepared message buffer with POP-before-SMTP."
950   (require 'elmo-pop3)
951   (condition-case ()
952       (let ((session (elmo-pop3-get-session
953                       (list 'pop3
954                             (or wl-pop-before-smtp-user
955                                 elmo-default-pop3-user)
956                             (or wl-pop-before-smtp-authenticate-type
957                                 elmo-default-pop3-authenticate-type)
958                             (or wl-pop-before-smtp-server
959                                 elmo-default-pop3-server)
960                             (or wl-pop-before-smtp-port
961                                 elmo-default-pop3-port)
962                             (or wl-pop-before-smtp-stream-type
963                                 elmo-default-pop3-stream-type)))))
964         (when session (elmo-network-close-session session)))
965     (error))
966   (wl-draft-send-mail-with-smtp))
967
968 (defun wl-draft-insert-required-fields (&optional force-msgid)
969   "Insert Message-ID, Date, and From field.
970 If FORCE-MSGID, ignore 'wl-insert-message-id'."
971   ;; Insert Message-Id field...
972   (goto-char (point-min))
973   (when (and (or force-msgid
974                  wl-insert-message-id)
975              (not (re-search-forward "^Message-ID[ \t]*:" nil t)))
976     (insert (concat "Message-ID: "
977                     (wl-draft-make-message-id-string)
978                     "\n")))
979   ;; Insert date field.
980   (goto-char (point-min))
981   (or (re-search-forward "^Date[ \t]*:" nil t)
982       (wl-draft-insert-date-field))
983   ;; Insert from field.
984   (goto-char (point-min))
985   (or (re-search-forward "^From[ \t]*:" nil t)
986       (wl-draft-insert-from-field)))
987
988 (defun wl-draft-normal-send-func (editing-buffer kill-when-done)
989   "Send the message in the current buffer."
990   (save-restriction
991     (std11-narrow-to-header mail-header-separator)
992     (wl-draft-insert-required-fields)
993     ;; Delete null fields.
994     (goto-char (point-min))
995     (while (re-search-forward "^[^ \t\n:]+:[ \t]*\n" nil t)
996       (replace-match ""))
997     ;; ignore any blank lines in the header
998     (while (re-search-forward "\n\n\n*" nil t)
999       (replace-match "\n")))
1000   (run-hooks 'wl-mail-send-pre-hook) ;; X-PGP-Sig, Cancel-Lock
1001   (wl-draft-dispatch-message)
1002   (when kill-when-done
1003     ;; hide editing-buffer.
1004     (wl-draft-hide editing-buffer)
1005     ;; delete editing-buffer and its file.
1006     (wl-draft-delete editing-buffer)))
1007
1008 (defun wl-draft-dispatch-message (&optional mes-string)
1009   "Send the message in the current buffer.  Not modified the header fields."
1010   (let (delimline)
1011     (if (and wl-draft-verbose-send mes-string)
1012         (message mes-string))
1013     ;; get fcc folders.
1014     (setq delimline (wl-draft-get-header-delimiter t))
1015     (unless wl-draft-fcc-list
1016       (setq wl-draft-fcc-list (wl-draft-get-fcc-list delimline)))
1017     ;;
1018     (setq wl-sent-message-modified nil)
1019     (unwind-protect
1020         (progn
1021           (if (and (wl-message-mail-p)
1022                    (not (wl-draft-sent-message-p 'mail)))
1023               (funcall wl-draft-send-mail-func))
1024           (if (and (wl-message-news-p)
1025                    (not (wl-draft-sent-message-p 'news))
1026                    (not (wl-message-field-exists-p "Resent-to")))
1027               (funcall wl-draft-send-news-func)))
1028       ;;
1029       (let* ((status (wl-draft-sent-message-results))
1030              (unplugged-via (car status))
1031              (sent-via (nth 1 status)))
1032         ;; If one sent, process fcc folder.
1033         (if (and sent-via wl-draft-fcc-list)
1034             (progn
1035               (wl-draft-do-fcc (wl-draft-get-header-delimiter) wl-draft-fcc-list)
1036               (setq wl-draft-fcc-list nil))
1037           (if wl-draft-use-cache
1038               (let ((id (std11-field-body "Message-ID"))
1039                     (elmo-enable-disconnected-operation t))
1040                 (elmo-cache-save id nil nil nil))))
1041         ;; If one unplugged, append queue.
1042         (when (and unplugged-via
1043                    wl-sent-message-modified)
1044           (if wl-draft-enable-queuing
1045               (wl-draft-queue-append wl-sent-message-via)
1046             (error "Unplugged")))
1047         (when wl-draft-verbose-send
1048           (if (and unplugged-via sent-via);; combined message
1049               (progn
1050                 (setq wl-draft-verbose-msg
1051                       (format "Sending%s and Queuing%s..."
1052                               sent-via unplugged-via))
1053                 (message (concat wl-draft-verbose-msg "done")))
1054             (if mes-string
1055                 (message (concat mes-string
1056                                  (if sent-via "done" "failed")))))))))
1057   (not wl-sent-message-modified)) ;; return value
1058
1059 (defun wl-draft-raw-send (&optional kill-when-done force-pre-hook mes-string)
1060   "Force send current buffer as raw message."
1061   (interactive)
1062   (save-excursion
1063     (let (wl-interactive-send
1064 ;;;       wl-draft-verbose-send
1065           (wl-mail-send-pre-hook (and force-pre-hook wl-mail-send-pre-hook))
1066 ;;;       wl-news-send-pre-hook
1067           mail-send-hook
1068           mail-send-actions)
1069       (wl-draft-send kill-when-done mes-string))))
1070
1071 (defun wl-draft-clone-local-variables ()
1072   (let ((locals (buffer-local-variables))
1073         result)
1074     (while locals
1075       (when (and (consp (car locals))
1076                  (car (car locals))
1077                  (string-match wl-draft-clone-local-variable-regexp
1078                                (symbol-name (car (car locals)))))
1079         (wl-append result (list (car (car locals)))))
1080       (setq locals (cdr locals)))
1081     result))
1082
1083 (defun wl-draft-send (&optional kill-when-done mes-string)
1084   "Send current draft message.
1085 If optional argument is non-nil, current draft buffer is killed"
1086   (interactive)
1087   ;; Don't call this explicitly.
1088   ;; Added to 'wl-draft-send-hook (by teranisi)
1089   ;; (wl-draft-config-exec)
1090   (run-hooks 'wl-draft-send-hook)
1091   (when (or (not wl-interactive-send)
1092             (y-or-n-p "Send current draft. OK?"))
1093     (let ((send-mail-function 'wl-draft-raw-send)
1094           (editing-buffer (current-buffer))
1095           (sending-buffer (wl-draft-generate-clone-buffer
1096                            " *wl-draft-sending-buffer*"
1097                            (append wl-draft-config-variables
1098                                    (wl-draft-clone-local-variables))))
1099           (wl-draft-verbose-msg nil)
1100           err)
1101       (unwind-protect
1102           (save-excursion (set-buffer sending-buffer)
1103             (if (and (not (wl-message-mail-p))
1104                      (not (wl-message-news-p)))
1105                 (error "No recipient is specified"))
1106             (expand-abbrev) ; for mail-abbrevs
1107             (run-hooks 'mail-send-hook) ; translate buffer
1108             (if wl-draft-verbose-send
1109                 (message (or mes-string "Sending...")))
1110             (funcall wl-draft-send-func editing-buffer kill-when-done)
1111             ;; Now perform actions on successful sending.
1112             (while mail-send-actions
1113               (condition-case ()
1114                   (apply (car (car mail-send-actions))
1115                          (cdr (car mail-send-actions)))
1116                 (error))
1117               (setq mail-send-actions (cdr mail-send-actions)))
1118             (if (or (eq major-mode 'wl-draft-mode)
1119                     (eq major-mode 'mail-mode))
1120                 (local-set-key "\C-c\C-s" 'wl-draft-send)) ; override
1121             (if wl-draft-verbose-send
1122                 (message (concat (or wl-draft-verbose-msg
1123                                      mes-string "Sending...")
1124                                  "done"))))
1125         ;; kill sending buffer, anyway.
1126         (and (buffer-live-p sending-buffer)
1127              (kill-buffer sending-buffer))))))
1128
1129 (defun wl-draft-save ()
1130   "Save current draft."
1131   (interactive)
1132   (save-buffer)
1133   (wl-draft-config-info-operation
1134    (and (string-match "[0-9]+$" wl-draft-buffer-file-name)
1135         (string-to-int
1136          (elmo-match-string 0 wl-draft-buffer-file-name)))
1137    'save))
1138
1139 (defun wl-draft-mimic-kill-buffer ()
1140   "Kill the current (draft) buffer with query."
1141   (interactive)
1142   (let ((bufname (read-buffer (format "Kill buffer: (default %s) "
1143                                       (buffer-name))))
1144         wl-draft-use-frame)
1145     (if (or (not bufname)
1146             (string-equal bufname "")
1147             (string-equal bufname (buffer-name)))
1148         (wl-draft-save-and-exit)
1149       (kill-buffer bufname))))
1150
1151 (defun wl-draft-save-and-exit ()
1152   "Save current draft and exit current draft mode."
1153   (interactive)
1154   (wl-draft-save)
1155   (let ((editing-buffer (current-buffer)))
1156     (wl-draft-hide editing-buffer)
1157     (kill-buffer editing-buffer)))
1158   
1159 (defun wl-draft-send-and-exit ()
1160   "Send current draft message and kill it."
1161   (interactive)
1162   (wl-draft-send t))
1163
1164 (defun wl-draft-send-from-toolbar ()
1165   (interactive)
1166   (let ((wl-interactive-send t))
1167     (wl-draft-send-and-exit)))
1168
1169 (defun wl-draft-delete-field (field &optional delimline)
1170   (wl-draft-delete-fields (regexp-quote field) delimline))
1171
1172 (defun wl-draft-delete-fields (regexp &optional delimline)
1173   (save-restriction
1174     (unless delimline
1175       (if (search-forward "\n\n" nil t)
1176           (setq delimline (point))
1177         (setq delimline (point-max))))
1178     (narrow-to-region (point-min) delimline)
1179     (goto-char (point-min))
1180     (let ((regexp (concat "^" regexp ":"))
1181           (case-fold-search t)
1182           last)
1183       (while (not (eobp))
1184         (if (looking-at regexp)
1185             (progn
1186               (delete-region
1187                (point)
1188                (progn
1189                  (forward-line 1)
1190                  (if (re-search-forward "^[^ \t]" nil t)
1191                      (goto-char (match-beginning 0))
1192                    (point-max)))))
1193           (forward-line 1)
1194           (if (re-search-forward "^[^ \t]" nil t)
1195               (goto-char (match-beginning 0))
1196             (point-max)))))))
1197
1198 (defun wl-draft-get-fcc-list (header-end)
1199   (let (fcc-list
1200         (case-fold-search t))
1201     (or (markerp header-end) (error "header-end must be a marker"))
1202     (save-excursion
1203       (goto-char (point-min))
1204       (while (re-search-forward "^FCC:[ \t]*" header-end t)
1205         (setq fcc-list
1206               (cons (buffer-substring-no-properties
1207                      (point)
1208                      (progn
1209                        (end-of-line)
1210                        (skip-chars-backward " \t")
1211                        (point)))
1212                     fcc-list))
1213         (save-match-data
1214           (wl-folder-confirm-existence (eword-decode-string (car fcc-list))))
1215         (delete-region (match-beginning 0)
1216                        (progn (forward-line 1) (point)))))
1217     fcc-list))
1218
1219 (defun wl-draft-do-fcc (header-end &optional fcc-list)
1220   (let ((send-mail-buffer (current-buffer))
1221         (tembuf (generate-new-buffer " fcc output"))
1222         (case-fold-search t)
1223         beg end)
1224     (or (markerp header-end) (error "header-end must be a marker"))
1225     (save-excursion
1226       (unless fcc-list
1227         (setq fcc-list (wl-draft-get-fcc-list header-end)))
1228       (set-buffer tembuf)
1229       (erase-buffer)
1230       ;; insert just the headers to avoid moving the gap more than
1231       ;; necessary (the message body could be arbitrarily huge.)
1232       (insert-buffer-substring send-mail-buffer 1 header-end)
1233       (wl-draft-insert-required-fields t)
1234       (goto-char (point-max))
1235       (insert-buffer-substring send-mail-buffer header-end)
1236       (let ((id (std11-field-body "Message-ID"))
1237             (elmo-enable-disconnected-operation t)
1238             cache-saved)
1239         (while fcc-list
1240           (unless (or cache-saved
1241                       (elmo-folder-plugged-p (car fcc-list)))
1242             (elmo-cache-save id nil nil nil) ;; for disconnected operation
1243             (setq cache-saved t))
1244           (if (elmo-append-msg (eword-decode-string (car fcc-list))
1245                                (buffer-substring
1246                                 (point-min) (point-max))
1247                                id)
1248               (wl-draft-write-sendlog 'ok 'fcc nil (car fcc-list) id)
1249             (wl-draft-write-sendlog 'failed 'fcc nil (car fcc-list) id))
1250           (setq fcc-list (cdr fcc-list)))))
1251     (kill-buffer tembuf)))
1252
1253 (defun wl-draft-on-field-p ()
1254   (if (< (point)
1255          (save-excursion
1256            (goto-char (point-min))
1257            (search-forward (concat "\n" mail-header-separator "\n") nil 0)
1258            (point)))
1259       (if (bolp)
1260           (if (bobp)
1261               t
1262             (save-excursion
1263               (forward-line -1)
1264               (if (or (looking-at ".*,[ \t]?$")
1265                       (looking-at "^[^ \t]+:[ \t]+.*:$")); group list name
1266                   nil t)))
1267         (let ((pos (point)))
1268           (save-excursion
1269             (beginning-of-line)
1270             (if (looking-at "^[ \t]")
1271                 nil
1272               (if (re-search-forward ":" pos t) nil t)))))))
1273
1274 (defun wl-draft-random-alphabet ()
1275   (let ((alphabet '(?A ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z)))
1276     (nth (abs (% (random) 26)) alphabet)))
1277
1278 ;;;###autoload
1279 (defun wl-draft (&optional to subject in-reply-to cc references newsgroups
1280                            mail-followup-to
1281                            content-type content-transfer-encoding
1282                            body edit-again summary-buf)
1283   "Write and send mail/news message with Wanderlust."
1284   (interactive)
1285   (unless (featurep 'wl)
1286     (require 'wl))
1287   (unless wl-init
1288     (wl-load-profile))
1289   (wl-init 'wl-draft) ;; returns immediately if already initialized.
1290   (if (interactive-p)
1291       (setq summary-buf (wl-summary-get-buffer wl-summary-buffer-folder-name)))
1292   (let ((draft-folder-spec (elmo-folder-get-spec wl-draft-folder))
1293         buf-name file-name num wl-demo change-major-mode-hook)
1294     (if (not (eq (car draft-folder-spec) 'localdir))
1295         (error "%s folder cannot be used for draft folder" wl-draft-folder))
1296     (setq num (elmo-max-of-list (or (elmo-list-folder wl-draft-folder) '(0))))
1297     (setq num (+ 1 num))
1298     ;; To get unused buffer name.
1299     (while (get-buffer (concat wl-draft-folder "/" (int-to-string num)))
1300       (setq num (+ 1 num)))
1301     (setq buf-name (find-file-noselect
1302                     (setq file-name
1303                           (elmo-get-msg-filename wl-draft-folder
1304                                                  num))))
1305     (if wl-draft-use-frame
1306         (switch-to-buffer-other-frame buf-name)
1307       (switch-to-buffer buf-name))
1308     (set-buffer buf-name)
1309     (if (not (string-match (regexp-quote wl-draft-folder)
1310                            (buffer-name)))
1311         (rename-buffer (concat wl-draft-folder "/" (int-to-string num))))
1312     (if (or (eq wl-draft-reply-buffer-style 'full)
1313             (eq this-command 'wl-draft)
1314             (eq this-command 'wl-summary-write)
1315             (eq this-command 'wl-summary-write-current-newsgroup))
1316         (delete-other-windows))
1317     (auto-save-mode -1)
1318     (wl-draft-mode)
1319     (setq wl-sent-message-via nil)
1320     (if (stringp wl-from)
1321         (insert "From: " wl-from "\n"))
1322     (and (or (interactive-p)
1323              (eq this-command 'wl-summary-write)
1324              to)
1325          (insert "To: " (or to "") "\n"))
1326     (and cc (insert "Cc: " (or cc "") "\n"))
1327     (insert "Subject: " (or subject "") "\n")
1328     (and newsgroups (insert "Newsgroups: " newsgroups "\n"))
1329     (and mail-followup-to (insert "Mail-Followup-To: " mail-followup-to "\n"))
1330     (and wl-insert-mail-reply-to
1331          (insert "Mail-Reply-To: "
1332                  (wl-address-header-extract-address
1333                   wl-from) "\n"))
1334     (and in-reply-to (insert "In-Reply-To: " in-reply-to "\n"))
1335     (and references (insert "References: " references "\n"))
1336     (insert (funcall wl-generate-mailer-string-func)
1337             "\n")
1338     (setq wl-draft-buffer-file-name file-name)
1339     (if mail-default-reply-to
1340         (insert "Reply-To: " mail-default-reply-to "\n"))
1341     (if (or wl-bcc mail-self-blind)
1342         (insert "Bcc: " (or wl-bcc (user-login-name)) "\n"))
1343     (if wl-fcc
1344         (insert "FCC: " (if (functionp wl-fcc) (funcall wl-fcc) wl-fcc) "\n"))
1345     (if wl-organization
1346         (insert "Organization: " wl-organization "\n"))
1347     (and wl-auto-insert-x-face
1348          (file-exists-p wl-x-face-file)
1349          (wl-draft-insert-x-face-field-here))
1350     (if mail-default-headers
1351         (insert mail-default-headers))
1352     (if (not (= (preceding-char) ?\n))
1353         (insert ?\n))
1354     (if edit-again
1355         (let (start)
1356           (setq start (point))
1357           (when content-type
1358             (insert "Content-type: " content-type "\n"))
1359           (when content-transfer-encoding
1360             (insert "Content-Transfer-encoding: " content-transfer-encoding "\n"))
1361           (if (or content-type content-transfer-encoding)
1362               (insert "\n"))
1363           (and body (insert body))
1364           (save-restriction
1365             (narrow-to-region start (point))
1366             (and edit-again
1367                  (wl-draft-decode-message-in-buffer))
1368             (widen)
1369             (goto-char start)
1370             (put-text-property (point)
1371                                (progn
1372                                  (insert mail-header-separator "\n")
1373                                  (1- (point)))
1374                                'category 'mail-header-separator)))
1375       (put-text-property (point)
1376                          (progn
1377                            (insert mail-header-separator "\n")
1378                            (1- (point)))
1379                          'category 'mail-header-separator)
1380       (and body (insert body)))
1381     (if wl-on-nemacs
1382         (push-mark (point) t)
1383       (push-mark (point) t t))
1384     (as-binary-output-file
1385      (write-region (point-min)(point-max) wl-draft-buffer-file-name
1386                    nil t))
1387     (wl-draft-editor-mode)
1388     (wl-draft-overload-functions)
1389     (wl-highlight-headers 'for-draft)
1390     (goto-char (point-min))
1391     (setq wl-draft-config-exec-flag t)
1392     (if (interactive-p)
1393         (run-hooks 'wl-mail-setup-hook))
1394     (wl-user-agent-compose-internal) ;; user-agent
1395     (cond ((eq this-command 'wl-summary-write-current-newsgroup)
1396            (mail-position-on-field "Subject"))
1397           ((and (interactive-p) (null to))
1398            (mail-position-on-field "To"))
1399           (t
1400            (goto-char (point-max))))
1401     (setq wl-draft-buffer-cur-summary-buffer (or summary-buf
1402                                                  (get-buffer
1403                                                   wl-summary-buffer-name)))
1404     buf-name))
1405
1406 (defun wl-draft-elmo-nntp-send ()
1407   (let ((elmo-nntp-post-pre-hook wl-news-send-pre-hook)
1408         (elmo-default-nntp-user
1409          (or wl-nntp-posting-user elmo-default-nntp-user))
1410         (elmo-default-nntp-server
1411          (or wl-nntp-posting-server elmo-default-nntp-server))
1412         (elmo-default-nntp-port
1413          (or wl-nntp-posting-port elmo-default-nntp-port))
1414         (elmo-default-nntp-stream-type
1415          (or wl-nntp-posting-stream-type elmo-default-nntp-stream-type)))
1416     (if (not (elmo-plugged-p elmo-default-nntp-server elmo-default-nntp-port))
1417         (wl-draft-set-sent-message 'news 'unplugged
1418                                    (cons elmo-default-nntp-server
1419                                          elmo-default-nntp-port))
1420       (elmo-nntp-post elmo-default-nntp-server (current-buffer))
1421       (wl-draft-set-sent-message 'news 'sent)
1422       (wl-draft-write-sendlog 'ok 'nntp elmo-default-nntp-server
1423                               (std11-field-body "Newsgroups")
1424                               (std11-field-body "Message-ID")))))
1425
1426 (defun wl-draft-generate-clone-buffer (name &optional local-variables)
1427   "generate clone of current buffer named NAME."
1428   (let ((editing-buffer (current-buffer)))
1429     (save-excursion
1430       (set-buffer (generate-new-buffer name))
1431       (erase-buffer)
1432       (wl-draft-mode)
1433       (wl-draft-editor-mode)
1434       (insert-buffer editing-buffer)
1435       (message "")
1436       (while local-variables
1437         (make-local-variable (car local-variables))
1438         (set (car local-variables)
1439              (save-excursion
1440                (set-buffer editing-buffer)
1441                (symbol-value (car local-variables))))
1442         (setq local-variables (cdr local-variables)))
1443       (current-buffer))))
1444
1445 (defun wl-draft-reedit (number)
1446   (let ((draft-folder-spec (elmo-folder-get-spec wl-draft-folder))
1447         (wl-draft-reedit t)
1448         buf-name file-name change-major-mode-hook)
1449     (setq file-name (expand-file-name
1450                      (int-to-string number)
1451                      (expand-file-name
1452                       (nth 1 draft-folder-spec)
1453                       elmo-localdir-folder-path)))
1454     (unless (file-exists-p file-name)
1455       (error "File %s does not exist" file-name))
1456     (setq buf-name (find-file-noselect file-name))
1457     (if wl-draft-use-frame
1458         (switch-to-buffer-other-frame buf-name)
1459       (switch-to-buffer buf-name))
1460     (set-buffer buf-name)
1461     (if (not (string-match (regexp-quote wl-draft-folder)
1462                            (buffer-name)))
1463         (rename-buffer (concat wl-draft-folder "/" (buffer-name))))
1464     (auto-save-mode -1)
1465     (wl-draft-mode)
1466     (setq wl-sent-message-via nil)
1467     (setq wl-draft-buffer-file-name file-name)
1468     (wl-draft-config-info-operation number 'load)
1469     (goto-char (point-min))
1470     (or (re-search-forward "\n\n" nil t)
1471         (search-forward (concat mail-header-separator "\n") nil t))
1472     (if wl-on-nemacs
1473         (push-mark (point) t)
1474       (push-mark (point) t t))
1475     (write-region (point-min)(point-max) wl-draft-buffer-file-name
1476                   nil t)
1477     (wl-draft-overload-functions)
1478     (wl-draft-editor-mode)
1479     (wl-highlight-headers 'for-draft)
1480     (run-hooks 'wl-draft-reedit-hook)
1481     (goto-char (point-max))
1482     buf-name
1483     ))
1484
1485 (defmacro wl-draft-body-goto-top ()
1486   (` (progn
1487        (goto-char (point-min))
1488        (if (re-search-forward mail-header-separator nil t)
1489            (forward-char 1)
1490          (goto-char (point-max))))))
1491
1492 (defmacro wl-draft-body-goto-bottom ()
1493   (` (goto-char (point-max))))
1494
1495 (defmacro wl-draft-config-body-goto-header ()
1496   (` (progn
1497        (goto-char (point-min))
1498        (if (re-search-forward mail-header-separator nil t)
1499            (beginning-of-line)
1500          (goto-char (point-max))))))
1501
1502 (defun wl-draft-config-sub-body (content)
1503   (wl-draft-body-goto-top)
1504   (delete-region (point) (point-max))
1505   (if content (insert (eval content))))
1506
1507 (defun wl-draft-config-sub-top (content)
1508   (wl-draft-body-goto-top)
1509   (if content (insert (eval content))))
1510
1511 (defun wl-draft-config-sub-bottom (content)
1512   (wl-draft-body-goto-bottom)
1513   (if content (insert (eval content))))
1514
1515 (defun wl-draft-config-sub-header (content)
1516   (wl-draft-config-body-goto-header)
1517   (if content (insert (concat (eval content) "\n"))))
1518
1519 (defsubst wl-draft-config-sub-file (content)
1520   (let ((coding-system-for-read wl-cs-autoconv)
1521         (file (expand-file-name (eval content))))
1522     (if (file-exists-p file)
1523         (insert-file-contents file)
1524       (error "%s: no exists file" file))))
1525
1526 (defun wl-draft-config-sub-body-file (content)
1527   (wl-draft-body-goto-top)
1528   (delete-region (point) (point-max))
1529   (wl-draft-config-sub-file content))
1530
1531 (defun wl-draft-config-sub-top-file (content)
1532   (wl-draft-body-goto-top)
1533   (wl-draft-config-sub-file content))
1534
1535 (defun wl-draft-config-sub-bottom-file (content)
1536   (wl-draft-body-goto-bottom)
1537   (wl-draft-config-sub-file content))
1538
1539 (defun wl-draft-config-sub-header-file (content)
1540   (wl-draft-config-body-goto-header)
1541   (wl-draft-config-sub-file content))
1542
1543 (defun wl-draft-config-sub-template (content)
1544   (setq wl-draft-config-variables
1545         (wl-template-insert (eval content))))
1546
1547 (defun wl-draft-config-sub-x-face (content)
1548   (if (and (string-match "\\.xbm\\(\\.gz\\)?$" content)
1549            (fboundp 'x-face-insert)) ; x-face.el is installed.
1550       (x-face-insert content)
1551     (wl-draft-replace-field "X-Face" (elmo-get-file-string content t) t)))
1552
1553 (defsubst wl-draft-config-sub-func (field content)
1554   (let (func)
1555     (if (setq func (assq field wl-draft-config-sub-func-alist))
1556         (let (wl-draft-config-variables)
1557           (funcall (cdr func) content)
1558           ;; for wl-draft-config-sub-template
1559           (cons t wl-draft-config-variables)))))
1560
1561 (defsubst wl-draft-config-exec-sub (clist)
1562   (let (config local-variables)
1563     (while clist
1564       (setq config (car clist))
1565       (cond
1566        ((consp config)
1567         (let ((field (car config))
1568               (content (cdr config))
1569               ret-val)
1570           (cond
1571            ((stringp field)
1572             (wl-draft-replace-field field (eval content) t))
1573            ((setq ret-val (wl-draft-config-sub-func field content))
1574             (if (cdr ret-val) ;; for wl-draft-config-sub-template
1575                 (wl-append local-variables (cdr ret-val))))
1576            ((boundp field) ;; variable
1577             (make-local-variable field)
1578             (set field (eval content))
1579             (wl-append local-variables (list field)))
1580            (t
1581             (error "%s: not variable" field)))))
1582        ((or (functionp config)
1583             (and (symbolp config)
1584                  (fboundp config)))
1585         (funcall config))
1586        (t
1587         (error "%s: not supported type" config)))
1588       (setq clist (cdr clist)))
1589     local-variables))
1590
1591 (defun wl-draft-prepared-config-exec (&optional config-alist reply-buf)
1592   "Change headers in draft preparation time."
1593   (interactive)
1594   (unless wl-draft-reedit
1595     (let ((config-alist
1596            (or config-alist
1597                (and (boundp 'wl-draft-prepared-config-alist)
1598                     wl-draft-prepared-config-alist)     ;; For compatible.
1599                wl-draft-config-alist)))
1600       (if config-alist
1601           (wl-draft-config-exec config-alist reply-buf)))))
1602
1603 (defun wl-draft-config-exec (&optional config-alist reply-buf)
1604   "Change headers in draft sending time."
1605   (interactive)
1606   (let ((case-fold-search t)
1607         (alist (or config-alist wl-draft-config-alist))
1608         (reply-buf (or reply-buf (and (buffer-live-p wl-draft-reply-buffer)
1609                                       wl-draft-reply-buffer)))
1610         (local-variables wl-draft-config-variables)
1611         key clist found)
1612     (when (and (or (interactive-p)
1613                    wl-draft-config-exec-flag)
1614                alist)
1615       (save-excursion
1616         (catch 'done
1617           (while alist
1618             (setq key (caar alist)
1619                   clist (cdar alist))
1620             (cond
1621              ((eq key 'reply)
1622               (when (and
1623                      reply-buf
1624                      (save-excursion
1625                        (set-buffer reply-buf)
1626                        (save-restriction
1627                          (std11-narrow-to-header)
1628                          (goto-char (point-min))
1629                          (re-search-forward (car clist) nil t))))
1630                 (wl-draft-config-exec-sub (cdr clist))
1631                 (setq found t)))
1632              ((stringp key)
1633               (when (save-restriction
1634                       (std11-narrow-to-header mail-header-separator)
1635                       (goto-char (point-min))
1636                       (re-search-forward key nil t))
1637                 (wl-append local-variables
1638                            (wl-draft-config-exec-sub clist))
1639                 (setq found t)))
1640              ((eval key)
1641               (wl-append local-variables
1642                          (wl-draft-config-exec-sub clist))
1643               (setq found t)))
1644             (if (and found wl-draft-config-matchone)
1645                 (throw 'done t))
1646             (setq alist (cdr alist))))
1647         (if found
1648             (setq wl-draft-config-exec-flag nil))
1649         (run-hooks 'wl-draft-config-exec-hook)
1650         (put-text-property (point-min)(point-max) 'face nil)
1651         (wl-highlight-message (point-min)(point-max) t)
1652         (setq wl-draft-config-variables
1653               (elmo-uniq-list local-variables))))))
1654
1655 (defun wl-draft-replace-field (field content &optional add)
1656   (save-excursion
1657     (save-restriction
1658       (let ((case-fold-search t)
1659             (inhibit-read-only t) ;; added by teranisi.
1660             beg)
1661         (std11-narrow-to-header mail-header-separator)
1662         (goto-char (point-min))
1663         (if (re-search-forward (concat "^" (regexp-quote field) ":") nil t)
1664             (if content
1665                 ;; replace field
1666                 (progn
1667                   (setq beg (point))
1668                   (re-search-forward "^[^ \t]" nil 'move)
1669                   (beginning-of-line)
1670                   (skip-chars-backward "\n")
1671                   (delete-region beg (point))
1672                   (insert " " content))
1673               ;; delete field
1674               (save-excursion
1675                 (beginning-of-line)
1676                 (setq beg (point)))
1677               (re-search-forward "^[^ \t]" nil 'move)
1678               (beginning-of-line)
1679               (delete-region beg (point)))
1680           (when (and add content)
1681             ;; add field
1682             (goto-char (point-max))
1683             (insert (concat field ": " content "\n"))))))))
1684
1685 (defun wl-draft-config-info-operation (msg operation)
1686   (let* ((msgdb-dir (elmo-msgdb-expand-path wl-draft-folder))
1687          (filename
1688           (expand-file-name
1689            (format "%s-%d" wl-draft-config-save-filename msg)
1690            msgdb-dir))
1691          element alist variable)
1692     (cond
1693      ((eq operation 'save)
1694       (let ((variables (elmo-uniq-list wl-draft-config-variables)))
1695         (while (setq variable (pop variables))
1696           (when (boundp variable)
1697             (wl-append alist
1698                        (list (cons variable (eval variable))))))
1699         (elmo-object-save filename alist)))
1700      ((eq operation 'load)
1701       (setq alist (elmo-object-load filename))
1702       (while (setq element (pop alist))
1703         (set (make-local-variable (car element)) (cdr element))
1704         (wl-append wl-draft-config-variables (list (car element)))))
1705      ((eq operation 'delete)
1706       (if (file-exists-p filename)
1707           (delete-file filename))))))
1708
1709 (defun wl-draft-queue-info-operation (msg operation
1710                                           &optional add-sent-message-via)
1711   (let* ((msgdb-dir (elmo-msgdb-expand-path wl-queue-folder))
1712          (filename
1713           (expand-file-name
1714            (format "%s-%d" wl-draft-queue-save-filename msg)
1715            msgdb-dir))
1716          element alist variable)
1717     (cond
1718      ((eq operation 'save)
1719       (let ((variables (elmo-uniq-list
1720                         (append wl-draft-queue-save-variables
1721                                 wl-draft-config-variables
1722                                 (list 'wl-draft-fcc-list)))))
1723         (if add-sent-message-via
1724             (push 'wl-sent-message-via variables))
1725         (while (setq variable (pop variables))
1726           (when (boundp variable)
1727             (wl-append alist
1728                        (list (cons variable (eval variable))))))
1729         (elmo-object-save filename alist)))
1730      ((eq operation 'load)
1731       (setq alist (elmo-object-load filename))
1732       (while (setq element (pop alist))
1733         (set (make-local-variable (car element)) (cdr element))))
1734      ((eq operation 'get-sent-via)
1735       (setq alist (elmo-object-load filename))
1736       (cdr (assq 'wl-sent-message-via alist)))
1737      ((eq operation 'delete)
1738       (if (file-exists-p filename)
1739           (delete-file filename))))))
1740
1741 (defun wl-draft-queue-append (wl-sent-message-via)
1742   (if wl-draft-verbose-send
1743       (message "Queuing..."))
1744   (let ((send-buffer (current-buffer))
1745         (message-id (std11-field-body "Message-ID")))
1746     (if (elmo-append-msg wl-queue-folder
1747                          (buffer-substring (point-min) (point-max))
1748                          message-id)
1749         (progn
1750           (if message-id
1751               (elmo-dop-lock-message message-id))
1752           (wl-draft-queue-info-operation
1753            (car (elmo-max-of-folder wl-queue-folder))
1754            'save wl-sent-message-via)
1755           (wl-draft-write-sendlog 'ok 'queue nil wl-queue-folder message-id)
1756           (when wl-draft-verbose-send
1757             (setq wl-draft-verbose-msg "Queuing...")
1758             (message "Queuing...done")))
1759       (wl-draft-write-sendlog 'failed 'queue nil wl-queue-folder message-id)
1760       (error "Queuing failed"))))
1761
1762 (defun wl-draft-queue-flush ()
1763   "Flush draft queue."
1764   (interactive)
1765   (let ((msgs2 (elmo-list-folder wl-queue-folder))
1766         (i 0)
1767         (performed 0)
1768         (wl-draft-queue-flushing t)
1769         msgs failure len buffer msgid sent-via)
1770     ;; get plugged send message
1771     (while msgs2
1772       (setq sent-via (wl-draft-queue-info-operation (car msgs2) 'get-sent-via))
1773       (catch 'found
1774         (while sent-via
1775           (when (and (eq (nth 1 (car sent-via)) 'unplugged)
1776                      (elmo-plugged-p
1777                       (car (nth 2 (car sent-via)))
1778                       (cdr (nth 2 (car sent-via)))))
1779             (wl-append msgs (list (car msgs2)))
1780             (throw 'found t))
1781           (setq sent-via (cdr sent-via))))
1782       (setq msgs2 (cdr msgs2)))
1783     (when (> (setq len (length msgs)) 0)
1784       (if (elmo-y-or-n-p (format
1785                           "%d message(s) are in the sending queue. Send now?"
1786                           len)
1787                          (not elmo-dop-flush-confirm) t)
1788           (progn
1789             (save-excursion
1790               (setq buffer (get-buffer-create " *wl-draft-queue-flush*"))
1791               (set-buffer buffer)
1792               (while msgs
1793                 ;; reset buffer local variables
1794                 (kill-all-local-variables)
1795                 (erase-buffer)
1796                 (setq i (+ 1 i)
1797                       failure nil)
1798                 (setq wl-sent-message-via nil)
1799                 (wl-draft-queue-info-operation (car msgs) 'load)
1800                 (elmo-read-msg-no-cache wl-queue-folder (car msgs)
1801                                         (current-buffer))
1802                 (condition-case err
1803                     (setq failure (funcall
1804                                    wl-draft-queue-flush-send-func
1805                                    (format "Sending (%d/%d)..." i len)))
1806 ;;;               (wl-draft-raw-send nil nil
1807 ;;;                                  (format "Sending (%d/%d)..." i len))
1808                   (error
1809                    (elmo-display-error err t)
1810                    (setq failure t))
1811                   (quit
1812                    (setq failure t)))
1813                 (unless failure
1814                   (elmo-delete-msgs wl-queue-folder (cons (car msgs) nil))
1815                   (wl-draft-queue-info-operation (car msgs) 'delete)
1816                   (elmo-dop-unlock-message (std11-field-body "Message-ID"))
1817                   (setq performed (+ 1 performed)))
1818                 (setq msgs (cdr msgs)))
1819               (kill-buffer buffer)
1820               (message "%d message(s) are sent." performed)))
1821         (message "%d message(s) are remained to be sent." len))
1822       len)))
1823
1824 (defun wl-jump-to-draft-buffer (&optional arg)
1825   "Jump to the draft if exists."
1826   (interactive "P")
1827   (if arg
1828       (wl-jump-to-draft-folder)
1829     (let ((bufs (buffer-list))
1830           (draft-regexp (concat
1831                          "^" (regexp-quote
1832                               (expand-file-name
1833                                (nth 1 (elmo-folder-get-spec wl-draft-folder))
1834                                (expand-file-name
1835                                 elmo-localdir-folder-path)))))
1836           buf draft-bufs)
1837       (while bufs
1838         (if (and
1839              (setq buf (buffer-file-name (car bufs)))
1840              (string-match draft-regexp buf))
1841             (setq draft-bufs (cons (buffer-name (car bufs)) draft-bufs)))
1842         (setq bufs (cdr bufs)))
1843       (cond
1844        ((null draft-bufs)
1845         (message "No draft buffer exist."))
1846        (t
1847         (setq draft-bufs
1848               (sort draft-bufs (function (lambda (a b) (not (string< a b))))))
1849         (if (setq buf (cdr (member (buffer-name) draft-bufs)))
1850             (setq buf (car buf))
1851           (setq buf (car draft-bufs)))
1852         (switch-to-buffer buf))))))
1853
1854 (defun wl-jump-to-draft-folder ()
1855   (let ((msgs (reverse (elmo-list-folder wl-draft-folder)))
1856         (mybuf (buffer-name))
1857         msg buf)
1858     (if (not msgs)
1859         (message "No draft message exist.")
1860       (if (string-match (concat "^" wl-draft-folder "/") mybuf)
1861           (setq msg (cadr (memq
1862                            (string-to-int (substring mybuf (match-end 0)))
1863                            msgs))))
1864       (or msg (setq msg (car msgs)))
1865       (if (setq buf (get-buffer (format "%s/%d" wl-draft-folder msg)))
1866           (switch-to-buffer buf)
1867         (wl-draft-reedit msg)))))
1868
1869 (defun wl-draft-highlight-and-recenter (&optional n)
1870   (interactive "P")
1871   (if wl-highlight-body-too
1872       (let ((beg (point-min))
1873             (end (point-max)))
1874         (put-text-property beg end 'face nil)
1875         (wl-highlight-message beg end t)))
1876   (recenter n))
1877
1878 ;;;; user-agent support by Sen Nagata
1879
1880 ;; this appears to be necessarily global...
1881 (defvar wl-user-agent-compose-p nil)
1882 (defvar wl-user-agent-headers-and-body-alist nil)
1883
1884 ;; this should be a generic function for mail-mode -- i wish there was
1885 ;; something like it in sendmail.el
1886 (defun wl-user-agent-insert-header (header-name header-value)
1887   "Insert HEADER-NAME w/ value HEADER-VALUE into a message."
1888   ;; it seems like overriding existing headers is acceptable -- should
1889   ;; we provide an option?
1890   
1891   ;; plan was: unfold header (might be folded), remove existing value, insert
1892   ;;           new value
1893   ;; wl doesn't seem to fold header lines yet anyway :-)
1894   
1895   (let ((kill-whole-line t)
1896         end-of-line)
1897     (mail-position-on-field (capitalize header-name))
1898     (setq end-of-line (point))
1899     (beginning-of-line)
1900     (re-search-forward ":" end-of-line)
1901     (insert (concat " " header-value "\n"))
1902     (kill-line)))
1903
1904 ;; this should be a generic function for mail-mode -- i wish there was
1905 ;; something like it in sendmail.el
1906 ;;
1907 ;; ** haven't dealt w/ case where the body is already set **
1908 (defun wl-user-agent-insert-body (body-text)
1909   "Insert a body of text, BODY-TEXT, into a message."
1910   ;; code defensively... :-P
1911   (goto-char (point-min))
1912   (search-forward mail-header-separator)
1913   (forward-line 1)
1914   (insert body-text))
1915
1916 ;;;###autoload
1917 (defun wl-user-agent-compose (&optional to subject other-headers continue
1918                                         switch-function yank-action
1919                                         send-actions)
1920   "Support the `compose-mail' interface for wl.
1921 Only support for TO, SUBJECT, and OTHER-HEADERS has been implemented.
1922 Support for CONTINUE, YANK-ACTION, and SEND-ACTIONS has not
1923 been implemented yet.  Partial support for SWITCH-FUNCTION now supported."
1924
1925   (unless (featurep 'wl)
1926     (require 'wl))
1927   ;; protect these -- to and subject get bound at some point, so it looks
1928   ;; to be necessary to protect the values used w/in
1929   (let ((wl-user-agent-headers-and-body-alist other-headers)
1930         (wl-draft-use-frame (eq switch-function 'switch-to-buffer-other-frame))
1931         (wl-draft-reply-buffer-style 'split))
1932     (when (eq switch-function 'switch-to-buffer-other-window)
1933       (when (one-window-p t)
1934         (if (window-minibuffer-p) (other-window 1))
1935         (split-window))
1936       (other-window 1))
1937     (if to
1938         (if (wl-string-match-assoc "to" wl-user-agent-headers-and-body-alist
1939                                    'ignore-case)
1940             (setcdr
1941              (wl-string-match-assoc "to" wl-user-agent-headers-and-body-alist
1942                                     'ignore-case)
1943              to)
1944           (setq wl-user-agent-headers-and-body-alist
1945                 (cons (cons "to" to)
1946                       wl-user-agent-headers-and-body-alist))))
1947     (if subject
1948         (if (wl-string-match-assoc "subject"
1949                                    wl-user-agent-headers-and-body-alist
1950                                    'ignore-case)
1951             (setcdr
1952              (wl-string-match-assoc "subject"
1953                                     wl-user-agent-headers-and-body-alist
1954                                     'ignore-case)
1955              subject)
1956           (setq wl-user-agent-headers-and-body-alist
1957                 (cons (cons "subject" subject)
1958                       wl-user-agent-headers-and-body-alist))))
1959     ;; i think this is what we want to use...
1960     (unwind-protect
1961         (progn
1962           ;; tell the hook-function to do its stuff
1963           (setq wl-user-agent-compose-p t)
1964           ;; because to get the hooks working, wl-draft has to think it has
1965           ;; been called interactively
1966           (call-interactively 'wl-draft))
1967       (setq wl-user-agent-compose-p nil))))
1968
1969 (defun wl-user-agent-compose-internal ()
1970   "Manipulate headers and/or a body of a draft message."
1971   ;; being called from wl-user-agent-compose?
1972   (if wl-user-agent-compose-p
1973       (progn
1974         ;; insert headers
1975         (let ((headers wl-user-agent-headers-and-body-alist)
1976               (case-fold-search t))
1977           (while headers
1978             ;; skip body
1979             (if (not (string-match "^body$" (car (car headers))))
1980                 (wl-user-agent-insert-header
1981                  (car (car headers)) (cdr (car headers)))
1982               t)
1983             (setq headers (cdr headers))))
1984         ;; highlight headers (from wl-draft in wl-draft.el)
1985         (wl-highlight-headers 'for-draft)
1986         ;; insert body
1987         (if (wl-string-match-assoc "body" wl-user-agent-headers-and-body-alist
1988                                    'ignore-case)
1989             (wl-user-agent-insert-body
1990              (cdr (wl-string-match-assoc
1991                    "body"
1992                    wl-user-agent-headers-and-body-alist 'ignore-case)))))
1993     t))
1994
1995 (require 'product)
1996 (product-provide (provide 'wl-draft) (require 'wl-version))
1997
1998 ;;; wl-draft.el ends here