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