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