* wl-draft.el (wl-draft-normal-send-func): Fixed last change.
[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 (eval-and-compile
53   (autoload 'wl-addrmgr "wl-addrmgr"))
54
55 (defvar wl-draft-buf-name "Draft")
56 (defvar wl-draft-buffer-file-name nil)
57 (defvar wl-draft-field-completion-list nil)
58 (defvar wl-draft-verbose-send t)
59 (defvar wl-draft-verbose-msg nil)
60 (defvar wl-draft-queue-flushing nil)
61 (defvar wl-draft-config-variables nil)
62 (defvar wl-draft-config-exec-flag t)
63 (defvar wl-draft-buffer-cur-summary-buffer nil)
64 (defvar wl-draft-clone-local-variable-regexp "^\\(wl\\|mime\\)")
65 (defvar wl-draft-sendlog-filename "sendlog")
66 (defvar wl-draft-queue-save-filename "qinfo")
67 (defvar wl-draft-config-save-filename "config")
68 (defvar wl-draft-queue-flush-send-function 'wl-draft-dispatch-message)
69 (defvar wl-sent-message-via nil)
70 (defvar wl-sent-message-modified nil)
71 (defvar wl-sent-message-queued nil)
72 (defvar wl-draft-fcc-list nil)
73 (defvar wl-draft-reedit nil)
74 (defvar wl-draft-reply-buffer nil)
75 (defvar wl-draft-forward nil)
76 (defvar wl-draft-doing-mime-bcc nil)
77
78 (defvar wl-draft-parent-folder nil
79   "Folder name of the summary in which current draft is invoked.
80 This variable is local in each draft buffer.
81 You can refer its value in `wl-draft-config-alist'.
82
83 e.g.
84 \(setq wl-draft-config-alist
85       '(((string-match \".*@domain1$\" wl-draft-parent-folder)
86          (\"From\" . \"user@domain1\"))
87         ((string-match \".*@domain2$\" wl-draft-parent-folder)
88          (\"From\" . \"user@domain2\"))))")
89
90 (defvar wl-draft-config-sub-func-alist
91   '((body               . wl-draft-config-sub-body)
92     (top                . wl-draft-config-sub-top)
93     (bottom             . wl-draft-config-sub-bottom)
94     (header             . wl-draft-config-sub-header)
95     (header-top         . wl-draft-config-sub-header-top)
96     (header-bottom      . wl-draft-config-sub-header)
97     (part-top           . wl-draft-config-sub-part-top)
98     (part-bottom        . wl-draft-config-sub-part-bottom)
99     (body-file          . wl-draft-config-sub-body-file)
100     (top-file           . wl-draft-config-sub-top-file)
101     (bottom-file        . wl-draft-config-sub-bottom-file)
102     (header-file        . wl-draft-config-sub-header-file)
103     (template           . wl-draft-config-sub-template)
104     (x-face             . wl-draft-config-sub-x-face)))
105
106 (make-variable-buffer-local 'wl-draft-buffer-file-name)
107 (make-variable-buffer-local 'wl-draft-buffer-cur-summary-buffer)
108 (make-variable-buffer-local 'wl-draft-config-variables)
109 (make-variable-buffer-local 'wl-draft-config-exec-flag)
110 (make-variable-buffer-local 'wl-sent-message-via)
111 (make-variable-buffer-local 'wl-sent-message-queued)
112 (make-variable-buffer-local 'wl-draft-fcc-list)
113 (make-variable-buffer-local 'wl-draft-reply-buffer)
114 (make-variable-buffer-local 'wl-draft-parent-folder)
115
116 (defsubst wl-smtp-password-key (user mechanism server)
117   (format "SMTP:%s/%s@%s"
118           user mechanism server))
119
120 (defmacro wl-smtp-extension-bind (&rest body)
121   (` (let* ((smtp-sasl-mechanisms
122              (if wl-smtp-authenticate-type
123                  (mapcar 'upcase
124                          (if (listp wl-smtp-authenticate-type)
125                              wl-smtp-authenticate-type
126                            (list wl-smtp-authenticate-type)))))
127             (smtp-use-sasl (and smtp-sasl-mechanisms t))
128             (smtp-use-starttls (eq wl-smtp-connection-type 'starttls))
129             smtp-sasl-user-name smtp-sasl-properties sasl-read-passphrase)
130        (if (and (string= (car smtp-sasl-mechanisms) "DIGEST-MD5")
131                 ;; sendmail bug?
132                 (string-match "^\\([^@]*\\)@\\([^@]*\\)"
133                               wl-smtp-posting-user))
134            (setq smtp-sasl-user-name (match-string 1 wl-smtp-posting-user)
135                  smtp-sasl-properties (list 'realm
136                                             (match-string 2 wl-smtp-posting-user)))
137          (setq smtp-sasl-user-name wl-smtp-posting-user
138                smtp-sasl-properties nil))
139        (setq sasl-read-passphrase
140              (function
141               (lambda (prompt)
142                 (elmo-get-passwd
143                  (wl-smtp-password-key
144                   smtp-sasl-user-name
145                   (car smtp-sasl-mechanisms)
146                   smtp-server)))))
147        (,@ body))))
148
149 (defun wl-draft-insert-date-field ()
150   "Insert Date field."
151   (insert "Date: " (wl-make-date-string) "\n"))
152
153 (defun wl-draft-insert-from-field ()
154   "Insert From field."
155   ;; Put the "From:" field in unless for some odd reason
156   ;; they put one in themselves.
157   (let (from)
158     (condition-case err
159         (setq from (wl-draft-eword-encode-address-list wl-from))
160       (error (error "Please look at `wl-from' again")))
161     (insert "From: " from "\n")))
162
163 (defun wl-draft-insert-x-face-field ()
164   "Insert X-Face header."
165   (interactive)
166   (if (not (file-exists-p wl-x-face-file))
167       (error "File %s does not exist" wl-x-face-file)
168     (goto-char (point-min))
169     (search-forward mail-header-separator nil t)
170     (beginning-of-line)
171     (wl-draft-insert-x-face-field-here)
172     (run-hooks 'wl-draft-insert-x-face-field-hook))) ; highlight it if you want.
173
174 (defun wl-draft-insert-x-face-field-here ()
175   "Insert X-Face field at point."
176   (let ((x-face-string (elmo-get-file-string wl-x-face-file)))
177     (when (string-match "^\\(X-Face:\\)?[ \t\n]*" x-face-string)
178       (setq x-face-string (substring x-face-string (match-end 0))))
179     (insert "X-Face: " x-face-string))
180   (when (not (= (preceding-char) ?\n))  ; for chomped (choped) x-face-string
181     (insert ?\n))
182   ;; Insert X-Face-Version: field
183   (when (and (fboundp 'x-face-insert-version-header)
184              (boundp 'x-face-add-x-face-version-header)
185              x-face-add-x-face-version-header)
186     (x-face-insert-version-header)))
187
188 (defun wl-draft-setup ()
189   (let ((field wl-draft-fields)
190         cl)
191     (while field
192       (setq cl (append cl
193                        (list (cons (concat (car field) " ")
194                                    (concat (car field) " ")))))
195       (setq field (cdr field)))
196     (setq cl
197           (cons (cons (concat wl-draft-mime-bcc-field-name  ": ")
198                       (concat wl-draft-mime-bcc-field-name  ": "))
199                 cl))
200     (setq wl-draft-field-completion-list cl)
201     (setq wl-address-complete-header-regexp
202           (wl-regexp-opt
203            (append wl-address-complete-header-list
204                    (list (concat wl-draft-mime-bcc-field-name  ":")))))))
205
206 (defun wl-draft-make-mail-followup-to (recipients)
207   (if (elmo-list-member
208        (or wl-user-mail-address-list
209            (list (wl-address-header-extract-address wl-from)))
210        recipients)
211       (let ((rlist (elmo-list-delete
212                     (or wl-user-mail-address-list
213                         (list (wl-address-header-extract-address wl-from)))
214                     recipients
215                     (lambda (elem list)
216                       (elmo-delete-if
217                        (lambda (item) (string= (downcase elem)
218                                                (downcase item)))
219                        list)))))
220         (if (elmo-list-member rlist (mapcar 'downcase
221                                             wl-subscribed-mailing-list))
222             rlist
223           (append rlist (list (wl-address-header-extract-address
224                                wl-from)))))
225     recipients))
226
227 (defun wl-draft-delete-myself-from-cc (to cc)
228   (let ((myself (or wl-user-mail-address-list
229                     (list (wl-address-header-extract-address wl-from)))))
230     (cond (wl-draft-always-delete-myself ; always-delete option
231            (elmo-list-delete myself cc
232                              (lambda (elem list)
233                                (elmo-delete-if
234                                 (lambda (item) (string= (downcase elem)
235                                                         (downcase item)))
236                                 list))))
237           ((elmo-list-member (append to cc) ; subscribed mailing-list
238                              (mapcar 'downcase wl-subscribed-mailing-list))
239            (elmo-list-delete myself cc
240                              (lambda (elem list)
241                                (elmo-delete-if
242                                 (lambda (item) (string= (downcase elem)
243                                                         (downcase item)))
244                                 list))))
245           (t cc))))
246
247 (defun wl-draft-forward (original-subject summary-buf)
248   (let (references parent-folder)
249     (with-current-buffer summary-buf
250       (setq parent-folder (wl-summary-buffer-folder-name)))
251     (with-current-buffer (wl-message-get-original-buffer)
252       (setq references (nconc
253                         (std11-field-bodies '("References" "In-Reply-To"))
254                         (list (std11-field-body "Message-Id"))))
255       (setq references (delq nil references)
256             references (mapconcat 'identity references " ")
257             references (wl-draft-parse-msg-id-list-string references)
258             references (wl-delete-duplicates references)
259             references (when references
260                          (mapconcat 'identity references "\n\t"))))
261     (and wl-draft-use-frame
262          (get-buffer-window summary-buf)
263          (select-window (get-buffer-window summary-buf)))
264     (wl-draft (list (cons 'To "")
265                     (cons 'Subject
266                           (concat wl-forward-subject-prefix original-subject))
267                     (cons 'References references))
268               nil nil nil nil parent-folder))
269   (goto-char (point-max))
270   (wl-draft-insert-message)
271   (mail-position-on-field "To"))
272
273 (defun wl-draft-strip-subject-re (subject)
274   "Remove \"Re:\" from SUBJECT string. Shamelessly copied from Gnus."
275   (if (string-match wl-subject-prefix-regexp subject)
276       (substring subject (match-end 0))
277     subject))
278
279 (defun wl-draft-self-reply-p ()
280   "Return t when From address in the current message is user's self one or not."
281   (wl-address-user-mail-address-p (or (elmo-field-body "From") "")))
282
283 (defun wl-draft-reply (buf with-arg summary-buf)
284   "Reply to BUF buffer message.
285 Reply to author if WITH-ARG is non-nil."
286 ;;;(save-excursion
287   (let (r-list
288         to mail-followup-to cc subject in-reply-to references newsgroups
289         to-alist cc-alist decoder parent-folder)
290     (when (buffer-live-p summary-buf)
291       (with-current-buffer summary-buf
292         (setq parent-folder (wl-summary-buffer-folder-name))))
293     (set-buffer (or buf mime-mother-buffer))
294     (setq r-list (if with-arg wl-draft-reply-with-argument-list
295                    wl-draft-reply-without-argument-list))
296     (catch 'done
297       (while r-list
298         (when (let ((condition (car (car r-list))))
299                 (cond ((stringp condition)
300                        (std11-field-body condition))
301                       ((listp condition)
302                        (catch 'done
303                          (while condition
304                            (cond
305                             ((stringp (car condition))
306                              (or (std11-field-body (car condition))
307                                  (throw 'done nil)))
308                             ((symbolp (car condition))
309                              (or (funcall (car condition))
310                                  (throw 'done nil)))
311                             (t
312                              (debug)))
313                            (setq condition (cdr condition)))
314                          t))
315                       ((symbolp condition)
316                        (funcall condition))))
317           (let ((r-to-list (nth 0 (cdr (car r-list))))
318                 (r-cc-list (nth 1 (cdr (car r-list))))
319                 (r-ng-list (nth 2 (cdr (car r-list)))))
320             (when (and (member "Followup-To" r-ng-list)
321                        (string= (std11-field-body "Followup-To") "poster"))
322               (setq r-to-list (cons "From" r-to-list))
323               (setq r-ng-list (delete "Followup-To"
324                                       (copy-sequence r-ng-list))))
325             (if (and r-to-list (symbolp r-to-list))
326                 (setq to (wl-concat-list (funcall r-to-list) ","))
327               (setq to (wl-concat-list (cons to
328                                              (elmo-multiple-fields-body-list
329                                               r-to-list))
330                                        ",")))
331             (if (and r-cc-list (symbolp r-cc-list))
332                 (setq cc (wl-concat-list (funcall r-cc-list) ","))
333               (setq cc (wl-concat-list (cons cc
334                                              (elmo-multiple-fields-body-list
335                                               r-cc-list))
336                                        ",")))
337             (if (and r-ng-list (symbolp r-ng-list))
338                 (setq newsgroups (wl-concat-list (funcall r-ng-list) ","))
339               (setq newsgroups (wl-concat-list (cons newsgroups
340                                                      (std11-field-bodies
341                                                       r-ng-list))
342                                                ","))))
343           (throw 'done nil))
344         (setq r-list (cdr r-list)))
345       (error "No match field: check your `wl-draft-reply-%s-argument-list'"
346              (if with-arg "with" "without")))
347     (setq subject (std11-field-body "Subject"))
348     (setq to (wl-parse-addresses to)
349           cc (wl-parse-addresses cc))
350     (with-temp-buffer                   ; to keep raw buffer unibyte.
351       (elmo-set-buffer-multibyte default-enable-multibyte-characters)
352       (setq decoder (mime-find-field-decoder 'Subject 'plain))
353       (setq subject (if (and subject decoder)
354                         (funcall decoder subject) subject))
355       (setq to-alist
356             (mapcar
357              (lambda (addr)
358                (setq decoder (mime-find-field-decoder 'To 'plain))
359                (cons (nth 1 (std11-extract-address-components addr))
360                      (if decoder (funcall decoder addr) addr)))
361              to))
362       (setq cc-alist
363             (mapcar
364              (lambda (addr)
365                (setq decoder (mime-find-field-decoder 'Cc 'plain))
366                (cons (nth 1 (std11-extract-address-components addr))
367                      (if decoder (funcall decoder addr) addr)))
368              cc)))
369     (and wl-reply-subject-prefix
370          (setq subject (concat wl-reply-subject-prefix
371                                (wl-draft-strip-subject-re
372                                 (or subject "")))))
373     (setq in-reply-to (std11-field-body "Message-Id"))
374     (setq references (nconc
375                       (std11-field-bodies '("References" "In-Reply-To"))
376                       (list in-reply-to)))
377     (setq to (delq nil (mapcar 'car to-alist)))
378     (setq cc (delq nil (mapcar 'car cc-alist)))
379     ;; if subscribed mailing list is contained in cc or to
380     ;; and myself is contained in cc,
381     ;; delete myself from cc.
382     (setq cc (wl-draft-delete-myself-from-cc to cc))
383     (when wl-insert-mail-followup-to
384       (setq mail-followup-to
385             (wl-draft-make-mail-followup-to (append to cc)))
386       (setq mail-followup-to (wl-delete-duplicates mail-followup-to nil t)))
387     (with-temp-buffer                   ; to keep raw buffer unibyte.
388       (elmo-set-buffer-multibyte default-enable-multibyte-characters)
389       (setq newsgroups (wl-parse newsgroups
390                                  "[ \t\f\r\n,]*\\([^ \t\f\r\n,]+\\)")
391             newsgroups (wl-delete-duplicates newsgroups)
392             newsgroups
393             (if newsgroups
394                 (mapconcat
395                  (lambda (grp)
396                    (setq decoder (mime-find-field-decoder 'Newsgroups 'plain))
397                    (if decoder (funcall decoder grp) grp))
398                  newsgroups ","))))
399     (setq to (wl-delete-duplicates to nil t))
400     (setq cc (wl-delete-duplicates
401               (append (wl-delete-duplicates cc nil t)
402                       to (copy-sequence to))
403               t t))
404     (and to (setq to (mapconcat
405                       '(lambda (addr)
406                          (if wl-draft-reply-use-address-with-full-name
407                              (or (cdr (assoc addr to-alist)) addr)
408                            addr))
409                       to ",\n\t")))
410     (and cc (setq cc (mapconcat
411                       '(lambda (addr)
412                          (if wl-draft-reply-use-address-with-full-name
413                              (or (cdr (assoc addr cc-alist)) addr)
414                            addr))
415                       cc ",\n\t")))
416     (and mail-followup-to
417          (setq mail-followup-to
418                (mapconcat
419                 '(lambda (addr)
420                    (if wl-draft-reply-use-address-with-full-name
421                        (or (cdr (assoc addr (append to-alist cc-alist))) addr)
422                      addr))
423                 mail-followup-to ",\n\t")))
424     (and (null to) (setq to cc cc nil))
425     (setq references (delq nil references)
426           references (mapconcat 'identity references " ")
427           references (wl-draft-parse-msg-id-list-string references)
428           references (wl-delete-duplicates references)
429           references (if references
430                          (mapconcat 'identity references "\n\t")))
431     (and wl-draft-use-frame
432          (get-buffer-window summary-buf)
433          (select-window (get-buffer-window summary-buf)))
434     (wl-draft (list (cons 'To to)
435                     (cons 'Cc cc)
436                     (cons 'Newsgroups newsgroups)
437                     (cons 'Subject subject)
438                     (cons 'In-Reply-To in-reply-to)
439                     (cons 'References references)
440                     (cons 'Mail-Followup-To mail-followup-to))
441               nil nil nil nil parent-folder)
442     (setq wl-draft-reply-buffer buf)
443     (run-hooks 'wl-reply-hook)))
444
445 (defun wl-draft-reply-position (position)
446   (cond ((eq position 'body)
447          (wl-draft-body-goto-top))
448         ((eq position 'bottom)
449          (wl-draft-body-goto-bottom))
450         ((eq position 'top)
451          (goto-char (point-min)))
452         ((and (stringp position)
453               (std11-field-body position))
454          (progn (mail-position-on-field position)
455                 (wl-draft-beginning-of-line)))
456         ((listp position)
457          (while (car position)
458            (wl-draft-reply-position (car position))
459            (setq position (cdr position))))))
460
461 (defun wl-draft-add-references ()
462   (wl-draft-add-in-reply-to "References"))
463
464 (defun wl-draft-add-in-reply-to (&optional alt-field)
465   (let* ((mes-id (save-excursion
466                    (set-buffer mail-reply-buffer)
467                    (std11-field-body "message-id")))
468          (field (or alt-field "In-Reply-To"))
469          (ref (std11-field-body field))
470          (ref-list nil) (st nil))
471     (when (and mes-id ref)
472       (while (string-match "<[^>]+>" ref st)
473         (setq ref-list
474               (cons (substring ref (match-beginning 0) (setq st (match-end 0)))
475                     ref-list)))
476       (when (and ref-list
477                  (member mes-id ref-list))
478         (setq mes-id nil)))
479     (when mes-id
480       (save-excursion
481         (when (mail-position-on-field field)
482           (forward-line)
483           (while (looking-at "^[ \t]")
484             (forward-line))
485           (setq mes-id (concat "\t" mes-id "\n")))
486         (insert mes-id))
487       t)))
488
489 (defun wl-draft-yank-from-mail-reply-buffer (decode-it
490                                              &optional ignored-fields)
491   (interactive)
492   (save-restriction
493     (narrow-to-region (point)(point))
494     (insert
495      (with-current-buffer mail-reply-buffer
496        (when decode-it
497          (decode-mime-charset-region (point-min) (point-max)
498                                      wl-mime-charset))
499        (buffer-substring-no-properties
500         (point-min) (point-max))))
501     (when ignored-fields
502       (goto-char (point-min))
503       (wl-draft-delete-fields ignored-fields))
504     (goto-char (point-max))
505     (push-mark (point) nil t)
506     (goto-char (point-min)))
507   (let ((beg (point)))
508     (cond (mail-citation-hook (run-hooks 'mail-citation-hook))
509           (mail-yank-hooks (run-hooks 'mail-yank-hooks))
510           (wl-draft-cite-function (funcall wl-draft-cite-function))) ; default cite
511     (run-hooks 'wl-draft-cited-hook)
512     (when (if wl-draft-add-references
513               (wl-draft-add-references)
514             (if wl-draft-add-in-reply-to
515                 (wl-draft-add-in-reply-to)))
516       (wl-highlight-headers 'for-draft)) ; highlight when added References:
517     (when wl-highlight-body-too
518       (wl-highlight-body-region beg (point-max)))))
519
520 (defun wl-message-news-p ()
521   "If exist valid Newsgroups field, return non-nil."
522   (std11-field-body "Newsgroups"))
523
524 (defun wl-message-field-exists-p (field)
525   "If FIELD exist and FIELD value is not empty, return non-nil."
526   (let ((value (std11-field-body field)))
527     (and value
528          (not (string= value "")))))
529
530 (defun wl-message-mail-p ()
531   "If exist To, Cc or Bcc field, return non-nil."
532   (or (wl-message-field-exists-p "To")
533       (wl-message-field-exists-p "Resent-to")
534       (wl-message-field-exists-p "Cc")
535       (wl-message-field-exists-p "Bcc")
536       (wl-message-field-exists-p wl-draft-mime-bcc-field-name)
537 ;;; This may be needed..
538 ;;;   (wl-message-field-exists-p "Fcc")
539       ))
540
541 (defun wl-draft-edit-string (string)
542   (let ((cur-buf (current-buffer))
543         (tmp-buf (get-buffer-create " *wl-draft-edit-string*"))
544         to subject in-reply-to cc references newsgroups mail-followup-to
545         content-type content-transfer-encoding from
546         body-beg)
547     (set-buffer tmp-buf)
548     (erase-buffer)
549     (insert string)
550     (setq to (std11-field-body "To"))
551     (setq to (and to
552                   (eword-decode-string
553                    (decode-mime-charset-string
554                     to
555                     wl-mime-charset))))
556     (setq subject (std11-field-body "Subject"))
557     (setq subject (and subject
558                        (eword-decode-string
559                         (decode-mime-charset-string
560                          subject
561                          wl-mime-charset))))
562     (setq from (std11-field-body "From")
563           from (and from
564                     (eword-decode-string
565                      (decode-mime-charset-string
566                       from
567                       wl-mime-charset))))
568     (setq in-reply-to (std11-field-body "In-Reply-To"))
569     (setq cc (std11-field-body "Cc"))
570     (setq cc (and cc
571                   (eword-decode-string
572                    (decode-mime-charset-string
573                     cc
574                     wl-mime-charset))))
575     (setq references (std11-field-body "References"))
576     (setq newsgroups (std11-field-body "Newsgroups"))
577     (setq mail-followup-to (std11-field-body "Mail-Followup-To"))
578     (setq content-type (std11-field-body "Content-Type"))
579     (setq content-transfer-encoding (std11-field-body "Content-Transfer-Encoding"))
580     (goto-char (point-min))
581     (or (re-search-forward "\n\n" nil t)
582         (search-forward (concat mail-header-separator "\n") nil t))
583     (unwind-protect
584         (set-buffer
585          (wl-draft (list
586                     (cons 'From
587                           (if (member
588                                (nth 1 (std11-extract-address-components from))
589                                wl-user-mail-address-list)
590                               from))
591                     (cons 'To to)
592                     (cons 'Cc cc)
593                     (cons 'Subject subject)
594                     (cons 'Newsgroups newsgroups)
595                     (cons 'Mail-Followup-To mail-followup-to)
596                     (cons 'In-Reply-To in-reply-to)
597                     (cons 'References references))
598                    content-type content-transfer-encoding
599                    (buffer-substring (point) (point-max))
600                    'edit-again))
601       (kill-buffer tmp-buf))
602     ;; Set cursor point to the top.
603     (goto-char (point-min))
604     (search-forward (concat mail-header-separator "\n") nil t)
605     (run-hooks 'wl-draft-reedit-hook)
606     (and to (mail-position-on-field "To"))))
607
608 (defun wl-draft-insert-current-message (dummy)
609   (interactive)
610   (let (original-buffer
611         mail-reply-buffer
612         mail-citation-hook mail-yank-hooks
613         wl-draft-add-references wl-draft-add-in-reply-to
614         wl-draft-cite-function)
615     (with-current-buffer wl-draft-buffer-cur-summary-buffer
616       (with-current-buffer wl-message-buffer
617         (setq original-buffer (wl-message-get-original-buffer))
618         (if (zerop
619              (with-current-buffer original-buffer
620                (buffer-size)))
621             (error "No current message"))))
622     (setq mail-reply-buffer original-buffer)
623     (wl-draft-yank-from-mail-reply-buffer
624      nil
625      wl-ignored-forwarded-headers)))
626
627 (defun wl-draft-insert-get-message (dummy)
628   (let ((fld (completing-read
629               "Folder name: "
630               (if (memq 'read-folder wl-use-folder-petname)
631                   (wl-folder-get-entity-with-petname)
632                 wl-folder-entity-hashtb)
633               nil nil wl-default-spec
634               'wl-read-folder-hist))
635         (number (call-interactively
636                  (function (lambda (num)
637                              (interactive "nNumber: ")
638                              num))))
639         (mail-reply-buffer (get-buffer-create "*wl-draft-insert-get-message*"))
640         mail-citation-hook mail-yank-hooks
641         wl-draft-cite-function)
642     (unwind-protect
643         (progn
644           (elmo-message-fetch (wl-folder-get-elmo-folder fld)
645                               number
646                               ;; No cache.
647                               (elmo-make-fetch-strategy 'entire)
648                               nil mail-reply-buffer)
649           (wl-draft-yank-from-mail-reply-buffer nil))
650       (kill-buffer mail-reply-buffer))))
651
652 ;;
653 ;; default body citation func
654 ;;
655 (defun wl-default-draft-cite ()
656   (let ((mail-yank-ignored-headers "[^:]+:")
657         (mail-yank-prefix "> ")
658         (summary-buf wl-current-summary-buffer)
659         (message-buf (get-buffer (wl-current-message-buffer)))
660         from date cite-title num entity)
661     (if (and summary-buf
662              (buffer-live-p summary-buf)
663              message-buf
664              (buffer-live-p message-buf))
665         (progn
666           (with-current-buffer summary-buf
667             (let ((elmo-mime-charset wl-summary-buffer-mime-charset))
668               (setq num (save-excursion
669                           (set-buffer message-buf)
670                           wl-message-buffer-cur-number))
671               (setq entity (elmo-msgdb-overview-get-entity
672                             num (wl-summary-buffer-msgdb)))
673               (setq date (elmo-msgdb-overview-entity-get-date entity))
674               (setq from (elmo-msgdb-overview-entity-get-from entity))))
675           (setq cite-title (format "At %s,\n%s wrote:"
676                                    (or date "some time ago")
677                                    (if wl-default-draft-cite-decorate-author
678                                        (funcall wl-summary-from-function
679                                                 (or from "you"))
680                                      (or from "you"))))))
681     (and cite-title
682          (insert cite-title "\n"))
683     (mail-indent-citation)))
684
685 (defvar wl-draft-buffer nil "Draft buffer to yank content.")
686 (defun wl-draft-yank-to-draft-buffer (buffer)
687   "Yank BUFFER content to `wl-draft-buffer'."
688   (set-buffer wl-draft-buffer)
689   (let ((mail-reply-buffer buffer))
690     (wl-draft-yank-from-mail-reply-buffer nil)
691     (kill-buffer buffer)))
692
693 (defun wl-draft-yank-original (&optional arg)
694   "Yank original message."
695   (interactive "P")
696   (if arg
697       (let (buf mail-reply-buffer)
698         (elmo-set-work-buf
699          (yank)
700          (setq buf (current-buffer)))
701         (setq mail-reply-buffer buf)
702         (wl-draft-yank-from-mail-reply-buffer nil))
703     (wl-draft-yank-current-message-entity)))
704
705 (defun wl-draft-hide (editing-buffer)
706   "Hide the editing draft buffer if possible."
707   (when (and editing-buffer
708              (buffer-live-p editing-buffer))
709     (set-buffer editing-buffer)
710     (let ((sum-buf wl-draft-buffer-cur-summary-buffer)
711           fld-buf sum-win fld-win)
712       (if (and wl-draft-use-frame
713                (> (length (visible-frame-list)) 1))
714           ;; hide draft frame
715           (delete-frame)
716         ;; hide draft window
717         (or (one-window-p)
718             (delete-window))
719         ;; stay folder window if required
720         (when wl-stay-folder-window
721           (if (setq fld-buf (get-buffer wl-folder-buffer-name))
722               (if (setq fld-win (get-buffer-window fld-buf))
723                   (select-window fld-win)
724                 (if wl-draft-resume-folder-window ;; resume folder window
725                     (switch-to-buffer fld-buf)))))
726         (if (buffer-live-p sum-buf)
727             (if (setq sum-win (get-buffer-window sum-buf t))
728                 ;; if Summary is on the frame, select it.
729                 (select-window sum-win)
730               ;; if summary is not on the frame, switch to it.
731               (if (and wl-stay-folder-window
732                        (or wl-draft-resume-folder-window fld-win))
733                   (wl-folder-select-buffer sum-buf)
734                 (switch-to-buffer sum-buf))))))))
735
736 (defun wl-draft-delete (editing-buffer)
737   "Kill the editing draft buffer and delete the file corresponds to it."
738   (save-excursion
739     (when editing-buffer
740       (set-buffer editing-buffer)
741       (if wl-draft-buffer-file-name
742           (progn
743             (if (file-exists-p wl-draft-buffer-file-name)
744                 (delete-file wl-draft-buffer-file-name))
745             (let ((msg (and wl-draft-buffer-file-name
746                             (string-match "[0-9]+$" wl-draft-buffer-file-name)
747                             (string-to-int
748                              (match-string 0 wl-draft-buffer-file-name)))))
749               (wl-draft-config-info-operation msg 'delete))))
750       (set-buffer-modified-p nil)               ; force kill
751       (kill-buffer editing-buffer))))
752
753 (defun wl-draft-kill (&optional force-kill)
754   "Kill current draft buffer and quit editing."
755   (interactive "P")
756   (save-excursion
757     (when (and (or (eq major-mode 'wl-draft-mode)
758                    (eq major-mode 'mail-mode))
759                (or force-kill
760                    (y-or-n-p "Kill Current Draft? ")))
761       (let ((cur-buf (current-buffer)))
762         (wl-draft-hide cur-buf)
763         (wl-draft-delete cur-buf)))
764     (message "")))
765
766 (defun wl-draft-fcc ()
767   "Add a new Fcc field, with file name completion."
768   (interactive)
769   (or (mail-position-on-field "fcc" t)  ;Put new field after exiting Fcc.
770       (mail-position-on-field "to"))
771   (insert "\nFcc: "))
772
773 ;; Imported from message.el.
774 (defun wl-draft-elide-region (b e)
775   "Elide the text in the region.
776 An ellipsis (from `wl-draft-elide-ellipsis') will be inserted where the
777 text was killed."
778   (interactive "r")
779   (kill-region b e)
780   (insert wl-draft-elide-ellipsis))
781
782 ;; Imported from message.el.
783 (defun wl-draft-beginning-of-line (&optional n)
784   "Move point to beginning of header value or to beginning of line."
785   (interactive "p")
786   (let ((zrs 'zmacs-region-stays))
787     (when (and (interactive-p) (boundp zrs))
788       (set zrs t)))
789   (if (wl-draft-point-in-header-p)
790       (let* ((here (point))
791              (bol (progn (beginning-of-line n) (point)))
792              (eol (line-end-position))
793              (eoh (and (looking-at "[^ \t]")
794                        (re-search-forward ": *" eol t))))
795         (if (and eoh (or (> here eoh) (= here bol)))
796             (goto-char eoh)
797           (goto-char bol)))
798     (beginning-of-line n)))
799
800 (defun wl-draft-point-in-header-p ()
801   "Return t if point is in the header."
802   (save-excursion
803     (let ((p (point)))
804       (goto-char (point-min))
805       (not (re-search-forward
806             (concat "^" (regexp-quote mail-header-separator) "\n")
807             p t)))))
808
809 ;; function for wl-sent-message-via
810
811 (defmacro wl-draft-sent-message-p (type)
812   (` (eq (nth 1 (assq (, type) wl-sent-message-via)) 'sent)))
813
814 (defmacro wl-draft-set-sent-message (type result &optional server-port)
815   (` (let ((element (assq (, type) wl-sent-message-via)))
816        (if element
817            (unless (eq (nth 1 element) (, result))
818              (setcdr element (list (, result) (, server-port)))
819              (setq wl-sent-message-modified t))
820          (push (list (, type) (, result) (, server-port)) wl-sent-message-via)
821          (setq wl-sent-message-modified t)))))
822
823 (defun wl-draft-sent-message-results ()
824   (let ((results wl-sent-message-via)
825         unplugged-via sent-via)
826     (while results
827       (cond ((eq (nth 1 (car results)) 'unplugged)
828              (push (caar results) unplugged-via))
829             ((eq (nth 1 (car results)) 'sent)
830              (push (caar results) sent-via)))
831       (setq results (cdr results)))
832     (list unplugged-via sent-via)))
833
834 (defun wl-draft-write-sendlog (status proto server to id)
835   "Write send log file, if `wl-draft-sendlog' is non-nil."
836   (when wl-draft-sendlog
837     (with-temp-buffer
838       (let* ((filename (expand-file-name wl-draft-sendlog-filename
839                                          elmo-msgdb-directory))
840              (filesize (nth 7 (file-attributes filename)))
841              (server (if server (concat " server=" server) ""))
842              (to (if to (cond
843                          ((memq proto '(fcc queue))
844                           (format " folder=\"%s\"" to))
845                          ((eq proto 'nntp)
846                           (format " ng=<%s>" to))
847                          (t
848                           (concat " to="
849                                   (mapconcat
850                                    'identity
851                                    (mapcar '(lambda(x) (format "<%s>" x)) to)
852                                    ","))))
853                    ""))
854              (id (if id (concat " id=" id) ""))
855              (time (format-time-string "%Y/%m/%d %T")))
856         (insert (format "%s proto=%s stat=%s%s%s%s\n"
857                         time proto status server to id))
858         (if (and wl-draft-sendlog-max-size filesize
859                  (> filesize wl-draft-sendlog-max-size))
860             (rename-file filename (concat filename ".old") t))
861         (if (file-writable-p filename)
862             (write-region-as-binary (point-min) (point-max)
863                                     filename t 'no-msg)
864           (message "%s is not writable." filename))))))
865
866 (defun wl-draft-get-header-delimiter (&optional delete)
867   ;; If DELETE is non-nil, replace the header delimiter with a blank line
868   (let (delimline)
869     (goto-char (point-min))
870     (when (re-search-forward
871            (concat "^" (regexp-quote mail-header-separator) "$\\|^$") nil t)
872       (replace-match "")
873       (if delete
874           (forward-char -1))
875       (setq delimline (point-marker)))
876     delimline))
877
878 (defun wl-draft-send-mail-with-qmail ()
879   "Pass the prepared message buffer to qmail-inject.
880 Refer to the documentation for the variable `send-mail-function'
881 to find out how to use this."
882   (if (and wl-draft-qmail-send-plugged
883            (not (elmo-plugged-p)))
884       (wl-draft-set-sent-message 'mail 'unplugged)
885     ;; send the message
886     (run-hooks 'wl-mail-send-pre-hook) ;; X-PGP-Sig, Cancel-Lock
887     (let ((id (std11-field-body "Message-ID"))
888           (to (std11-field-body "To")))
889       (case
890           (as-binary-process
891            (apply
892             'call-process-region 1 (point-max) wl-qmail-inject-program
893             nil nil nil
894             wl-qmail-inject-args))
895         ;; qmail-inject doesn't say anything on it's stdout/stderr,
896         ;; we have to look at the retval instead
897         (0   (progn
898                (wl-draft-set-sent-message 'mail 'sent)
899                (wl-draft-write-sendlog 'ok 'qmail nil (list to) id)))
900         (1   (error "`qmail-inject' reported permanent failure"))
901         (111 (error "`qmail-inject' reported transient failure"))
902         ;; should never happen
903         (t   (error "`qmail-inject' reported unknown failure"))))))
904
905 (defun wl-draft-parse-msg-id-list-string (string)
906   "Get msg-id list from STRING."
907   (let (msg-id-list)
908     (dolist (parsed-id (std11-parse-msg-ids-string string))
909       (when (eq (car parsed-id) 'msg-id)
910         (setq msg-id-list (cons (std11-msg-id-string parsed-id)
911                                 msg-id-list))))
912     (nreverse msg-id-list)))
913
914 (defun wl-draft-eword-encode-address-list (string &optional column)
915   "Encode header field STRING as list of address, and return the result.
916 Cause an error when STRING contains invalid address.
917 Optional argument COLUMN is start-position of the field."
918   (car (eword-encode-rword-list
919         (or column eword-encode-default-start-column)
920         (eword-encode-addresses-to-rword-list
921          (wl-draft-std11-parse-addresses (std11-lexical-analyze string))))))
922
923 (defun wl-draft-std11-parse-addresses (lal)
924   (let ((ret (std11-parse-address lal)))
925     (when (and (not (and (eq (length lal) 1)
926                          (eq (car (car lal)) 'spaces)))
927                (null ret))
928       (error "Error while parsing address"))
929     (if ret
930         (let ((dest (list (car ret))))
931           (setq lal (cdr ret))
932           (while (and (setq ret (std11-parse-ascii-token lal))
933                       (string-equal (cdr (assq 'specials (car ret))) ",")
934                       (setq ret (std11-parse-address (cdr ret)))
935                       )
936             (setq dest (cons (car ret) dest))
937             (setq lal (cdr ret)))
938           (while (eq 'spaces (car (car lal)))
939             (setq lal (cdr lal)))
940           (if lal (error "Error while parsing address"))
941           (nreverse dest)))))
942
943 (defun wl-draft-parse-mailbox-list (field &optional remove-group-list)
944   "Get mailbox list of FIELD from current buffer.
945 The buffer is expected to be narrowed to just the headers of the message.
946 If optional argument REMOVE-GROUP-LIST is non-nil, remove group list content
947 from current buffer."
948   (save-excursion
949     (let ((case-fold-search t)
950           (inhibit-read-only t)
951           addresses address
952           mailbox-list beg seq has-group-list)
953       (goto-char (point-min))
954       (while (re-search-forward (concat "^" (regexp-quote field) "[\t ]*:")
955                                 nil t)
956         (setq beg (point))
957         (re-search-forward "^[^ \t]" nil 'move)
958         (beginning-of-line)
959         (skip-chars-backward "\n")
960         (setq seq (std11-lexical-analyze
961                    (buffer-substring-no-properties beg (point))))
962         (setq addresses (wl-draft-std11-parse-addresses seq))
963         (while addresses
964           (cond ((eq (car (car addresses)) 'group)
965                  (setq has-group-list t)
966                  (setq mailbox-list
967                        (nconc mailbox-list
968                               (mapcar
969                                'std11-address-string
970                                (nth 2 (car addresses))))))
971                 ((eq (car (car addresses)) 'mailbox)
972                  (setq address (nth 1 (car addresses)))
973                  (setq mailbox-list
974                        (nconc mailbox-list
975                               (list
976                                (std11-addr-to-string
977                                 (if (eq (car address) 'phrase-route-addr)
978                                     (nth 2 address)
979                                   (cdr address))))))))
980           (setq addresses (cdr addresses)))
981         (when (and remove-group-list has-group-list)
982           (delete-region beg (point))
983           (insert (wl-address-string-without-group-list-contents seq))))
984       mailbox-list)))
985
986 (defun wl-draft-deduce-address-list (buffer header-start header-end)
987   "Get address list suitable for smtp RCPT TO:<address>.
988 Group list content is removed if `wl-draft-remove-group-list-contents' is
989 non-nil."
990   (let ((fields (if (and wl-draft-doing-mime-bcc
991                          wl-draft-disable-bcc-for-mime-bcc)
992                     '("to" "cc")
993                   '("to" "cc" "bcc")))
994         (resent-fields '("resent-to" "resent-cc" "resent-bcc"))
995         (case-fold-search t)
996         addrs recipients)
997     (save-excursion
998       (save-restriction
999         (narrow-to-region header-start header-end)
1000         (goto-char (point-min))
1001         (save-excursion
1002           (if (re-search-forward "^resent-to[\t ]*:" nil t)
1003               (setq fields resent-fields)))
1004         (while fields
1005           (setq recipients
1006                 (nconc recipients
1007                        (wl-draft-parse-mailbox-list
1008                         (car fields)
1009                         wl-draft-remove-group-list-contents)))
1010           (setq fields (cdr fields)))
1011         recipients))))
1012
1013 ;;
1014 ;; from Semi-gnus
1015 ;;
1016 (defun wl-draft-send-mail-with-smtp ()
1017   "Send the prepared message buffer with SMTP."
1018   (require 'smtp)
1019   (let* ((errbuf (if mail-interactive
1020                      (generate-new-buffer " smtp errors")
1021                    0))
1022          (case-fold-search t)
1023          (default-case-fold-search t)
1024          (sender (or wl-envelope-from
1025                      (wl-address-header-extract-address wl-from)))
1026          (delimline (save-excursion
1027                       (goto-char (point-min))
1028                       (re-search-forward
1029                        (concat "^" (regexp-quote mail-header-separator)
1030                                "$\\|^$") nil t)
1031                       (point-marker)))
1032          (smtp-server
1033           (or wl-smtp-posting-server smtp-server "localhost"))
1034          (smtp-service (or wl-smtp-posting-port smtp-service))
1035          (smtp-local-domain (or smtp-local-domain wl-local-domain))
1036          (id (std11-field-body "message-id"))
1037          recipients)
1038     (if (not (elmo-plugged-p smtp-server smtp-service))
1039         (wl-draft-set-sent-message 'mail 'unplugged
1040                                    (cons smtp-server smtp-service))
1041       (unwind-protect
1042           (save-excursion
1043             ;; Instead of `smtp-deduce-address-list'.
1044             (setq recipients (wl-draft-deduce-address-list
1045                               (current-buffer) (point-min) delimline))
1046             (unless recipients (error "No recipients"))
1047             ;; Insert an extra newline if we need it to work around
1048             ;; Sun's bug that swallows newlines.
1049             (goto-char (1+ delimline))
1050             (if (eval mail-mailer-swallows-blank-line)
1051                 (newline))
1052             (run-hooks 'wl-mail-send-pre-hook) ;; X-PGP-Sig, Cancel-Lock
1053             (if mail-interactive
1054                 (save-excursion
1055                   (set-buffer errbuf)
1056                   (erase-buffer)))
1057             (wl-draft-delete-field "bcc" delimline)
1058             (wl-draft-delete-field "resent-bcc" delimline)
1059             (let (process-connection-type)
1060               (as-binary-process
1061                (when recipients
1062                  (wl-smtp-extension-bind
1063                   (condition-case err
1064                       (smtp-send-buffer sender recipients (current-buffer))
1065                     (error
1066                      (wl-draft-write-sendlog 'failed 'smtp smtp-server
1067                                              recipients id)
1068                      (if (and (eq (car err) 'smtp-response-error)
1069                               (= (nth 1 err) 535))
1070                          (elmo-remove-passwd
1071                           (wl-smtp-password-key
1072                            smtp-sasl-user-name
1073                            (car smtp-sasl-mechanisms)
1074                            smtp-server)))
1075                      (signal (car err) (cdr err)))
1076                     (quit
1077                      (wl-draft-write-sendlog 'uncertain 'smtp smtp-server
1078                                              recipients id)
1079                      (signal (car err) (cdr err)))))
1080                  (wl-draft-set-sent-message 'mail 'sent)
1081                  (wl-draft-write-sendlog
1082                   'ok 'smtp smtp-server recipients id)))))
1083         (if (bufferp errbuf)
1084             (kill-buffer errbuf))))))
1085
1086 (defun wl-draft-send-mail-with-pop-before-smtp ()
1087   "Send the prepared message buffer with POP-before-SMTP."
1088   (require 'elmo-pop3)
1089   (let ((session
1090          (luna-make-entity
1091           'elmo-pop3-folder
1092           :user   (or wl-pop-before-smtp-user
1093                       elmo-pop3-default-user)
1094           :server (or wl-pop-before-smtp-server
1095                       elmo-pop3-default-server)
1096           :port   (or wl-pop-before-smtp-port
1097                       elmo-pop3-default-port)
1098           :auth   (or wl-pop-before-smtp-authenticate-type
1099                       elmo-pop3-default-authenticate-type)
1100           :stream-type (or wl-pop-before-smtp-stream-type
1101                            elmo-pop3-default-stream-type))))
1102     (condition-case error
1103         (progn
1104           (elmo-pop3-get-session session)
1105           (when session (elmo-network-close-session session)))
1106       (error
1107        (elmo-network-close-session session)
1108        (unless (string= (nth 1 error) "Unplugged")
1109          (signal (car error)(cdr error))))))
1110   (wl-draft-send-mail-with-smtp))
1111
1112 (defun wl-draft-insert-required-fields (&optional force-msgid)
1113   "Insert Message-ID, Date, and From field.
1114 If FORCE-MSGID, insert message-id regardless of `wl-insert-message-id'."
1115   ;; Insert Message-Id field...
1116   (goto-char (point-min))
1117   (when (and (or force-msgid
1118                  wl-insert-message-id)
1119              (not (re-search-forward "^Message-ID[ \t]*:" nil t)))
1120     (insert (concat "Message-ID: "
1121                     (funcall wl-message-id-function)
1122                     "\n")))
1123   ;; Insert date field.
1124   (goto-char (point-min))
1125   (or (re-search-forward "^Date[ \t]*:" nil t)
1126       (wl-draft-insert-date-field))
1127   ;; Insert from field.
1128   (goto-char (point-min))
1129   (or (re-search-forward "^From[ \t]*:" nil t)
1130       (wl-draft-insert-from-field)))
1131
1132 (defun wl-draft-normal-send-func (editing-buffer kill-when-done)
1133   "Send the message in the current buffer."
1134   (save-restriction
1135     (narrow-to-region (goto-char (point-min))
1136                       (if (re-search-forward
1137                            (concat
1138                             "^" (regexp-quote mail-header-separator) "$")
1139                            nil t)
1140                           (match-beginning 0)
1141                         (point-max)))
1142     (wl-draft-insert-required-fields)
1143     ;; ignore any blank lines in the header
1144     (while (progn (goto-char (point-min))
1145                   (re-search-forward "\n[ \t]*\n\n*" nil t))
1146       (replace-match "\n"))
1147     (goto-char (point-min))
1148     (while (re-search-forward 
1149             "^[^ \t\n:]+:[ \t]*\\(.*\\(\n[ \t].*\\)*\\)\n"
1150             nil t)
1151       (when (string= "" (match-string 1))
1152         (replace-match ""))))
1153 ;;;  (run-hooks 'wl-mail-send-pre-hook) ;; X-PGP-Sig, Cancel-Lock
1154   (wl-draft-dispatch-message)
1155   (when kill-when-done
1156     ;; hide editing-buffer.
1157     (wl-draft-hide editing-buffer)
1158     ;; delete editing-buffer and its file.
1159     (wl-draft-delete editing-buffer)))
1160
1161 (defun wl-draft-dispatch-message (&optional mes-string)
1162   "Send the message in the current buffer.  Not modified the header fields."
1163   (let (delimline mime-bcc)
1164     (if (and wl-draft-verbose-send mes-string)
1165         (message "%s" mes-string))
1166     ;; get fcc folders.
1167     (setq delimline (wl-draft-get-header-delimiter t))
1168     (unless wl-draft-fcc-list
1169       (setq wl-draft-fcc-list (wl-draft-get-fcc-list delimline)))
1170     ;;
1171     (setq wl-sent-message-modified nil)
1172     (unwind-protect
1173         (progn
1174           (if (and (wl-message-mail-p)
1175                    (not (wl-draft-sent-message-p 'mail)))
1176               (if (or (not (or wl-draft-force-queuing
1177                                wl-draft-force-queuing-mail))
1178                       (memq 'mail wl-sent-message-queued))
1179                   (progn
1180                     (setq mime-bcc (wl-draft-mime-bcc-field))
1181                     (funcall wl-draft-send-mail-function)
1182                     (when (not (zerop (length mime-bcc)))
1183                       (wl-draft-do-mime-bcc mime-bcc)))
1184                 (push 'mail wl-sent-message-queued)
1185                 (wl-draft-set-sent-message 'mail 'unplugged)))
1186           (if (and (wl-message-news-p)
1187                    (not (wl-draft-sent-message-p 'news))
1188                    (not (wl-message-field-exists-p "Resent-to")))
1189               (if (or (not (or wl-draft-force-queuing
1190                                wl-draft-force-queuing-news))
1191                       (memq 'news wl-sent-message-queued))
1192                   (funcall wl-draft-send-news-function)
1193                 (push 'news wl-sent-message-queued)
1194                 (wl-draft-set-sent-message 'news 'unplugged))))
1195       (let* ((status (wl-draft-sent-message-results))
1196              (unplugged-via (car status))
1197              (sent-via (nth 1 status)))
1198         ;; If one sent, process fcc folder.
1199         (if (and sent-via wl-draft-fcc-list)
1200             (progn
1201               (wl-draft-do-fcc (wl-draft-get-header-delimiter)
1202                                wl-draft-fcc-list)
1203               (setq wl-draft-fcc-list nil)))
1204         (if wl-draft-use-cache
1205             (let ((id (std11-field-body "Message-ID"))
1206                   (elmo-enable-disconnected-operation t))
1207               (elmo-file-cache-save (elmo-file-cache-get-path id)
1208                                     nil)))
1209         ;; If one unplugged, append queue.
1210         (when (and unplugged-via
1211                    wl-sent-message-modified)
1212           (if wl-draft-enable-queuing
1213               (progn
1214                 (wl-draft-queue-append wl-sent-message-via)
1215                 (setq wl-sent-message-modified 'requeue))
1216             (error "Unplugged")))
1217         (when wl-draft-verbose-send
1218           (if (and unplugged-via sent-via);; combined message
1219               (progn
1220                 (setq wl-draft-verbose-msg
1221                       (format "Sending%s and Queuing%s..."
1222                               sent-via unplugged-via))
1223                 (message "%sdone" wl-draft-verbose-msg))
1224             (if mes-string
1225                 (message "%s%s"
1226                          mes-string
1227                          (if sent-via "done" "failed"))))))))
1228   (not wl-sent-message-modified)) ;; return value
1229
1230 (defun wl-draft-raw-send (&optional kill-when-done force-pre-hook mes-string)
1231   "Force send current buffer as raw message."
1232   (interactive)
1233   (save-excursion
1234     (let (wl-interactive-send
1235 ;;;       wl-draft-verbose-send
1236           (wl-mail-send-pre-hook (and force-pre-hook wl-mail-send-pre-hook))
1237           (wl-news-send-pre-hook (and force-pre-hook wl-news-send-pre-hook))
1238           mail-send-hook
1239           mail-send-actions)
1240       (wl-draft-send kill-when-done mes-string))))
1241
1242 (defun wl-draft-clone-local-variables ()
1243   (let ((locals (buffer-local-variables))
1244         result)
1245     (while locals
1246       (when (and (consp (car locals))
1247                  (car (car locals))
1248                  (string-match wl-draft-clone-local-variable-regexp
1249                                (symbol-name (car (car locals)))))
1250         (wl-append result (list (car (car locals)))))
1251       (setq locals (cdr locals)))
1252     result))
1253
1254 (defcustom wl-draft-send-confirm-with-preview t
1255   "Non-nil to invoke preview through confirmation of sending.
1256 This variable is valid when `wl-interactive-send' has non-nil value."
1257   :type 'boolean
1258   :group 'wl-draft)
1259
1260 (defun wl-draft-send-confirm ()
1261   (let (answer)
1262     (unwind-protect
1263         (condition-case quit
1264             (progn
1265               (when wl-draft-send-confirm-with-preview
1266                 (wl-draft-preview-message))
1267               (save-excursion
1268                 (goto-char (point-min)) ; to show recipients in header
1269                 (catch 'done
1270                   (while t
1271                     (message "Send current draft? <y/n/j(up)/k(down)> ")
1272                     (setq answer (let ((cursor-in-echo-area t)) (read-char)))
1273                     (cond
1274                      ((or (eq answer ?y)
1275                           (eq answer ?Y)
1276                           (eq answer ? ))
1277                   (throw 'done t))
1278                      ((or (eq answer ?v)
1279                           (eq answer ?j)
1280                           (eq answer ?J))
1281                       (condition-case err
1282                           (scroll-up)
1283                         (error nil)))
1284                      ((or (eq answer ?^)
1285                           (eq answer ?k)
1286                           (eq answer ?K))
1287                       (condition-case err
1288                           (scroll-down)
1289                         (error nil)))
1290                      (t
1291                       (throw 'done nil)))))))
1292           (quit nil))
1293       (when wl-draft-send-confirm-with-preview
1294         (mime-preview-quit)))))
1295
1296 (defun wl-draft-send (&optional kill-when-done mes-string)
1297   "Send current draft message.
1298 If KILL-WHEN-DONE is non-nil, current draft buffer is killed"
1299   (interactive)
1300   ;; Don't call this explicitly.
1301   ;; Added to 'wl-draft-send-hook (by teranisi)
1302   ;; (wl-draft-config-exec)
1303   (run-hooks 'wl-draft-send-hook)
1304   (when (or (not wl-interactive-send)
1305             (wl-draft-send-confirm))
1306     (let ((send-mail-function 'wl-draft-raw-send)
1307           (editing-buffer (current-buffer))
1308           (sending-buffer (wl-draft-generate-clone-buffer
1309                            " *wl-draft-sending-buffer*"
1310                            (append wl-draft-config-variables
1311                                    (wl-draft-clone-local-variables))))
1312           (wl-draft-verbose-msg nil)
1313           err)
1314       (unwind-protect
1315           (save-excursion
1316             (set-buffer sending-buffer)
1317             (if (and (not (wl-message-mail-p))
1318                      (not (wl-message-news-p)))
1319                 (error "No recipient is specified"))
1320             (expand-abbrev)             ; for mail-abbrevs
1321             (let ((mime-header-encode-method-alist
1322                    (append
1323                     '((wl-draft-eword-encode-address-list
1324                        .  (To Cc Bcc Resent-To Resent-Cc Resent-Bcc From)))
1325                     (if (boundp 'mime-header-encode-method-alist)
1326                         (symbol-value 'mime-header-encode-method-alist)))))
1327               (run-hooks 'mail-send-hook) ; translate buffer
1328               )
1329             ;;
1330             (if wl-draft-verbose-send
1331                 (message "%s" (or mes-string "Sending...")))
1332             (funcall wl-draft-send-function editing-buffer kill-when-done)
1333             ;; Now perform actions on successful sending.
1334             (while mail-send-actions
1335               (condition-case ()
1336                   (apply (car (car mail-send-actions))
1337                          (cdr (car mail-send-actions)))
1338                 (error))
1339               (setq mail-send-actions (cdr mail-send-actions)))
1340             (if wl-draft-verbose-send
1341                 (message "%sdone"
1342                          (or wl-draft-verbose-msg
1343                              mes-string
1344                              "Sending..."))))
1345         ;; kill sending buffer, anyway.
1346         (and (buffer-live-p sending-buffer)
1347              (kill-buffer sending-buffer))))))
1348
1349 (defun wl-draft-mime-bcc-field ()
1350   "Return the MIME-Bcc field body.  The field is deleted."
1351   (prog1 (std11-field-body wl-draft-mime-bcc-field-name)
1352     (wl-draft-delete-field wl-draft-mime-bcc-field-name)))
1353
1354 (defun wl-draft-do-mime-bcc (field-body)
1355   "Send MIME-Bcc (Encapsulated blind carbon copy)."
1356   (let ((orig-from (mime-decode-field-body (std11-field-body "from")
1357                                            'From))
1358         (orig-subj (mime-decode-field-body (or (std11-field-body "subject")
1359                                                "")
1360                                            'Subject))
1361         (recipients (wl-parse-addresses field-body))
1362         (draft-buffer (current-buffer))
1363         wl-draft-use-frame)
1364     (save-window-excursion
1365       (when (and (not wl-draft-doing-mime-bcc) ; To avoid infinite loop.
1366                  (not (zerop (length field-body))))
1367         (let ((wl-draft-doing-mime-bcc t))
1368           (dolist (recipient recipients)
1369             (wl-draft-create-buffer)
1370             (wl-draft-create-contents
1371              (append `((From . ,orig-from)
1372                        (To . ,recipient)
1373                        (Subject . ,(concat "A blind carbon copy ("
1374                                            orig-subj
1375                                            ")")))
1376                      (wl-draft-default-headers)))
1377             (wl-draft-insert-mail-header-separator)
1378             (wl-draft-prepare-edit)
1379             (goto-char (point-max))
1380             (insert (or wl-draft-mime-bcc-body
1381                         "This is a blind carbon copy.")
1382                     "\n")
1383             (mime-edit-insert-tag "message" "rfc822")
1384             (insert-buffer draft-buffer)
1385             (let (wl-interactive-send)
1386               (wl-draft-send 'kill-when-done))))))))
1387
1388 ;; Derived from `message-save-drafts' in T-gnus.
1389 (defun wl-draft-save ()
1390   "Save current draft."
1391   (interactive)
1392   (if (buffer-modified-p)
1393       (progn
1394         (message "Saving %s..." wl-draft-buffer-file-name)
1395         (let ((msg (buffer-substring-no-properties (point-min) (point-max))))
1396           (with-temp-file wl-draft-buffer-file-name
1397             (insert msg)
1398             ;; If no header separator, insert it.
1399             (save-excursion
1400               (goto-char (point-min))
1401               (unless (re-search-forward
1402                        (concat "^" (regexp-quote mail-header-separator) "$")
1403                        nil t)
1404                 (goto-char (point-min))
1405                 (if (re-search-forward "\n\n" nil t)
1406                     (replace-match (concat "\n" mail-header-separator "\n"))
1407                   (goto-char (point-max))
1408                   (insert (if (eq (char-before) ?\n) "" "\n")
1409                           mail-header-separator "\n"))))
1410             (let ((mime-header-encode-method-alist
1411                    '((eword-encode-unstructured-field-body))))
1412               (mime-edit-translate-buffer))
1413             (wl-draft-get-header-delimiter t)))
1414         (set-buffer-modified-p nil)
1415         (wl-draft-config-info-operation
1416          (and (string-match "[0-9]+$" wl-draft-buffer-file-name)
1417               (string-to-int
1418                (match-string 0 wl-draft-buffer-file-name)))
1419          'save)
1420         (message "Saving %s...done" wl-draft-buffer-file-name))
1421     (message "(No changes need to be saved)")))
1422
1423 (defun wl-draft-mimic-kill-buffer ()
1424   "Kill the current (draft) buffer with query."
1425   (interactive)
1426   (let ((bufname (read-buffer (format "Kill buffer: (default %s) "
1427                                       (buffer-name))))
1428         wl-draft-use-frame)
1429     (if (or (not bufname)
1430             (string-equal bufname "")
1431             (string-equal bufname (buffer-name)))
1432         (let ((bufname (current-buffer)))
1433           (when (or (not (buffer-modified-p))
1434                     (yes-or-no-p
1435                      (format "Buffer %s modified; kill anyway? " bufname)))
1436             (set-buffer-modified-p nil)
1437             (wl-draft-hide bufname)
1438             (kill-buffer bufname)))
1439       (kill-buffer bufname))))
1440
1441 (defun wl-draft-save-and-exit ()
1442   "Save current draft and exit current draft mode."
1443   (interactive)
1444   (wl-draft-save)
1445   (let ((editing-buffer (current-buffer)))
1446     (wl-draft-hide editing-buffer)
1447     (kill-buffer editing-buffer)))
1448
1449 (defun wl-draft-send-and-exit ()
1450   "Send current draft message and kill it."
1451   (interactive)
1452   (wl-draft-send t))
1453
1454 (defun wl-draft-send-from-toolbar ()
1455   (interactive)
1456   (let ((wl-interactive-send t))
1457     (wl-draft-send-and-exit)))
1458
1459 (defun wl-draft-delete-field (field &optional delimline replace)
1460   (wl-draft-delete-fields (regexp-quote field) delimline replace))
1461
1462 (defun wl-draft-delete-fields (field &optional delimline replace)
1463   (save-restriction
1464     (unless delimline
1465       (goto-char (point-min))
1466       (if (search-forward "\n\n" nil t)
1467           (setq delimline (point))
1468         (setq delimline (point-max))))
1469     (narrow-to-region (point-min) delimline)
1470     (goto-char (point-min))
1471     (let ((regexp (concat "^" field ":"))
1472           (case-fold-search t))
1473       (while (not (eobp))
1474         (if (looking-at regexp)
1475             (progn
1476               (delete-region
1477                (point)
1478                (progn
1479                  (forward-line 1)
1480                  (if (re-search-forward "^[^ \t]" nil t)
1481                      (goto-char (match-beginning 0))
1482                    (point-max))))
1483               (if replace
1484                   (insert (concat field ": " replace "\n"))))
1485           (forward-line 1)
1486           (if (re-search-forward "^[^ \t]" nil t)
1487               (goto-char (match-beginning 0))
1488             (point-max)))))))
1489
1490 (defun wl-draft-get-fcc-list (header-end)
1491   (if (and wl-draft-doing-mime-bcc
1492            wl-draft-disable-fcc-for-mime-bcc)
1493       (progn
1494         (wl-draft-delete-field "fcc")
1495         nil)
1496     (let (fcc-list
1497           (case-fold-search t))
1498       (or (markerp header-end) (error "HEADER-END must be a marker"))
1499       (save-excursion
1500         (goto-char (point-min))
1501         (while (re-search-forward "^Fcc:[ \t]*" header-end t)
1502           (save-match-data
1503             (setq fcc-list
1504                   (append fcc-list
1505                           (split-string
1506                            (buffer-substring-no-properties
1507                             (point)
1508                             (progn
1509                               (end-of-line)
1510                               (skip-chars-backward " \t")
1511                               (point)))
1512                            ",[ \t]*")))
1513             (dolist (folder fcc-list)
1514               (wl-folder-confirm-existence
1515                (wl-folder-get-elmo-folder (eword-decode-string folder)))))
1516           (delete-region (match-beginning 0)
1517                          (progn (forward-line 1) (point)))))
1518       fcc-list)))
1519
1520 (defun wl-draft-do-fcc (header-end &optional fcc-list)
1521   (let ((send-mail-buffer (current-buffer))
1522         (tembuf (generate-new-buffer " fcc output"))
1523         (case-fold-search t)
1524         beg end)
1525     (or (markerp header-end) (error "HEADER-END must be a marker"))
1526     (save-excursion
1527       (unless fcc-list
1528         (setq fcc-list (wl-draft-get-fcc-list header-end)))
1529       (set-buffer tembuf)
1530       (erase-buffer)
1531       ;; insert just the headers to avoid moving the gap more than
1532       ;; necessary (the message body could be arbitrarily huge.)
1533       (insert-buffer-substring send-mail-buffer 1 header-end)
1534       (wl-draft-insert-required-fields t)
1535       (goto-char (point-max))
1536       (insert-buffer-substring send-mail-buffer header-end)
1537       (let ((id (std11-field-body "Message-ID"))
1538             (elmo-enable-disconnected-operation t)
1539             cache-saved)
1540         (while fcc-list
1541           (unless (or cache-saved
1542                       (elmo-folder-plugged-p
1543                        (wl-folder-get-elmo-folder (car fcc-list))))
1544             (elmo-file-cache-save id nil) ;; for disconnected operation
1545             (setq cache-saved t))
1546           (if (elmo-folder-append-buffer
1547                (wl-folder-get-elmo-folder
1548                 (eword-decode-string (car fcc-list)))
1549                (not wl-fcc-force-as-read))
1550               (wl-draft-write-sendlog 'ok 'fcc nil (car fcc-list) id)
1551             (wl-draft-write-sendlog 'failed 'fcc nil (car fcc-list) id))
1552           (setq fcc-list (cdr fcc-list)))))
1553     (kill-buffer tembuf)))
1554
1555 (defun wl-draft-on-field-p ()
1556   (if (< (point)
1557          (save-excursion
1558            (goto-char (point-min))
1559            (search-forward (concat "\n" mail-header-separator "\n") nil 0)
1560            (point)))
1561       (if (bolp)
1562           (if (bobp)
1563               t
1564             (save-excursion
1565               (forward-line -1)
1566               (if (or (looking-at ".*,[ \t]?$")
1567                       (looking-at "^[^ \t]+:[ \t]+.*:$")); group list name
1568                   nil t)))
1569         (let ((pos (point)))
1570           (save-excursion
1571             (beginning-of-line)
1572             (if (looking-at "^[ \t]")
1573                 nil
1574               (if (re-search-forward ":" pos t) nil t)))))))
1575
1576 ;;;;;;;;;;;;;;;;
1577 ;;;###autoload
1578 (defun wl-draft (&optional header-alist
1579                            content-type content-transfer-encoding
1580                            body edit-again
1581                            parent-folder)
1582   "Write and send mail/news message with Wanderlust."
1583   (interactive)
1584   (require 'wl)
1585   (unless wl-init
1586     (wl-load-profile)
1587     (wl-folder-init)
1588     (elmo-init)
1589     (wl-plugged-init t))
1590   (let (wl-demo)
1591     (wl-init)) ; returns immediately if already initialized.
1592
1593
1594   (let (buf-name header-alist-internal)
1595     (setq buf-name
1596           (wl-draft-create-buffer parent-folder))
1597
1598     (unless (cdr (assq 'From header-alist))
1599       (setq header-alist
1600             (append (list (cons 'From wl-from)) header-alist)))
1601     (unless (cdr (assq 'To header-alist))
1602       (let ((to))
1603         (when (setq to (and
1604                         (interactive-p)
1605                         ""))
1606           (if (assq 'To header-alist)
1607               (setcdr (assq 'To header-alist) to)
1608             (setq header-alist
1609                   (append header-alist
1610                           (list (cons 'To to))))))))
1611     (unless (cdr (assq 'Subject header-alist))
1612       (if (assq 'Subject header-alist)
1613           (setcdr (assq 'Subject header-alist) "")
1614         (setq header-alist
1615               (append header-alist (list (cons 'Subject ""))))))
1616     (setq header-alist (append header-alist
1617                                (wl-draft-default-headers)
1618                                wl-draft-additional-header-alist
1619                                (if body (list "" (cons 'Body body)))))
1620     (wl-draft-create-contents header-alist)
1621     (if edit-again
1622         (wl-draft-decode-body
1623          content-type content-transfer-encoding))
1624     (wl-draft-insert-mail-header-separator)
1625     (wl-draft-prepare-edit)
1626     (if (interactive-p)
1627         (run-hooks 'wl-mail-setup-hook))
1628     (goto-char (point-min))
1629     (wl-user-agent-compose-internal) ;; user-agent
1630     (cond ((and
1631             (interactive-p)
1632             (string= (cdr (assq 'To header-alist)) ""))
1633            (mail-position-on-field "To"))
1634           (t
1635            (goto-char (point-max))))
1636     buf-name))
1637
1638 (defun wl-draft-create-buffer (&optional parent-folder)
1639   (let* ((draft-folder (wl-folder-get-elmo-folder wl-draft-folder))
1640          (parent-folder (or parent-folder (wl-summary-buffer-folder-name)))
1641          (summary-buf (wl-summary-get-buffer parent-folder))
1642          (reply-or-forward
1643           (or (eq this-command 'wl-summary-reply)
1644               (eq this-command 'wl-summary-reply-with-citation)
1645               (eq this-command 'wl-summary-forward)
1646               (eq this-command 'wl-summary-target-mark-forward)
1647               (eq this-command 'wl-summary-target-mark-reply-with-citation)))
1648          buf-name file-name num change-major-mode-hook)
1649     (if (not (elmo-folder-message-file-p draft-folder))
1650         (error "%s folder cannot be used for draft folder" wl-draft-folder))
1651     (setq num (elmo-max-of-list
1652                (or (elmo-folder-list-messages draft-folder) '(0))))
1653     (setq num (+ 1 num))
1654     ;; To get unused buffer name.
1655     (while (get-buffer (concat wl-draft-folder "/" (int-to-string num)))
1656       (setq num (+ 1 num)))
1657     (setq buf-name (find-file-noselect
1658                     (setq file-name
1659                           (elmo-message-file-name
1660                            (wl-folder-get-elmo-folder wl-draft-folder)
1661                            num))))
1662     ;; switch-buffer according to draft buffer style.
1663     (if wl-draft-use-frame
1664         (switch-to-buffer-other-frame buf-name)
1665       (if reply-or-forward
1666           (case wl-draft-reply-buffer-style
1667             (split
1668              (split-window-vertically)
1669              (other-window 1)
1670              (switch-to-buffer buf-name))
1671             (keep
1672              (switch-to-buffer buf-name))
1673             (full
1674              (delete-other-windows)
1675              (switch-to-buffer buf-name))
1676             (t
1677              (if (functionp wl-draft-reply-buffer-style)
1678                  (funcall wl-draft-reply-buffer-style buf-name)
1679                (error "Invalid value for wl-draft-reply-buffer-style"))))
1680         (case wl-draft-buffer-style
1681           (split
1682            (when (eq major-mode 'wl-summary-mode)
1683              (wl-summary-toggle-disp-msg 'off))
1684            (split-window-vertically)
1685            (other-window 1)
1686            (switch-to-buffer buf-name))
1687           (keep
1688            (switch-to-buffer buf-name))
1689           (full
1690            (delete-other-windows)
1691            (switch-to-buffer buf-name))
1692           (t (if (functionp wl-draft-buffer-style)
1693                  (funcall wl-draft-buffer-style buf-name)
1694                (error "Invalid value for wl-draft-buffer-style"))))))
1695     (set-buffer buf-name)
1696     (if (not (string-match (regexp-quote wl-draft-folder)
1697                            (buffer-name)))
1698         (rename-buffer (concat wl-draft-folder "/" (int-to-string num))))
1699     (auto-save-mode -1)
1700     (wl-draft-mode)
1701     (make-local-variable 'truncate-partial-width-windows)
1702     (setq truncate-partial-width-windows nil)
1703     (setq truncate-lines wl-draft-truncate-lines)
1704     (setq wl-sent-message-via nil)
1705     (setq wl-sent-message-queued nil)
1706     (setq wl-draft-buffer-file-name file-name)
1707     (setq wl-draft-config-exec-flag t)
1708     (setq wl-draft-parent-folder (or parent-folder ""))
1709     (or (eq this-command 'wl-folder-write-current-folder)
1710         (setq wl-draft-buffer-cur-summary-buffer summary-buf))
1711     buf-name))
1712
1713 (defun wl-draft-create-contents (header-alist)
1714   "header-alist' sample
1715 '(function  ;; funcall
1716   string    ;; insert string
1717   (symbol . string)    ;;  insert symbol-value: string
1718   (symbol . function)  ;;  (funcall) and if it returns string,
1719                        ;;  insert symbol-value: string
1720   (symbol . nil)       ;;  do nothing
1721   nil                  ;;  do nothing
1722   )"
1723   (unless (eq major-mode 'wl-draft-mode)
1724     (error "`wl-draft-create-header' must be use in wl-draft-mode"))
1725   (let ((halist header-alist)
1726         field value)
1727     (while halist
1728       (cond
1729        ;; function
1730        ((functionp (car halist)) (funcall (car halist)))
1731        ;; string
1732        ((stringp (car halist)) (insert (car halist) "\n"))
1733        ;; cons
1734        ((consp (car halist))
1735         (setq field (car (car halist)))
1736         (setq value (cdr (car halist)))
1737         (cond
1738          ((symbolp field)
1739           (cond
1740            ((eq field 'Body) ; body
1741             (insert value))
1742            ((stringp value) (insert (symbol-name field) ": " value "\n"))
1743            ((functionp value)
1744             (let ((value-return (funcall value)))
1745               (when (stringp value-return)
1746                 (insert (symbol-name field) ": " value-return "\n"))))
1747            ((not value))
1748            (t
1749             (debug))))
1750          ;;
1751          ((not field))
1752          (t
1753           (debug))
1754          )))
1755       (setq halist (cdr halist)))))
1756
1757 (defun wl-draft-prepare-edit ()
1758   (unless (eq major-mode 'wl-draft-mode)
1759     (error "`wl-draft-create-header' must be use in wl-draft-mode"))
1760   (let (change-major-mode-hook)
1761     (wl-draft-editor-mode)
1762     (when wl-draft-write-file-function
1763       (add-hook 'local-write-file-hooks wl-draft-write-file-function))
1764     (wl-draft-overload-functions)
1765     (wl-highlight-headers 'for-draft)
1766     (wl-draft-save)
1767     (clear-visited-file-modtime)))
1768
1769 (defun wl-draft-decode-header ()
1770   (save-excursion
1771     (std11-narrow-to-header)
1772     (wl-draft-decode-message-in-buffer)
1773     (widen)))
1774
1775 (defun wl-draft-decode-body (&optional content-type content-transfer-encoding)
1776   (let ((content-type
1777          (or content-type
1778                 (std11-field-body "content-type")))
1779         (content-transfer-encoding
1780          (or content-transfer-encoding
1781              (std11-field-body "content-transfer-encoding")))
1782         delimline)
1783     (save-excursion
1784       (std11-narrow-to-header)
1785       (wl-draft-delete-field "content-type")
1786       (wl-draft-delete-field "content-transfer-encoding")
1787       (goto-char (point-max))
1788       (setq delimline (point-marker))
1789       (widen)
1790       (narrow-to-region delimline (point-max))
1791       (goto-char (point-min))
1792       (when content-type
1793         (insert "Content-type: " content-type "\n"))
1794       (when content-transfer-encoding
1795         (insert "Content-Transfer-Encoding: " content-transfer-encoding "\n"))
1796       (wl-draft-decode-message-in-buffer)
1797       (goto-char (point-min))
1798       (unless (re-search-forward "^$" (point-at-eol) t)
1799         (insert "\n"))
1800       (widen)
1801       delimline)))
1802
1803 ;;; subroutine for wl-draft-create-contents
1804 ;;; must be used in wl-draft-mode
1805 (defun wl-draft-check-new-line ()
1806   (if (not (= (preceding-char) ?\n))
1807       (insert ?\n)))
1808
1809 (defsubst wl-draft-trim-ccs (cc)
1810   (let ((field
1811          (if (functionp cc)
1812              (funcall cc)
1813            cc)))
1814     (if (and field
1815              (null (and wl-draft-delete-myself-from-bcc-fcc
1816                         (elmo-list-member
1817                          (mapcar 'wl-address-header-extract-address
1818                                  (append
1819                                   (wl-parse-addresses (std11-field-body "To"))
1820                                   (wl-parse-addresses (std11-field-body "Cc"))))
1821                          (mapcar 'downcase wl-subscribed-mailing-list)))))
1822         field
1823       nil)))
1824
1825 (defsubst wl-draft-default-headers ()
1826   (list
1827    (cons 'Mail-Reply-To (and wl-insert-mail-reply-to
1828                              (wl-address-header-extract-address
1829                               wl-from)))
1830    (cons 'User-Agent wl-generate-mailer-string-function)
1831    (cons 'Reply-To mail-default-reply-to)
1832    (cons 'Bcc (function
1833                (lambda ()
1834                  (wl-draft-trim-ccs
1835                   (or wl-bcc (and mail-self-blind (user-login-name)))))))
1836    (cons 'Fcc (function
1837                (lambda ()
1838                  (wl-draft-trim-ccs wl-fcc))))
1839    (cons 'Organization wl-organization)
1840    (and wl-auto-insert-x-face
1841         (file-exists-p wl-x-face-file)
1842         'wl-draft-insert-x-face-field-here) ;; allow nil
1843    mail-default-headers
1844    ;; check \n at th end of line for `mail-default-headers'
1845    'wl-draft-check-new-line
1846    ))
1847
1848 (defun wl-draft-insert-mail-header-separator (&optional delimline)
1849   (save-excursion
1850     (if delimline
1851         (goto-char delimline)
1852       (goto-char (point-min))
1853       (if (search-forward "\n\n" nil t)
1854           (delete-backward-char 1)
1855         (goto-char (point-max))))
1856     (wl-draft-check-new-line)
1857     (put-text-property (point)
1858                        (progn
1859                          (insert mail-header-separator "\n")
1860                          (1- (point)))
1861                        'category 'mail-header-separator)
1862     (point)))
1863
1864 ;;;;;;;;;;;;;;;;
1865
1866 (defun wl-draft-elmo-nntp-send ()
1867   (let ((elmo-nntp-post-pre-hook wl-news-send-pre-hook)
1868         (elmo-nntp-default-user
1869          (or wl-nntp-posting-user elmo-nntp-default-user))
1870         (elmo-nntp-default-server
1871          (or wl-nntp-posting-server elmo-nntp-default-server))
1872         (elmo-nntp-default-port
1873          (or wl-nntp-posting-port elmo-nntp-default-port))
1874         (elmo-nntp-default-stream-type
1875          (or wl-nntp-posting-stream-type elmo-nntp-default-stream-type))
1876         (elmo-nntp-default-function wl-nntp-posting-function)
1877         condition)
1878     (if (setq condition (cdr (elmo-string-matched-assoc
1879                               (std11-field-body "Newsgroups")
1880                               wl-nntp-posting-config-alist)))
1881         (if (stringp condition)
1882             (setq elmo-nntp-default-server condition)
1883           (while (car condition)
1884             (set (intern (format "elmo-nntp-default-%s"
1885                                  (symbol-name (caar condition))))
1886                  (cdar condition))
1887             (setq condition (cdr condition)))))
1888     (unless elmo-nntp-default-function
1889       (error "wl-draft-nntp-send: posting-function is nil"))
1890     (if (not (elmo-plugged-p elmo-nntp-default-server elmo-nntp-default-port))
1891         (wl-draft-set-sent-message 'news 'unplugged
1892                                    (cons elmo-nntp-default-server
1893                                          elmo-nntp-default-port))
1894       (funcall elmo-nntp-default-function
1895                elmo-nntp-default-server (current-buffer))
1896       (wl-draft-set-sent-message 'news 'sent)
1897       (wl-draft-write-sendlog 'ok 'nntp elmo-nntp-default-server
1898                               (std11-field-body "Newsgroups")
1899                               (std11-field-body "Message-ID")))))
1900
1901 (defun wl-draft-generate-clone-buffer (name &optional local-variables)
1902   "Generate clone of current buffer named NAME."
1903   (let ((editing-buffer (current-buffer)))
1904     (save-excursion
1905       (set-buffer (generate-new-buffer name))
1906       (erase-buffer)
1907       (wl-draft-mode)
1908       (wl-draft-editor-mode)
1909       (insert-buffer editing-buffer)
1910       (message "")
1911       (while local-variables
1912         (make-local-variable (car local-variables))
1913         (set (car local-variables)
1914              (save-excursion
1915                (set-buffer editing-buffer)
1916                (symbol-value (car local-variables))))
1917         (setq local-variables (cdr local-variables)))
1918       (current-buffer))))
1919
1920 (defun wl-draft-remove-text-plain-tag ()
1921   "Remove text/plain tag of mime-edit."
1922   (when (string= (mime-make-text-tag "plain")
1923                  (buffer-substring-no-properties (point-at-bol)(point-at-eol)))
1924     (delete-region (point-at-bol)(1+ (point-at-eol)))))
1925
1926 (defun wl-draft-reedit (number)
1927   (let ((draft-folder (wl-folder-get-elmo-folder wl-draft-folder))
1928         (wl-draft-reedit t)
1929         buffer file-name change-major-mode-hook body-top)
1930     (setq file-name (elmo-message-file-name draft-folder number))
1931     (unless (file-exists-p file-name)
1932       (error "File %s does not exist" file-name))
1933     (if (setq buffer (get-buffer
1934                       (concat wl-draft-folder "/"
1935                               (number-to-string number))))
1936         (progn
1937           (if wl-draft-use-frame
1938               (switch-to-buffer-other-frame buffer)
1939             (switch-to-buffer buffer))
1940           (set-buffer buffer))
1941       (setq buffer (get-buffer-create (number-to-string number)))
1942       ;; switch-buffer according to draft buffer style.
1943       (if wl-draft-use-frame
1944           (switch-to-buffer-other-frame buffer)
1945         (case wl-draft-buffer-style
1946           (split
1947            (split-window-vertically)
1948            (other-window 1)
1949            (switch-to-buffer buffer))
1950           (keep
1951            (switch-to-buffer buffer))
1952           (full
1953            (delete-other-windows)
1954            (switch-to-buffer buffer))
1955           (t (if (functionp wl-draft-buffer-style)
1956                  (funcall wl-draft-buffer-style buffer)
1957                (error "Invalid value for wl-draft-buffer-style")))))
1958       (set-buffer buffer)
1959       (insert-file-contents-as-binary file-name)
1960       (elmo-delete-cr-buffer)
1961       (let((mime-edit-again-ignored-field-regexp
1962             "^\\(Content-.*\\|Mime-Version\\):"))
1963         (wl-draft-decode-message-in-buffer))
1964       (setq body-top (wl-draft-insert-mail-header-separator))
1965       (if (not (string-match (regexp-quote wl-draft-folder)
1966                              (buffer-name)))
1967           (rename-buffer (concat wl-draft-folder "/" (buffer-name))))
1968       (auto-save-mode -1)
1969       (wl-draft-mode)
1970       (setq buffer-file-name file-name)
1971       (make-local-variable 'truncate-partial-width-windows)
1972       (setq truncate-partial-width-windows nil)
1973       (setq truncate-lines wl-draft-truncate-lines)
1974       (setq wl-sent-message-via nil)
1975       (setq wl-sent-message-queued nil)
1976       (setq wl-draft-buffer-file-name file-name)
1977       (wl-draft-config-info-operation number 'load)
1978       (goto-char (point-min))
1979       (wl-draft-overload-functions)
1980       (wl-draft-editor-mode)
1981       (when wl-draft-write-file-function
1982         (add-hook 'local-write-file-hooks wl-draft-write-file-function))
1983       (wl-highlight-headers 'for-draft)
1984       (goto-char body-top)
1985       (run-hooks 'wl-draft-reedit-hook)
1986       (goto-char (point-max))
1987       buffer)))
1988
1989 (defmacro wl-draft-body-goto-top ()
1990   (` (progn
1991        (goto-char (point-min))
1992        (if (re-search-forward mail-header-separator nil t)
1993            (forward-char 1)
1994          (goto-char (point-max))))))
1995
1996 (defmacro wl-draft-body-goto-bottom ()
1997   (` (goto-char (point-max))))
1998
1999 (defmacro wl-draft-config-body-goto-header ()
2000   (` (progn
2001        (goto-char (point-min))
2002        (if (re-search-forward mail-header-separator nil t)
2003            (beginning-of-line)
2004          (goto-char (point-max))))))
2005
2006 (defsubst wl-draft-config-sub-eval-insert (content &optional newline)
2007   (let (content-value)
2008     (when (and content
2009                (stringp (setq content-value (eval content))))
2010       (insert content-value)
2011       (if newline (insert "\n")))))
2012
2013 (defun wl-draft-config-sub-body (content)
2014   (wl-draft-body-goto-top)
2015   (delete-region (point) (point-max))
2016   (wl-draft-config-sub-eval-insert content))
2017
2018 (defun wl-draft-config-sub-top (content)
2019   (wl-draft-body-goto-top)
2020   (wl-draft-config-sub-eval-insert content))
2021
2022 (defun wl-draft-config-sub-bottom (content)
2023   (wl-draft-body-goto-bottom)
2024   (wl-draft-config-sub-eval-insert content))
2025
2026 (defun wl-draft-config-sub-header (content)
2027   (wl-draft-config-body-goto-header)
2028   (wl-draft-config-sub-eval-insert content 'newline))
2029
2030 (defun wl-draft-config-sub-header-top (content)
2031   (goto-char (point-min))
2032   (wl-draft-config-sub-eval-insert content 'newline))
2033
2034 (defun wl-draft-config-sub-part-top (content)
2035   (goto-char (mime-edit-content-beginning))
2036   (wl-draft-config-sub-eval-insert content 'newline))
2037
2038 (defun wl-draft-config-sub-part-bottom (content)
2039   (goto-char (mime-edit-content-end))
2040   (wl-draft-config-sub-eval-insert content 'newline))
2041
2042 (defsubst wl-draft-config-sub-file (content)
2043   (let ((coding-system-for-read wl-cs-autoconv)
2044         (file (expand-file-name (eval content))))
2045     (if (file-exists-p file)
2046         (insert-file-contents file)
2047       (error "%s: no exists file" file))))
2048
2049 (defun wl-draft-config-sub-body-file (content)
2050   (wl-draft-body-goto-top)
2051   (delete-region (point) (point-max))
2052   (wl-draft-config-sub-file content))
2053
2054 (defun wl-draft-config-sub-top-file (content)
2055   (wl-draft-body-goto-top)
2056   (wl-draft-config-sub-file content))
2057
2058 (defun wl-draft-config-sub-bottom-file (content)
2059   (wl-draft-body-goto-bottom)
2060   (wl-draft-config-sub-file content))
2061
2062 (defun wl-draft-config-sub-header-file (content)
2063   (wl-draft-config-body-goto-header)
2064   (wl-draft-config-sub-file content))
2065
2066 (defun wl-draft-config-sub-template (content)
2067   (setq wl-draft-config-variables
2068         (wl-template-insert (eval content))))
2069
2070 (defun wl-draft-config-sub-x-face (content)
2071   (if (and (string-match "\\.xbm\\(\\.gz\\)?$" content)
2072            (fboundp 'x-face-insert)) ; x-face.el is installed.
2073       (x-face-insert content)
2074     (wl-draft-replace-field "X-Face" (elmo-get-file-string content t) t)))
2075
2076 (defsubst wl-draft-config-sub-func (field content)
2077   (let (func)
2078     (if (setq func (assq field wl-draft-config-sub-func-alist))
2079         (let (wl-draft-config-variables)
2080           (funcall (cdr func) content)
2081           ;; for wl-draft-config-sub-template
2082           (cons t wl-draft-config-variables)))))
2083
2084 (defsubst wl-draft-config-exec-sub (clist)
2085   (let (config local-variables)
2086     (while clist
2087       (setq config (car clist))
2088       (cond
2089        ((functionp config)
2090         (funcall config))
2091        ((consp config)
2092         (let ((field (car config))
2093               (content (cdr config))
2094               ret-val)
2095           (cond
2096            ((stringp field)
2097             (wl-draft-replace-field field (eval content) t))
2098            ((setq ret-val (wl-draft-config-sub-func field content))
2099             (if (cdr ret-val) ;; for wl-draft-config-sub-template
2100                 (wl-append local-variables (cdr ret-val))))
2101            ((boundp field) ;; variable
2102             (make-local-variable field)
2103             (set field (eval content))
2104             (wl-append local-variables (list field)))
2105            (t
2106             (error "%s: not variable" field)))))
2107        (t
2108         (error "%s: not supported type" config)))
2109       (setq clist (cdr clist)))
2110     local-variables))
2111
2112 (defun wl-draft-prepared-config-exec (&optional config-alist reply-buf)
2113   "Change headers in draft preparation time."
2114   (interactive)
2115   (unless wl-draft-reedit
2116     (let ((config-alist
2117            (or config-alist
2118                (and (boundp 'wl-draft-prepared-config-alist)
2119                     wl-draft-prepared-config-alist)     ;; For compatible.
2120                wl-draft-config-alist)))
2121       (if config-alist
2122           (wl-draft-config-exec config-alist reply-buf)))))
2123
2124 (defun wl-draft-config-exec (&optional config-alist reply-buf)
2125   "Change headers according to the value of `wl-draft-config-alist'.
2126 Automatically applied in draft sending time."
2127   (interactive)
2128   (let ((case-fold-search t)
2129         (alist (or config-alist wl-draft-config-alist))
2130         (reply-buf (or reply-buf (and (buffer-live-p wl-draft-reply-buffer)
2131                                       wl-draft-reply-buffer)))
2132         (local-variables wl-draft-config-variables)
2133         key clist found)
2134     (when (and (or (interactive-p)
2135                    wl-draft-config-exec-flag)
2136                alist)
2137       (save-excursion
2138         (catch 'done
2139           (while alist
2140             (setq key (caar alist)
2141                   clist (cdar alist))
2142             (cond
2143              ((eq key 'reply)
2144               (when (and
2145                      reply-buf
2146                      (save-excursion
2147                        (set-buffer reply-buf)
2148                        (save-restriction
2149                          (std11-narrow-to-header)
2150                          (goto-char (point-min))
2151                          (re-search-forward (car clist) nil t))))
2152                 (wl-draft-config-exec-sub (cdr clist))
2153                 (setq found t)))
2154              ((stringp key)
2155               (when (save-restriction
2156                       (std11-narrow-to-header mail-header-separator)
2157                       (goto-char (point-min))
2158                       (re-search-forward key nil t))
2159                 (wl-append local-variables
2160                            (wl-draft-config-exec-sub clist))
2161                 (setq found t)))
2162              ((eval key)
2163               (wl-append local-variables
2164                          (wl-draft-config-exec-sub clist))
2165               (setq found t)))
2166             (if (and found wl-draft-config-matchone)
2167                 (throw 'done t))
2168             (setq alist (cdr alist))))
2169         (if found
2170             (setq wl-draft-config-exec-flag nil))
2171         (run-hooks 'wl-draft-config-exec-hook)
2172         (put-text-property (point-min)(point-max) 'face nil)
2173         (wl-highlight-message (point-min)(point-max) t)
2174         (setq wl-draft-config-variables
2175               (elmo-uniq-list local-variables))))))
2176
2177 (defun wl-draft-replace-field (field content &optional add)
2178   (save-excursion
2179     (save-restriction
2180       (let ((case-fold-search t)
2181             (inhibit-read-only t) ;; added by teranisi.
2182             beg)
2183         (std11-narrow-to-header mail-header-separator)
2184         (goto-char (point-min))
2185         (if (re-search-forward (concat "^" (regexp-quote field) ":") nil t)
2186             (if content
2187                 ;; replace field
2188                 (progn
2189                   (setq beg (point))
2190                   (re-search-forward "^[^ \t]" nil 'move)
2191                   (beginning-of-line)
2192                   (skip-chars-backward "\n")
2193                   (delete-region beg (point))
2194                   (insert " " content))
2195               ;; delete field
2196               (save-excursion
2197                 (beginning-of-line)
2198                 (setq beg (point)))
2199               (re-search-forward "^[^ \t]" nil 'move)
2200               (beginning-of-line)
2201               (delete-region beg (point)))
2202           (when (and add content)
2203             ;; add field
2204             (goto-char (point-max))
2205             (insert (concat field ": " content "\n"))))))))
2206
2207 (defun wl-draft-config-info-operation (msg operation)
2208   (let* ((msgdb-dir (elmo-folder-msgdb-path (wl-folder-get-elmo-folder
2209                                              wl-draft-folder)))
2210          (filename
2211           (expand-file-name
2212            (format "%s-%d" wl-draft-config-save-filename msg)
2213            msgdb-dir))
2214          element alist variable)
2215     (cond
2216      ((eq operation 'save)
2217       (let ((variables (elmo-uniq-list wl-draft-config-variables)))
2218         (while (setq variable (pop variables))
2219           (when (boundp variable)
2220             (wl-append alist
2221                        (list (cons variable (eval variable))))))
2222         (elmo-object-save filename alist)))
2223      ((eq operation 'load)
2224       (setq alist (elmo-object-load filename))
2225       (while (setq element (pop alist))
2226         (set (make-local-variable (car element)) (cdr element))
2227         (wl-append wl-draft-config-variables (list (car element)))))
2228      ((eq operation 'delete)
2229       (if (file-exists-p filename)
2230           (delete-file filename))))))
2231
2232 (defun wl-draft-queue-info-operation (msg operation
2233                                           &optional add-sent-message-via)
2234   (let* ((msgdb-dir (elmo-folder-msgdb-path
2235                      (wl-folder-get-elmo-folder wl-queue-folder)))
2236          (filename
2237           (expand-file-name
2238            (format "%s-%d" wl-draft-queue-save-filename msg)
2239            msgdb-dir))
2240          element alist variable)
2241     (cond
2242      ((eq operation 'save)
2243       (let ((variables (elmo-uniq-list
2244                         (append wl-draft-queue-save-variables
2245                                 wl-draft-config-variables
2246                                 (list 'wl-draft-fcc-list)))))
2247         (if add-sent-message-via
2248             (progn
2249               (push 'wl-sent-message-queued variables)
2250               (push 'wl-sent-message-via variables)))
2251         (while (setq variable (pop variables))
2252           (when (boundp variable)
2253             (wl-append alist
2254                        (list (cons variable (eval variable))))))
2255         (elmo-object-save filename alist)))
2256      ((eq operation 'load)
2257       (setq alist (elmo-object-load filename))
2258       (while (setq element (pop alist))
2259         (set (make-local-variable (car element)) (cdr element))))
2260      ((eq operation 'get-sent-via)
2261       (setq alist (elmo-object-load filename))
2262       (cdr (assq 'wl-sent-message-via alist)))
2263      ((eq operation 'delete)
2264       (if (file-exists-p filename)
2265           (delete-file filename))))))
2266
2267 (defun wl-draft-queue-append (wl-sent-message-via)
2268   (if wl-draft-verbose-send
2269       (message "Queuing..."))
2270   (let ((send-buffer (current-buffer))
2271         (folder (wl-folder-get-elmo-folder wl-queue-folder))
2272         (message-id (std11-field-body "Message-ID")))
2273     (if (elmo-folder-append-buffer folder t)
2274         (progn
2275           (wl-draft-queue-info-operation
2276            (car (elmo-folder-status folder))
2277            'save wl-sent-message-via)
2278           (wl-draft-write-sendlog 'ok 'queue nil wl-queue-folder message-id)
2279           (when wl-draft-verbose-send
2280             (setq wl-draft-verbose-msg "Queuing...")
2281             (message "Queuing...done")))
2282       (wl-draft-write-sendlog 'failed 'queue nil wl-queue-folder message-id)
2283       (error "Queuing failed"))))
2284
2285 (defun wl-draft-queue-flush ()
2286   "Flush draft queue."
2287   (interactive)
2288   (let* ((queue-folder (wl-folder-get-elmo-folder wl-queue-folder))
2289          (msgs2 (progn
2290                   (elmo-folder-open-internal queue-folder)
2291                   (elmo-folder-list-messages queue-folder)))
2292          (i 0)
2293          (performed 0)
2294          (wl-draft-queue-flushing t)
2295          msgs failure len buffer msgid sent-via)
2296     ;; get plugged send message
2297     (while msgs2
2298       (setq sent-via (wl-draft-queue-info-operation (car msgs2) 'get-sent-via))
2299       (catch 'found
2300         (while sent-via
2301           (when (and (eq (nth 1 (car sent-via)) 'unplugged)
2302                      (or (not (nth 2 (car sent-via)))
2303                          (elmo-plugged-p
2304                           (car (nth 2 (car sent-via)))
2305                           (cdr (nth 2 (car sent-via))))))
2306             (wl-append msgs (list (car msgs2)))
2307             (throw 'found t))
2308           (setq sent-via (cdr sent-via))))
2309       (setq msgs2 (cdr msgs2)))
2310     (when (> (setq len (length msgs)) 0)
2311       (if (elmo-y-or-n-p (format
2312                           "%d message(s) are in the sending queue.  Send now? "
2313                           len)
2314                          (not elmo-dop-flush-confirm) t)
2315           (progn
2316             (save-excursion
2317               (setq buffer (get-buffer-create " *wl-draft-queue-flush*"))
2318               (set-buffer buffer)
2319               (while msgs
2320                 ;; reset buffer local variables
2321                 (kill-all-local-variables)
2322                 (erase-buffer)
2323                 (setq i (+ 1 i)
2324                       failure nil)
2325                 (setq wl-sent-message-via nil)
2326                 (wl-draft-queue-info-operation (car msgs) 'load)
2327                 (elmo-message-fetch queue-folder
2328                                     (car msgs)
2329                                     (elmo-make-fetch-strategy 'entire)
2330                                     nil (current-buffer))
2331                 (condition-case err
2332                     (setq failure (funcall
2333                                    wl-draft-queue-flush-send-function
2334                                    (format "Sending (%d/%d)..." i len)))
2335 ;;;               (wl-draft-raw-send nil nil
2336 ;;;                                  (format "Sending (%d/%d)..." i len))
2337                   (error
2338                    (elmo-display-error err t)
2339                    (setq failure t))
2340                   (quit
2341                    (setq failure t)))
2342                 (if (eq wl-sent-message-modified 'requeue)
2343                     (progn
2344                       (elmo-folder-delete-messages
2345                        queue-folder (cons (car msgs) nil))
2346                       (wl-draft-queue-info-operation (car msgs) 'delete))
2347                   (unless failure
2348                     (elmo-folder-delete-messages
2349                      queue-folder (cons (car msgs) nil))
2350                     (wl-draft-queue-info-operation (car msgs) 'delete)
2351                     (setq performed (+ 1 performed))))
2352                 (setq msgs (cdr msgs)))
2353               (kill-buffer buffer)
2354               (message "%d message(s) are sent." performed)))
2355         (message "%d message(s) are remained to be sent." len))
2356       (elmo-folder-close queue-folder)
2357       len)))
2358
2359 (defun wl-jump-to-draft-buffer (&optional arg)
2360   "Jump to the draft if exists."
2361   (interactive "P")
2362   (if arg
2363       (wl-jump-to-draft-folder)
2364     (let ((draft-bufs (wl-collect-draft))
2365           buf)
2366       (cond
2367        ((null draft-bufs)
2368         (message "No draft buffer exist."))
2369        (t
2370         (setq draft-bufs
2371               (sort (mapcar 'buffer-name draft-bufs)
2372                     (function (lambda (a b)
2373                                 (not (string< a b))))))
2374         (if (setq buf (cdr (member (buffer-name)
2375                                    draft-bufs)))
2376             (setq buf (car buf))
2377           (setq buf (car draft-bufs)))
2378         (switch-to-buffer buf))))))
2379
2380 (defun wl-jump-to-draft-folder ()
2381   (let ((msgs (reverse (elmo-folder-list-messages (wl-folder-get-elmo-folder
2382                                                    wl-draft-folder))))
2383         (mybuf (buffer-name))
2384         msg buf)
2385     (if (not msgs)
2386         (message "No draft message exist.")
2387       (if (string-match (concat "^" wl-draft-folder "/") mybuf)
2388           (setq msg (cadr (memq
2389                            (string-to-int (substring mybuf (match-end 0)))
2390                            msgs))))
2391       (or msg (setq msg (car msgs)))
2392       (if (setq buf (get-buffer (format "%s/%d" wl-draft-folder msg)))
2393           (switch-to-buffer buf)
2394         (wl-draft-reedit msg)))))
2395
2396 (defun wl-draft-highlight-and-recenter (&optional n)
2397   (interactive "P")
2398   (when wl-highlight-body-too
2399     (let ((modified (buffer-modified-p)))
2400       (unwind-protect
2401           (progn
2402             (put-text-property (point-min) (point-max) 'face nil)
2403             (wl-highlight-message (point-min) (point-max) t))
2404         (set-buffer-modified-p modified))))
2405   (recenter n))
2406
2407 ;;;; user-agent support by Sen Nagata
2408
2409 ;; this appears to be necessarily global...
2410 (defvar wl-user-agent-compose-p nil)
2411 (defvar wl-user-agent-headers-and-body-alist nil)
2412
2413 ;; this should be a generic function for mail-mode -- i wish there was
2414 ;; something like it in sendmail.el
2415 (defun wl-user-agent-insert-header (header-name header-value)
2416   "Insert HEADER-NAME w/ value HEADER-VALUE into a message."
2417   ;; it seems like overriding existing headers is acceptable -- should
2418   ;; we provide an option?
2419
2420   ;; plan was: unfold header (might be folded), remove existing value, insert
2421   ;;           new value
2422   ;; wl doesn't seem to fold header lines yet anyway :-)
2423
2424   (let ((kill-whole-line t)
2425         end-of-line)
2426     (mail-position-on-field (capitalize header-name))
2427     (setq end-of-line (point))
2428     (beginning-of-line)
2429     (re-search-forward ":" end-of-line)
2430     (insert (concat " " header-value "\n"))
2431     (kill-line)))
2432
2433 ;; this should be a generic function for mail-mode -- i wish there was
2434 ;; something like it in sendmail.el
2435 ;;
2436 ;; ** haven't dealt w/ case where the body is already set **
2437 (defun wl-user-agent-insert-body (body-text)
2438   "Insert a body of text, BODY-TEXT, into a message."
2439   ;; code defensively... :-P
2440   (goto-char (point-min))
2441   (search-forward mail-header-separator)
2442   (forward-line 1)
2443   (insert body-text))
2444
2445 ;;;###autoload
2446 (defun wl-user-agent-compose (&optional to subject other-headers continue
2447                                         switch-function yank-action
2448                                         send-actions)
2449   "Support the `compose-mail' interface for wl.
2450 Only support for TO, SUBJECT, and OTHER-HEADERS has been implemented.
2451 Support for CONTINUE, YANK-ACTION, and SEND-ACTIONS has not
2452 been implemented yet.  Partial support for SWITCH-FUNCTION now supported."
2453
2454   (unless (featurep 'wl)
2455     (require 'wl))
2456   (or switch-function
2457       (setq switch-function 'keep))
2458   ;; protect these -- to and subject get bound at some point, so it looks
2459   ;; to be necessary to protect the values used w/in
2460   (let ((wl-user-agent-headers-and-body-alist other-headers)
2461         (wl-draft-use-frame (eq switch-function 'switch-to-buffer-other-frame))
2462         (wl-draft-buffer-style switch-function))
2463     (if to
2464         (if (wl-string-match-assoc "to" wl-user-agent-headers-and-body-alist
2465                                    'ignore-case)
2466             (setcdr
2467              (wl-string-match-assoc "to" wl-user-agent-headers-and-body-alist
2468                                     'ignore-case)
2469              to)
2470           (setq wl-user-agent-headers-and-body-alist
2471                 (cons (cons "to" to)
2472                       wl-user-agent-headers-and-body-alist))))
2473     (if subject
2474         (if (wl-string-match-assoc "subject"
2475                                    wl-user-agent-headers-and-body-alist
2476                                    'ignore-case)
2477             (setcdr
2478              (wl-string-match-assoc "subject"
2479                                     wl-user-agent-headers-and-body-alist
2480                                     'ignore-case)
2481              subject)
2482           (setq wl-user-agent-headers-and-body-alist
2483                 (cons (cons "subject" subject)
2484                       wl-user-agent-headers-and-body-alist))))
2485     ;; i think this is what we want to use...
2486     (unwind-protect
2487         (progn
2488           ;; tell the hook-function to do its stuff
2489           (setq wl-user-agent-compose-p t)
2490           ;; because to get the hooks working, wl-draft has to think it has
2491           ;; been called interactively
2492           (call-interactively 'wl-draft))
2493       (setq wl-user-agent-compose-p nil))))
2494
2495 (defun wl-user-agent-compose-internal ()
2496   "Manipulate headers and/or a body of a draft message."
2497   ;; being called from wl-user-agent-compose?
2498   (if wl-user-agent-compose-p
2499       (progn
2500         ;; insert headers
2501         (let ((headers wl-user-agent-headers-and-body-alist)
2502               (case-fold-search t))
2503           (while headers
2504             ;; skip body
2505             (if (not (string-match "^body$" (car (car headers))))
2506                 (wl-user-agent-insert-header
2507                  (car (car headers)) (cdr (car headers)))
2508               t)
2509             (setq headers (cdr headers))))
2510         ;; highlight headers (from wl-draft in wl-draft.el)
2511         (wl-highlight-headers 'for-draft)
2512         ;; insert body
2513         (if (wl-string-match-assoc "body" wl-user-agent-headers-and-body-alist
2514                                    'ignore-case)
2515             (wl-user-agent-insert-body
2516              (cdr (wl-string-match-assoc
2517                    "body"
2518                    wl-user-agent-headers-and-body-alist 'ignore-case)))))
2519     t))
2520
2521 (require 'product)
2522 (product-provide (provide 'wl-draft) (require 'wl-version))
2523
2524 ;;; wl-draft.el ends here