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