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