* wl-vars.el (wl-draft-forward-hook): Setup to put forwarded flag.
[elisp/wanderlust.git] / wl / wl-vars.el
1 ;;; wl-vars.el --- Variable definitions for Wanderlust.
2
3 ;; Copyright (C) 1998,1999,2000,2001 Yuuichi Teranishi <teranisi@gohome.org>
4 ;; Copyright (C) 1998,1999,2000,2001 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 'elmo-vars)
35 (require 'elmo-util)
36 (require 'elmo-msgdb)
37 (require 'custom)
38
39 ;;; Customizable Variables
40
41 (defgroup wl nil
42   "Wanderlust, a news and mail reading software."
43   :tag "Wanderlust"
44   :link (` (custom-manual
45             (, (if (and (boundp 'current-language-environment)
46                         (string-equal "Japanese"
47                                       (symbol-value 'current-language-environment)))
48                    "(wl-ja)Top"
49                  "(wl)Top"))))
50   :group 'news
51   :group 'mail)
52
53 (defgroup wl-pref nil
54   "Wanderlust, Preferences."
55   :prefix "wl-"
56   :group 'wl)
57
58 (defgroup wl-folder nil
59   "Wanderlust, folder buffer."
60   :prefix "wl-"
61   :group 'wl)
62
63 (defgroup wl-summary nil
64   "Wanderlust, summary buffer."
65   :prefix "wl-"
66   :group 'wl)
67
68 (defgroup wl-summary-marks nil
69   "Wanderlust, marks used in summary buffers."
70   :prefix "wl-summary-"
71   :group 'wl-summary)
72
73 (defgroup wl-expire nil
74   "Wanderlust, Expiring and archiving."
75   :prefix "wl-"
76   :group 'wl)
77
78 (defgroup wl-score nil
79   "Wanderlust, Score file handling."
80   :prefix "wl-"
81   :group 'wl)
82
83 (defgroup wl-highlight nil
84   "Wanderlust, Highlights."
85   :prefix "wl-"
86   :group 'wl)
87
88 (defgroup wl-draft nil
89   "Wanderlust, draft mode."
90   :prefix "wl-"
91   :group 'wl)
92
93 (defgroup wl-setting nil
94   "Wanderlust common settings."
95   :prefix "wl-"
96   :group 'wl)
97
98 ;;; Emacsen
99 (defconst wl-on-xemacs (featurep 'xemacs))
100
101 (defconst wl-on-emacs21 (and (not wl-on-xemacs)
102                              (>= emacs-major-version 21)))
103
104 (defconst wl-on-mule (featurep 'mule))
105
106 (defconst wl-on-mule3
107   (and wl-on-mule (or wl-on-xemacs
108                       (> emacs-major-version 19))))
109
110 (defconst wl-on-nemacs nil) ; backward compatibility.
111
112 (eval-when-compile
113   (defun-maybe locate-data-directory (a)))
114
115 (defvar wl-cs-noconv
116   (cond (wl-on-mule3 'binary)
117         (wl-on-mule  '*noconv*)
118         (t           nil)))
119
120 (defvar wl-cs-autoconv
121   (cond (wl-on-mule3 'undecided)
122         (wl-on-mule  '*autoconv*)
123         (t           nil)))
124
125 (defvar wl-cs-local
126   (cond (wl-on-mule3  'junet)
127         (wl-on-mule   '*junet*)
128         (t           nil)))
129
130 (defvar wl-cs-cache wl-cs-local)
131
132 (defcustom wl-from (and user-mail-address
133                         (concat (and (user-full-name)
134                                      (concat (elmo-address-quote-specials
135                                               (user-full-name))
136                                              " "))
137                                 "<" user-mail-address ">"))
138   "*From string used in draft."
139   :type  'string
140   :group 'wl
141   :group 'wl-setting)
142
143 (defcustom wl-user-mail-address-list nil
144   "*A list of user's mail addresses.
145 This list is used to judge whether an address is user's or not.
146 You should set this variable if you use multiple e-mail addresses.
147 If you don't have multiple e-mail addresses, you don't have to set this.
148 NOTE: Non-nil value of `wl-user-mail-address-regexp' supersede this."
149   :type '(repeat string)
150   :group 'wl
151   :group 'wl-setting)
152
153 (defcustom wl-user-mail-address-regexp nil
154   "*A regexp for user's mail addresses.
155 Supersede `wl-user-mail-address-list'."
156   :type '(choice (const :tag "Use wl-user-mail-address-list" nil)
157                  string)
158   :group 'wl
159   :group 'wl-setting)
160
161 (defcustom wl-organization (getenv "ORGANIZATION")
162   "Organization name."
163   :type '(choice (const :tag "none" nil)
164                  string)
165   :group 'wl
166   :group 'wl-setting)
167
168 (defcustom wl-temporary-file-directory "~/tmp/"
169   "*Default temporary directory to save message, part."
170   :type 'directory
171   :group 'wl)
172
173 (defcustom wl-icon-directory (if (fboundp 'locate-data-directory)
174                                  (locate-data-directory "wl")
175                                (let ((icons (expand-file-name "wl/icons/"
176                                                               data-directory)))
177                                  (if (file-directory-p icons)
178                                      icons)))
179   "*Directory to load the icon files from, or nil if none."
180   :type '(choice (const :tag "none" nil)
181                  string)
182   :group 'wl)
183
184 (defcustom wl-summary-default-view 'thread
185   "Default status of summary view, thread or sequential view."
186   :type '(choice (const :tag "Thread" thread)
187                  (const :tag "Sequential" sequence))
188   :group 'wl-summary)
189
190 (defcustom wl-summary-default-view-alist nil
191   "An alist of regexp for folder name and summary default view.
192 If no match, `wl-summary-default-view' is used."
193   :type '(repeat (cons (regexp :tag "Folder Regexp")
194                        (choice (const :tag "Thread" thread)
195                                (const :tag "Sequential" sequence))))
196   :group 'wl-summary)
197
198 (defvar wl-summary-mode-line-format-spec-alist
199   '((?f (if (memq 'modeline wl-use-folder-petname)
200             (wl-folder-get-petname (elmo-folder-name-internal
201                                     wl-summary-buffer-elmo-folder))
202           (elmo-folder-name-internal wl-summary-buffer-elmo-folder)))
203     (?t (if (eq wl-summary-buffer-view 'thread) "T" "S"))
204     (?n wl-summary-buffer-new-count)
205     (?u wl-summary-buffer-unread-count)
206     (?a (length wl-summary-buffer-number-list)))
207   "An alist of format specifications that can appear in summary mode-lines.
208 Each element is a list of following:
209 \(SPEC STRING-EXP)
210 SPEC is a character for format specification.
211 STRING-EXP is an expression to get string to insert.")
212
213 (defcustom wl-summary-mode-line-format "Wanderlust: %f {%t}(%n/%u/%a)"
214   "*A format string for summary mode-line of Wanderlust.
215 It may include any of the following format specifications
216 which are replaced by the given information:
217
218 %f The folder name.
219 %t The thread status of the summary ('T' for thread, 'S' for sequential).
220 %n The number of new messages.
221 %u The number of unread messages (includes new messages).
222 %a The number of all messages."
223   :group 'wl-summary
224   :type 'string)
225
226 (defvar wl-summary-line-format-spec-alist
227   '((?Y (wl-summary-line-year))
228     (?M (wl-summary-line-month))
229     (?D (wl-summary-line-day))
230     (?W (wl-summary-line-day-of-week))
231     (?h (wl-summary-line-hour))
232     (?m (wl-summary-line-minute))
233     (?\[ (if wl-thr-linked "<" "["))
234     (?\] (if wl-thr-linked ">" "]"))
235     (?t (or wl-thr-indent-string ""))
236     (?s (wl-summary-line-subject))
237     (?S (wl-summary-line-size))
238     (?C (if wl-thr-children-number
239             (concat "[+" (number-to-string wl-thr-children-number) "] ")
240           (if wl-parent-message-entity
241               (if wl-thr-linked ">>" ">")
242             "")))
243     (?~ (if (zerop (length wl-line-string)) "" " "))
244     (?c (if wl-thr-children-number
245             (concat "+" (number-to-string wl-thr-children-number) ":")
246           ""))
247     (?f (wl-summary-line-from))
248     (?# (wl-summary-line-list-info))
249     (?l (wl-summary-line-list-count))
250     (?T (or wl-temp-mark " "))
251     (?P (or wl-persistent-mark " "))
252     (?n (wl-summary-line-number))
253     (?@ (wl-summary-line-attached)))
254   "An alist of format specifications that can appear in summary lines.
255 Each element is a list of following:
256 \(SPEC STRING-EXP)
257 SPEC is a character for format specification.
258 STRING-EXP is an expression to get string to insert.")
259
260 (defcustom wl-summary-line-format "%n%T%P%M/%D(%W)%h:%m %t%[%17(%c %f%) %] %s"
261   "*A default format string for summary line of Wanderlust.
262 It may include any of the following format specifications
263 which are replaced by the given information:
264
265 %n The number of the message.
266    The width is decided using `wl-summary-default-number-column' and
267    `wl-summary-number-column-alist'.
268 %T The temporal mark (*, D, o, O).
269 %P The persistent mark (status of the message).
270 %Y The year of the date field of the message (zero padded).
271 %M The month of the date field of the message (zero padded).
272 %D The day of the date field of the message (zero padded).
273 %W The weekday name of the date field of the message (zero padded).
274 %h The hour of the date field of the message (zero padded).
275 %m The minute of the date field of the message (zero padded).
276 %[ An open bracket.  If the message thread is linked,
277    it is replaced with '<'.
278 %] A close bracket.  If the message thread is linked,
279    it is replaced with '>'.
280 %c The children number of the closed message thread.
281    Children number is printed like '+??:'.
282 %C The children number of the closed message thread.
283    Children number is printed like '[+??] '.
284    If the message is opened, '>' or '>>' (linked) is displayed.
285 %f The from: field string of the message.
286 %s The subject: field string of the message.
287 %S The size of the message (if available).
288 %~ If the previous spec is not zero-length, replaced with ' '.
289
290 If the format string contains the specifiers %( and %), the text between
291 them will have the specified number of columns."
292   :group 'wl-summary
293   :type 'string)
294
295 (defcustom wl-folder-summary-line-format-alist nil
296   "An alist of folder name and a summary line format.
297 If no match, `wl-summary-line-format' is used.
298 e.x.
299       '((\"^%\" . \"%n%T%P%M/%D(%W)%h:%m %t%[%14(%c %f%) %](%S) %s\")
300         (\"^@2ch\" . \"%n%T%P%M%/%D/%h:%m %t[%9(%c %f%) ]%s\")))"
301   :type '(repeat (cons (regexp :tag "Folder Regexp")
302                        (string :tag "line format")))
303   :group 'wl-summary)
304
305 (defcustom wl-summary-check-line-format t
306   "*Check summary line format change if non-nil.
307 When summary line format is changed, current summary cache is discarded.
308 It is highly recommended to set this value to t."
309   :type 'boolean
310   :group 'wl-summary)
311
312 (defcustom wl-summary-line-format-file ".wl-summary-line-format"
313   "*Cache file for summary line format."
314   :type 'file
315   :group 'wl-summary)
316
317 (defcustom wl-summary-from-function 'wl-summary-default-from
318   "*A function for displaying sender (From: field) information."
319   :type 'function
320   :group 'wl-summary)
321
322 (defcustom wl-summary-subject-function 'wl-summary-default-subject
323   "*A function for displaying subject."
324   :type 'function
325   :group 'wl-summary)
326
327 (defcustom wl-summary-subject-filter-function 'wl-summary-default-subject-filter
328   "*A filter function for comparing subjects."
329   :type 'function
330   :group 'wl-summary)
331
332 (defcustom wl-summary-search-parent-by-subject-regexp "^[ \t]*\\(\\[[^:]+[,: ][0-9]+\\]\\)?[ \t]*re[\\^[:> ]"
333   "*If message does not have in-reply-to field nor references field and
334 subject matches this regexp, search parent message by subject matching.
335 If nil, never search search parent by subject."
336   :type '(choice string
337                  (const :tag "Don't search parent" nil))
338   :group 'wl-summary)
339
340 ;;; Mark & Action
341 (defcustom wl-summary-mark-action-list
342   '(("*"
343      target-mark
344      nil
345      wl-summary-register-target-mark
346      nil
347      wl-highlight-summary-temp-face
348      "Put target mark.")
349     ("d"
350      dispose
351      nil
352      wl-summary-register-temp-mark
353      wl-summary-exec-action-dispose
354      wl-highlight-summary-disposed-face
355      "Dispose messages according to `wl-dispose-folder-alist'.")
356     ("D"
357      delete
358      nil
359      wl-summary-register-temp-mark
360      wl-summary-exec-action-delete
361      wl-highlight-summary-deleted-face
362      "Delete messages immediately.")
363     ("o"
364      refile
365      wl-summary-get-refile-destination
366      wl-summary-set-action-refile
367      wl-summary-exec-action-refile
368      wl-highlight-summary-refiled-face
369      "Refile messages to the other folder.")
370     ("O"
371      copy
372      wl-summary-get-copy-destination
373      wl-summary-register-temp-mark
374      wl-summary-exec-action-copy
375      wl-highlight-summary-copied-face
376      "Copy messages to the other folder.")
377     ("i"
378      prefetch
379      nil
380      wl-summary-register-temp-mark
381      wl-summary-exec-action-prefetch
382      wl-highlight-summary-prefetch-face
383      "Prefetch messages.")
384     ("~"
385      resend
386      wl-summary-get-resend-address
387      wl-summary-register-temp-mark
388      wl-summary-exec-action-resend
389      wl-highlight-summary-resend-face
390      "Resend messages."))
391   "A variable to define Mark & Action.
392 Each element of the list should be a list of
393 \(MARK
394   SYMBOL
395   ARGUMENT-FUNCTION
396   SET-MARK-FUNCTION
397   EXEC-FUNCTION
398   FACE
399   DOC-STRING)
400
401 MARK is a temporal mark string to define.
402 SYMBOL is an action name to define.
403 ARGUMENT-FUNCTION is a function called to set the argument data for
404 SET-MARK-FUNCTION.
405 Its argument is (ACTION NUMBER).
406 ACTION is same as the SYMBOL.
407 NUMBER is the message number to determine the argument data.
408 SET-MARK-FUNCTION is a function called to set the mark.
409 Its argument is (NUMBER MARK DATA).
410 NUMBER is the target message number.
411 MARK is the temporary mark string.
412 DATA is given by ARGUMENT-FUNCTION.
413 EXEC-FUNCTION is a function called to execute the action.
414 Its argument is a list of MARK-INFO.
415 MARK-INFO is a list of (NUMBER MARK DATA).
416 FACE is a face for highlighting."
417   :type '(repeat (list
418                   (string :tag "Temporary mark")
419                   (symbol :tag "Action name")
420                   (symbol :tag "Argument function")
421                   (symbol :tag "Set mark function")
422                   (symbol :tag "Exec function")
423                   (symbol :tag "Face symbol")
424                   (string :tag "Document string")))
425   :group 'wl-summary)
426
427 ;; Important folders
428 (defcustom wl-default-folder "%inbox"
429   "*Default folder used in `wl-summary-goto-folder'."
430   :type 'string
431   :group 'wl)
432 (defcustom wl-draft-folder "+draft"
433   "*Draft folder"
434   :type 'string
435   :group 'wl)
436 (defcustom wl-trash-folder "+trash"
437   "*Trash folder"
438   :type 'string
439   :group 'wl
440   :group 'wl-setting)
441 (defcustom wl-queue-folder "+queue"
442   "*Queue folder"
443   :type 'string
444   :group 'wl)
445
446 (defcustom wl-default-spec "%"
447   "*Default prefix for folder name initially added in minibuffer"
448   :type 'string
449   :group 'wl)
450
451 (defcustom wl-insert-mail-followup-to nil
452   "*Insert Mail-Followup-To: field if non-nil."
453   :type 'boolean
454   :group 'wl-draft)
455
456 (defcustom wl-insert-mail-reply-to nil
457   "*Insert Mail-Reply-To: field if non-nil."
458   :type 'boolean
459   :group 'wl-draft)
460
461 (defcustom wl-insert-message-id t
462   "*Insert Message-ID: field if non-nil."
463   :type 'boolean
464   :group 'wl-draft)
465
466 (defcustom wl-auto-insert-x-face t
467   "*Insert X-Face: field automatically."
468   :type 'boolean
469   :group 'wl-draft)
470
471 (defcustom wl-x-face-file "~/.xface"
472   "*X-Face field is inserted using its contents.
473 If file exists and `wl-auto-insert-x-face' is non-nil."
474   :type 'file
475   :group 'wl-draft)
476
477 (defcustom wl-draft-write-file-function 'wl-draft-save
478   "Save function for draft message."
479   :type 'function
480   :group 'wl-draft)
481
482 (defcustom wl-subscribed-mailing-list nil
483   "*Subscribed mailing list.
484 You had better set this variable if you set 'wl-insert-mail-followup-to' as t."
485   :type '(repeat string)
486   :group 'wl-pref
487   :group 'wl-setting)
488
489 (defcustom wl-demo t
490   "*Display demo at start time."
491   :type 'boolean
492   :group 'wl-pref)
493
494 (defcustom wl-demo-icon-name-alist
495   '(((string-match "^... Dec \\([ 01][0-9]\\|2[0-5]\\)" (current-time-string))
496      .
497      (concat "wl-" (wl-version-status) "-xmas-logo"))
498     (t
499      .
500      (concat "wl-" (wl-version-status) "-logo")))
501   "An alist to determine the basename of the logo file."
502   :type '(repeat (cons (symbol :tag "condition")
503                        (symbol :tag "file name")))
504   :group 'wl-pref)
505
506 (defcustom wl-demo-image-filter-alist nil
507   "An alist of image type and filter function."
508   :type '(repeat (cons symbol function))
509   :group 'wl-pref)
510
511 (defcustom wl-envelope-from nil
512   "*Envelope From used in SMTP.
513 If nil, `wl-from' is used."
514   :type '(choice (const :tag "Same as 'From' field." nil)
515                  string)
516   :group 'wl
517   :group 'wl-setting)
518
519 (defcustom wl-draft-additional-header-alist nil
520   "*Additional headers in the draft."
521   :type '(repeat (cons (symbol :tag "Field Name")
522                        (choice (string :tag "String")
523                                (function :tag "Function")))))
524
525 (defcustom wl-draft-add-in-reply-to t
526   "*If non-nil, message-id of the cited message is inserted to the
527 in-reply-to field of the current draft."
528   :type 'boolean
529   :group 'wl)
530
531 (defcustom wl-draft-add-references nil
532   "*If non-nil, message-id of the cited message is inserted to the
533 references field of the current draft."
534   :type 'boolean
535   :group 'wl)
536
537 (defcustom wl-draft-cite-function 'wl-default-draft-cite
538   "*A function for citation."
539   :type 'function
540   :group 'wl-draft)
541
542 (defcustom wl-default-draft-cite-decorate-author t
543   "*If non-nil, the author of cited message is arranged by
544 `wl-summary-from-func-internal' in `wl-default-draft-cite'."
545   :type 'boolean
546   :group 'wl-draft)
547
548 (defcustom wl-smtp-connection-type nil
549   "*SMTP connection type.
550 If nil, default smtp connection type is used."
551   :type '(choice (const :tag "default" nil)
552                  (const :tag "Use STARTTLS" starttls)
553                  (const :tag "SMTP over SSL" ssl)
554                  symbol)
555   :group 'wl)
556
557 (defcustom wl-smtp-posting-user nil
558   "*SMTP authentication user."
559   :type '(choice (const :tag "none" nil)
560                  string)
561   :group 'wl
562   :group 'wl-setting)
563
564 (defcustom wl-smtp-posting-server nil
565   "*SMTP server name to send mail (wl-draft-send-mail-with-smtp)."
566   :type '(choice (const :tag "none" nil)
567                  string)
568   :group 'wl
569   :group 'wl-setting)
570
571 (defcustom wl-smtp-posting-port nil
572   "*SMTP port number in `wl-smtp-posting-server'.
573 If nil, default SMTP port number(25) is used."
574   :type '(choice (const :tag "Default (25)" nil)
575                  integer)
576   :group 'wl
577   :group 'wl-setting)
578
579 (defcustom wl-smtp-authenticate-type nil
580   "*SMTP Authentication type.
581 If nil, don't authenticate."
582   :type '(choice (const :tag "none" nil)
583                  (const :tag "PLAIN" "plain")
584                  (const :tag "CRAM-MD5" "cram-md5")
585                  (const :tag "DIGEST-MD5" "digest-md5")
586                  (const :tag "LOGIN" "login")
587                  (string :tag "Other"))
588   :group 'wl
589   :group 'wl-setting)
590
591 (defcustom wl-pop-before-smtp-user nil
592   "*POP3 user name to send mail using POP-before-SMTP.
593 If nil, `elmo-pop3-default-user' is used.
594 To use POP-before-SMTP,
595 \(setq wl-draft-send-mail-function 'wl-draft-send-mail-with-pop-before-smtp)"
596   :type '(choice (const :tag "none" nil)
597                  string)
598   :group 'wl
599   :group 'wl-setting)
600
601 (defcustom wl-pop-before-smtp-server nil
602   "*POP3 server for POP-before-SMTP.
603 If nil, `elmo-pop3-default-server' is used."
604   :type '(choice (const :tag "none" nil)
605                  string)
606   :group 'wl
607   :group 'wl-setting)
608
609 (defcustom wl-pop-before-smtp-port nil
610   "*POP3 port for POP-before-SMTP.
611 If nil, `elmo-pop3-default-port' is used."
612   :type '(choice (const :tag "none" nil)
613                  integer string)
614   :group 'wl
615   :group 'wl-setting)
616
617 (defcustom wl-pop-before-smtp-stream-type nil
618   "*Stream type for POP-before-SMTP.
619 If nil, `elmo-pop3-default-stream-type' is used."
620   :type 'boolean
621   :group 'wl)
622
623 (defcustom wl-pop-before-smtp-authenticate-type nil
624   "*Default Authentication type for POP-before-SMTP.
625 If nil, `elmo-pop3-default-authenticate-type' is used."
626   :type '(choice (const :tag "none" nil)
627                  (const :tag "APOP" 'apop)
628                  (const :tag "POP3" 'user))
629   :group 'wl
630   :group 'wl-setting)
631
632 (defcustom wl-nntp-posting-server nil
633   "*NNTP server name to post news.
634 If nil, `elmo-nntp-default-server' is used."
635   :type '(choice (const :tag "none" nil)
636                  string)
637   :group 'wl
638   :group 'wl-setting)
639 (defcustom wl-nntp-posting-user nil
640   "*NNTP user name to post news for authinfo.
641 If nil, `elmo-nntp-default-user' is used.
642 If nil, don't authenticate."
643   :type '(choice (const :tag "none" nil)
644                  string)
645   :group 'wl
646   :group 'wl-setting)
647 (defcustom wl-nntp-posting-port nil
648   "*NNTP port to post news.
649 If nil, `elmo-nntp-default-port' is used."
650   :type '(choice (const :tag "none" nil)
651                  integer string)
652   :group 'wl
653   :group 'wl-setting)
654 (defcustom wl-nntp-posting-stream-type nil
655   "*Stream type for posting Netnews.
656 If nil, `elmo-nntp-default-stream-type' is used."
657   :type 'boolean
658   :group 'wl)
659 (defcustom wl-nntp-posting-function 'elmo-nntp-post
660   "A function to post news.
661 Prepared candidate is 'elmo-nntp-post."
662   :type '(radio (function-item elmo-nntp-post)
663                 (function :tag "Other"))
664   :group 'wl-draft)
665 (defcustom wl-nntp-posting-config-alist nil
666   "*Alist of configuration on nntp posting.
667 ex.
668 '((\",?local.test\" . \"news.media.kyoto-u.ac.jp\")
669   (\",?ku\\.\" .
670    ((server . \"news.media.kyoto-u.ac.jp\")
671     (user . \"newsmaster\")
672     (port . 119)
673     (function . elmo-nntp-post))
674   (\".*\" . \"newsfeed.kuee.kyoto-u.ac.jp\")))"
675   :type '(repeat (cons (sexp :tag "Match")
676                        (choice (string :tag "Server")
677                                (repeat :inlie t
678                                        (cons (choice (const server)
679                                                      (const user)
680                                                      (const port)
681                                                      (const stream-type)
682                                                      (const function))
683                                              (sexp :tag "Value"))))))
684   :group 'wl-draft
685   :group 'wl-setting)
686
687 (defcustom wl-prefetch-confirm t
688   "*Confirm prefetching if message size is larger than `wl-prefetch-threshold'."
689   :type 'boolean
690   :group 'wl-pref)
691
692 (defcustom wl-prefetch-threshold 30000
693   "*Maximum size of message prefetched without confirmation.
694 If nil, all messages prefetched regardless of its size.
695 If message size is larger than this value, confirm prefetching
696 when `wl-prefetch-confirm' is non-nil."
697   :type '(choice (integer :tag "Threshold (bytes)")
698                  (const :tag "No limitation" nil))
699   :group 'wl-pref
700   :group 'wl-setting)
701
702 (defcustom wl-thread-insert-opened nil
703   "*Non-nil forces to insert thread as opened in updating."
704   :type 'boolean
705   :group 'wl-summary
706   :group 'wl-setting)
707
708 (defcustom wl-thread-open-reading-thread t
709   "*Non-nil forces to open reading thread."
710   :type 'boolean
711   :group 'wl-summary)
712
713 ;;;; Hooks
714 (defvar wl-folder-mode-hook nil
715   "A hook called when wanderlust folder mode is started.
716 This hook may contain the functions `wl-folder-init-icons' and
717 `wl-setup-folder' for reasons of system internal to accord facilities
718 for the Emacs variants.")
719 (defvar wl-summary-toggle-disp-on-hook nil
720   "A hook called when message is toggled.")
721 (defvar wl-summary-toggle-disp-off-hook nil
722   "A hook called when message is disappeared.")
723 (defvar wl-summary-toggle-disp-folder-on-hook nil
724   "A hook called when folder is toggled.")
725 (defvar wl-summary-toggle-disp-folder-off-hook nil
726   "A hook called when folder is disappeared.")
727 (defvar wl-summary-toggle-disp-folder-message-resumed-hook nil
728   "A hook called when message window is resumed when folder is toggled.")
729 (defvar wl-summary-mode-hook nil
730   "A hook called when summary mode is started.
731 This hook may contain the function `wl-setup-summary' for reasons of
732 system internal to accord facilities for the Emacs variants.")
733
734 (defvar wl-summary-prepared-pre-hook nil
735   "A hook called before the summary buffer has been generated.")
736 (defvar wl-summary-prepared-hook nil
737   "A hook called after the summary buffer has been generated.")
738 (defvar wl-summary-sync-updated-hook nil
739   "A hook called when update summary buffer.")
740 (defvar wl-summary-unread-message-hook nil
741   "A hook called when unread message is displayed.")
742 (defvar wl-summary-edit-addresses-hook nil
743   "A hook called when address book is edited.")
744 (defvar wl-summary-buffer-message-saved-hook nil
745   "A hook called when msgdb is saved.")
746 (defvar wl-summary-buffer-mark-saved-hook nil
747   "A hook called when mark is saved.")
748 (defvar wl-summary-divide-thread-when-subject-changed nil
749   "Divide thread when subject is changed.")
750 (defvar wl-init-hook nil
751   "A hook called when initialization is finished.  This hook may contain
752 the functions `wl-plugged-init-icons' and `wl-biff-init-icons' for
753 reasons of system internal to accord facilities for the Emacs variants.")
754 (defvar wl-hook nil
755   "A hook called when Wanderlust is invoked.")
756
757 (defvar wl-draft-reply-hook
758   '((lambda () (wl-draft-setup-parent-flag 'answered)))
759   "A hook called when replied.
760 This hook runs on the draft buffer.")
761
762 (defvar wl-draft-forward-hook
763   '((lambda () (wl-draft-setup-parent-flag 'forwarded)))
764   "A hook called when forwarded.
765 This hook runs on the draft buffer.")
766
767 (defvar wl-draft-kill-pre-hook nil
768   "A hook called just before the draft buffer is killed.")
769
770 (defvar wl-summary-reply-hook nil
771   "A hook called when `wl-summary-reply' is called.
772 This hook runs on the summary buffer.")
773
774 (defvar wl-summary-forward-hook nil
775   "A hook called when `wl-summary-forward' is called.
776 This hook runs on the summary buffer.")
777
778 (defvar wl-mail-setup-hook nil
779   "A hook called when Draft is prepared.")
780 (defvar wl-draft-reedit-hook '(wl-draft-remove-text-plain-tag)
781   "A hook called when Draft is re-edited.
782 The cursor point is located at top of the body.")
783 (defvar wl-draft-send-hook '(wl-draft-config-exec)
784   "A hook called on the draft editing buffer before sending process starts.")
785 (defvar wl-mail-send-pre-hook nil
786   "A hook called just before the mail sending process starts.")
787 (defvar wl-news-send-pre-hook nil
788   "A hook called just before the news sending process starts.")
789 (defvar wl-message-buffer-created-hook nil
790   "A hook called when Message buffer is prepared.")
791 (defvar wl-message-redisplay-hook nil
792   "A hook called when Message is displayed.")
793 (defvar wl-message-exit-hook nil
794   "A hook called when quit message.")
795 (defvar wl-summary-exit-pre-hook nil
796   "A hook called before exit summary mode.")
797 (defvar wl-summary-exit-hook nil
798   "A hook called when exit summary mode.")
799 (defvar wl-highlight-headers-hook nil
800   "A hook called when header is highlighted.")
801 (defvar wl-highlight-message-hook nil
802   "A hook called when message is highlighted.")
803 (defvar wl-save-hook nil
804   "A hook called when save summary and folder status.")
805 (defvar wl-exit-hook nil
806   "A hook called when exit wanderlust.")
807 (defvar wl-folder-suspend-hook nil
808   "A hook called when suspend wanderlust.")
809 (defvar wl-biff-notify-hook '(ding)
810   "A hook called when a biff-notification is invoked.")
811 (defvar wl-biff-unnotify-hook nil
812   "A hook called when a biff-notification is removed.")
813 (defvar wl-auto-check-folder-pre-hook nil
814   "A hook called before auto check folders.")
815 (defvar wl-auto-check-folder-hook nil
816   "A hook called when auto check folders.")
817 (defvar wl-folder-check-entity-pre-hook nil
818   "A hook called before check entity.")
819 (defvar wl-folder-check-entity-hook nil
820   "A hook called when check entity.")
821 (defvar wl-draft-config-exec-hook nil
822   "A hook called when execute header-config on draft.")
823 (defvar wl-summary-expire-pre-hook nil
824   "A hook called before expire.")
825 (defvar wl-summary-expire-hook nil
826   "A hook called when expired.")
827 (defvar wl-summary-archive-pre-hook nil
828   "A hook called before archive.")
829 (defvar wl-summary-archive-hook nil
830   "A hook called when archived.")
831 (defvar wl-summary-line-inserted-hook nil
832   "A hook called when summary line is inserted.")
833 (defvar wl-summary-insert-headers-hook nil
834   "A hook called when insert header for search header.")
835 (defvar wl-message-display-internal-hook nil
836   "A hook called when message buffer is created and message is displayed.
837 This hook may contain the functions `wl-setup-message' for
838 reasons of system internal to accord facilities for the Emacs variants.")
839 (defvar wl-thread-update-children-number-hook nil
840   "A hook called when children number is updated.")
841 (defvar wl-folder-update-access-group-hook nil
842   "A hook called when update access group folder.")
843 (defvar wl-draft-cited-hook nil
844   "A hook called after a message is cited.")
845 (defvar wl-draft-insert-x-face-field-hook nil
846   "A hook called after a x-face field is inserted.")
847 (defvar wl-template-mode-hook nil
848   "A hook called when template mode is started.")
849 (defvar wl-score-mode-hook nil
850   "A hook called when score mode is started.")
851 (defvar wl-make-plugged-hook nil
852   "A hook called when make plugged alist.")
853
854 (defvar wl-plugged-exit-hook nil
855   "A hook called when exit plugged mode.")
856
857 ;;;; functions for draft
858 (defcustom wl-draft-send-function 'wl-draft-normal-send-func
859   "A function to send message."
860   :type 'function
861   :group 'wl-draft)
862
863 (defcustom wl-draft-send-news-function 'wl-draft-elmo-nntp-send
864   "A function to send news."
865   :type 'function
866   :group 'wl-draft)
867
868 (defcustom wl-draft-send-mail-function 'wl-draft-send-mail-with-smtp
869   "A function to send mail.
870 Prepared candidates are 'wl-draft-send-mail-with-smtp,
871 'wl-draft-send-mail-with-qmail and 'wl-draft-send-mail-with-pop-before-smtp."
872   :type '(radio (function-item wl-draft-send-mail-with-smtp)
873                 (function-item wl-draft-send-mail-with-qmail)
874                 (function-item wl-draft-send-mail-with-pop-before-smtp)
875                 (function :tag "Other"))
876   :group 'wl-draft)
877
878 (defcustom wl-draft-reply-with-argument-list
879   '(("From" . (("Reply-To" "Mail-Reply-To" "From")
880                ("Mail-Followup-To" "To" "Cc")
881                ("Followup-To" "Newsgroups"))))
882   "Alist of cons cell of
883 \('condition' .  ('fields for To' 'fields for Cc' 'fields for Newsgroups'))
884 'condition' is a header name string (non-nil if the header exists in original
885 message), a function (evaluated in original message buffer) or a list of those
886 \(means 'AND' condition).
887 'fields for ***' is a list of strings.
888 If car of each cons cell returns non-nil value,
889 cdr of each cons cell is used for preparing headers of draft message.
890 Default is for 'reply-to-all'."
891   :type '(repeat (cons (choice (string :tag "Field Name")
892                                (symbol :tag "Function")
893                                (const :tag "Replying to self" wl-draft-self-reply-p)
894                                (repeat :tag "AND"
895                                        (choice (string :tag "Field Name")
896                                                (symbol :tag "Function")
897                                                (const :tag "Replying to self" wl-draft-self-reply-p))))
898                        (list (repeat :tag "Fields For To" string)
899                              (repeat :tag "Fields For Cc" string)
900                              (repeat :tag "Fields For Newsgroups" string))))
901   :group 'wl-draft)
902
903 (defcustom wl-draft-reply-without-argument-list
904   '(("Followup-To" . (("Mail-Followup-To" "Mail-Reply-To" "Reply-To") nil ("Followup-To")))
905     ("Mail-Followup-To" . (("Mail-Followup-To") nil nil))
906     ("Newsgroups" . (("Mail-Reply-To" "Reply-To" "To") ("Cc") ("Newsgroups")))
907     ("Mail-Reply-To" . (("Mail-Reply-To" "Reply-To") ("To" "Cc") nil))
908     ("Reply-To" . (("Reply-To") ("To" "Cc") nil))
909     (wl-draft-self-reply-p . (("To") ("Cc") nil))
910     ("From" . (("From") ("To" "Cc") nil)))
911   "Alist of cons cell of
912 \('condition' .  ('fields for To' 'fields for Cc' 'fields for Newsgroups'))
913 'condition' is a header name string (non-nil if the header exists in original
914 message), a function (evaluated in original message buffer) or a list of those
915 \(means 'AND' condition).
916 'fields for ***' is a list of strings.
917 If car of each cons cell returns non-nil value,
918 cdr of each cons cell is used for preparing headers of draft message."
919   :type '(repeat (cons (choice (string :tag "Field Name")
920                                (symbol :tag "Function")
921                                (const :tag "Replying to self" wl-draft-self-reply-p)
922                                (repeat :tag "AND"
923                                        (choice (string :tag "Field Name")
924                                                (symbol :tag "Function")
925                                                (const :tag "Replying to self" wl-draft-self-reply-p))))
926                        (list (repeat :tag "Fields For To" string)
927                              (repeat :tag "Fields For Cc" string)
928                              (repeat :tag "Fields For Newsgroups" string))))
929   :group 'wl-draft)
930
931 (defcustom wl-draft-always-delete-myself nil
932   "*Always delete myself from recipient if non-nil."
933   :type 'boolean
934   :group 'wl-draft)
935
936 (defcustom wl-draft-delete-myself-from-bcc-fcc nil
937   "*Do not insert bcc or fcc if To and Cc fields is a member of
938 `wl-subscribed-mailing-list'"
939   :type 'boolean
940   :group 'wl-draft)
941
942 (defcustom wl-draft-resume-folder-window t
943   "*Resume folder window in `wl-draft-hide'."
944   :type 'boolean
945   :group 'wl-draft)
946
947 (defcustom wl-draft-use-frame nil
948   "*Raise new frame when composing draft."
949   :type 'boolean
950   :group 'wl-draft)
951
952 (defcustom wl-draft-qmail-send-plugged nil
953   "*Send mail when plugged is on, in the `wl-draft-send-mail-with-qmail'."
954   :type 'boolean
955   :group 'wl-draft)
956
957 (defcustom wl-draft-remove-group-list-contents t
958   "*If non-nil, remove group list contents in `wl-draft-send-mail-with-smtp'."
959   :type 'boolean
960   :group 'wl-draft)
961
962 ;;;;
963 (defcustom wl-init-file "~/.wl"
964   "*User customization setting file."
965   :type 'file
966   :group 'wl)
967
968 (defcustom wl-folders-file "~/.folders"
969   "*Folders file."
970   :type 'file
971   :group 'wl)
972
973 (defcustom wl-address-file "~/.addresses"
974   "*Addresses file."
975   :type 'file
976   :group 'wl)
977
978 (defcustom wl-alias-file "~/.im/Aliases"
979   "*Alias file for completion."
980   :type 'file
981   :group 'wl)
982
983 (defcustom wl-ldap-server nil
984   "*LDAP server."
985   :type '(choice (const :tag "Default server(localhost)" nil)
986                  (string :tag "Server"))
987   :group 'wl
988   :group 'wl-setting)
989
990 (defcustom wl-ldap-port nil
991   "*LDAP port."
992   :type '(choice (const :tag "Default port" nil)
993                  integer)
994   :group 'wl
995   :group 'wl-setting)
996
997 (defcustom wl-ldap-base nil
998   "*LDAP base."
999   :type '(choice (const :tag "Default base" nil)
1000                  (string :tag "Base"))
1001   :group 'wl
1002   :group 'wl-setting)
1003
1004 (defcustom wl-use-ldap nil
1005   "*If non-nil, use LDAP for address completion."
1006   :type 'boolean
1007   :group 'wl
1008   :group 'wl-setting)
1009
1010 (defcustom wl-use-acap nil
1011   "*If non-nil, use ACAP for configuration."
1012   :type 'boolean
1013   :group 'wl)
1014
1015 (defcustom wl-folder-info-save t
1016   "If non-nil, save elmo-folder-info-alist."
1017   :type 'boolean
1018   :group 'wl-folder)
1019
1020 (defcustom wl-summary-persistent-mark-priority-list '(flag
1021                                                       new
1022                                                       answered
1023                                                       forwarded
1024                                                       unread)
1025   "List of preserved flag symbols to define the priority to map\
1026 to the persistent mark.
1027 Special symbol `flag' means the user defined flag."
1028   :type '(repeat (symbol :tag "preserved flag"))
1029   :group 'wl-summary)
1030
1031 (defcustom wl-summary-flag-alist
1032   '((important "orange"))
1033   "An alist to define the global flags for the summary mode.
1034 Each element is a form like:
1035 \(SYMBOL-OF-FLAG COLOR [MARK]\)
1036 Example:
1037 \((important \"orange\"\)
1038  \(todo \"red\" \"T\"\)
1039  \(business \"green\" \"B\"\)
1040  \(private \"blue\"\)\)"
1041   :type '(repeat (list (symbol :tag "flag")
1042                        (string :tag "color")
1043                        (choice (string :tag "mark")
1044                                (const :tag "Default mark" nil))))
1045   :group 'wl-summary)
1046
1047 (defcustom wl-summary-uncached-mark "!"
1048   "Mark for uncached message with no flag."
1049   :type '(string :tag "Mark")
1050   :group 'wl-summary-marks)
1051
1052 (defcustom wl-summary-new-uncached-mark "N"
1053   "Mark for new and uncached message."
1054   :type '(string :tag "Mark")
1055   :group 'wl-summary-marks)
1056
1057 (defcustom wl-summary-new-cached-mark "n"
1058   "Mark for new but already cached message."
1059   :type '(string :tag "Mark")
1060   :group 'wl-summary-marks)
1061
1062 (defcustom wl-summary-unread-uncached-mark "U"
1063   "Mark for unread and uncached message."
1064   :type '(string :tag "Mark")
1065   :group 'wl-summary-marks)
1066
1067 (defcustom wl-summary-unread-cached-mark "u"
1068   "Mark for unread but already cached message."
1069   :type '(string :tag "Mark")
1070   :group 'wl-summary-marks)
1071
1072 (defcustom wl-summary-answered-cached-mark "a"
1073   "Mark for answered and cached message."
1074   :type '(string :tag "Mark")
1075   :group 'wl-summary-marks)
1076
1077 (defcustom wl-summary-answered-uncached-mark "A"
1078   "Mark for answered but uncached message."
1079   :type '(string :tag "Mark")
1080   :group 'wl-summary-marks)
1081
1082 (defcustom wl-summary-flag-mark "$"
1083   "Mark for the messages which have tags."
1084   :type '(string :tag "Mark")
1085   :group 'wl-summary-marks)
1086
1087 (defcustom wl-summary-score-over-mark "+"
1088   "Score mark used for messages with high scores."
1089   :type '(string :tag "Mark")
1090   :group 'wl-summary-marks)
1091
1092 (defcustom wl-summary-score-below-mark "-"
1093   "Score mark used for messages with low scores."
1094   :type '(string :tag "Mark")
1095   :group 'wl-summary-marks)
1096
1097 (defcustom wl-summary-no-mime-folder-list nil
1098   "*All folders that match this list don't analysis mime."
1099   :type '(repeat string)
1100   :group 'wl-summary)
1101
1102 (defcustom wl-summary-fix-timezone nil
1103   "*Time zone of the date string in summary mode.
1104 If nil, it is adjust to the default time zone information
1105 \(system's default time zone or environment variable TZ)."
1106   :type '(choice (const :tag "Default time zone" nil)
1107                  string)
1108   :group 'wl-summary)
1109
1110 (defcustom wl-summary-default-score 0
1111   "*Default message score level.
1112 All scores generated by the score files will be added to this score.
1113 If this variable is nil, scoring will be disabled."
1114   :type '(choice (const :tag "disable" nil)
1115                  integer)
1116   :group 'wl-score)
1117
1118 (defcustom wl-summary-important-above nil
1119   "*Mark all messages with a score above this variable as important.
1120 This variable is local to the summary buffers."
1121   :type '(choice (const :tag "off" nil)
1122                  integer)
1123   :group 'wl-score)
1124
1125 (defcustom wl-summary-target-above nil
1126   "*Mark all messages with a score above this variable as target.
1127 This variable is local to the summary buffers."
1128   :type '(choice (const :tag "off" nil)
1129                  integer)
1130   :group 'wl-score)
1131
1132 (defcustom wl-summary-mark-below 0
1133   "*Mark all messages with a score below this variable as read.
1134 This variable is local to each summary buffer and usually set by the
1135 score file."
1136   :type 'integer
1137   :group 'wl-score)
1138
1139 (defcustom wl-summary-expunge-below nil
1140   "All messages that have a score less than this variable will be expunged.
1141 This variable is local to the summary buffers."
1142   :type '(choice (const :tag "off" nil)
1143                  integer)
1144   :group 'wl-score)
1145
1146 (defcustom wl-summary-score-marks
1147   (list wl-summary-new-uncached-mark wl-summary-new-cached-mark)
1148   "Persistent marks to scoring."
1149   :type '(repeat (string :tag "Mark"))
1150   :group 'wl-score)
1151
1152 (defcustom wl-use-scoring t
1153   "*If non-nil, enable scoring."
1154   :type 'boolean
1155   :group 'wl-pref)
1156
1157 (defcustom wl-summary-rescore-partial-threshold 200
1158   "*Summary is not scored entirely if there are messages more than this value.
1159 In sync-all or rescan."
1160   :type 'integer
1161   :group 'wl-score)
1162
1163 (defcustom wl-score-files-directory (concat elmo-msgdb-directory elmo-path-sep)
1164   "*Name of the directory where score files will be stored.
1165 (default \"~/.elmo\")."
1166   :type 'directory
1167   :group 'wl)
1168
1169 (defcustom wl-score-interactive-default-score 1000
1170   "*Scoring commands will raise/lower the score with this number as the default."
1171   :type 'integer
1172   :group 'wl-score)
1173
1174 (defcustom wl-score-expiry-days 7
1175   "*Number of days before unused score file entries are expired.
1176 If this variable is nil, no score file entries will be expired."
1177   :type '(choice (const :tag "never" nil)
1178                  number)
1179   :group 'wl-score)
1180
1181 (defcustom wl-score-update-entry-dates t
1182   "*In non-nil, update matching score entry dates.
1183 If this variable is nil, then score entries that provide matches
1184 will be expired along with non-matching score entries."
1185   :type 'boolean
1186   :group 'wl-score)
1187
1188 (defcustom wl-score-folder-alist nil
1189   "*Alist of folder regexp and score file."
1190   :type '(repeat (list (regexp :tag "Folder Regexp")
1191                        (repeat :inline t
1192                                (choice file
1193                                        (symbol :tag "Variable")))))
1194   :group 'wl-score)
1195
1196 (defcustom wl-score-folder-alist-matchone t
1197   "*If non-nil, getting only one element of `wl-score-folder-alist'."
1198   :type 'boolean
1199   :group 'wl-score)
1200
1201 (defcustom wl-score-default-file "all.SCORE"
1202   "*Default score file name."
1203   :type 'file
1204   :group 'wl-score)
1205
1206 (defcustom wl-score-simplify-fuzzy-regexp
1207   '("^[ \t]*\\[[^:]+[,: ][0-9]+\\][ \t]*")
1208   "*Strings to be removed when doing fuzzy matches.
1209 This can either be a regular expression or list of regular expressions."
1210   :type '(repeat regexp)
1211   :group 'wl-score)
1212
1213 (defcustom wl-score-header-default-entry
1214   '(("number" -1000 perm =)
1215     ("subject" -1000 nil nil)
1216     ("from" -1000 perm s)
1217     ("message-id" -1000 temp e)
1218     ("references" -1000 perm e)
1219     ("to" -1000 perm s)
1220     ("cc" -1000 perm s)
1221     ("date" -1000 temp nil)
1222     ("xref" -1000 perm s)
1223     ("extra" -1000 perm s)
1224     ("chars" -1000 perm >)
1225     ("lines" -1000 perm >)
1226     ("followup" -1000 perm s)
1227     ("thread" -1000 temp s))
1228   "*Default entry when insert score entry."
1229   :type '(repeat (list (string :tag "Header")
1230                        (choice (integer :tag "Score")
1231                                (const :tag "Ask" nil))
1232                        (choice (const :tag "Permanent" perm)
1233                                (const :tag "Temporary" temp)
1234                                (const :tag "Ask" nil))
1235                        (choice (const :tag "Regexp string" r)
1236                                (const :tag "Substring" s)
1237                                (const :tag "fuzzy string" f)
1238                                (const :tag "Exact string" e)
1239                                (const :tag "REGEXP STRING" R)
1240                                (const :tag "SUBSTRING" S)
1241                                (const :tag "FUZZY STRING" F)
1242                                (const :tag "EXACT STRING" E)
1243                                (const :tag "less than" <)
1244                                (const :tag "less equal" <=)
1245                                (const :tag "greater than" >)
1246                                (const :tag "greater equal" >=)
1247                                (const :tag "equal" =)
1248                                (const :tag "Ask" nil))))
1249   :group 'wl-score)
1250
1251 (defcustom wl-score-mode-mime-charset 'x-ctext
1252   "*MIME Charset for score file."
1253   :type 'symbol
1254   :group 'wl-score)
1255
1256 (defcustom wl-draft-fields
1257   '("To:" "Cc:" "Bcc:" "Fcc:" "Distribution:" "Organization:"
1258     "Newsgroups:" "Followup-To:" "Mail-Followup-To:" "From:" "Reply-To:")
1259   "Fields used in draft mode."
1260   :type '(repeat (string :tag "Field"))
1261   :group 'wl-draft)
1262
1263 ;; MIME Bcc.
1264 (defcustom wl-draft-mime-bcc-field-name "Ecc"
1265   "Field name for MIME-encapsulated Bcc."
1266   :type '(string :tag "Field Name")
1267   :group 'wl-draft)
1268
1269 (defcustom wl-draft-mime-bcc-body nil
1270   "Body string for MIME-encapsulated Bcc.
1271 If nil, a string `This is a blind carbon copy.' is used."
1272   :type '(choice (const :tag "default" nil)
1273                  (string :tag "Body"))
1274   :group 'wl-draft)
1275
1276 (defcustom wl-draft-disable-bcc-for-mime-bcc t
1277   "Disable Bcc while MIME-encapsulated Bcc."
1278   :type 'boolean
1279   :group 'wl-draft)
1280
1281 (defcustom wl-draft-disable-fcc-for-mime-bcc t
1282   "Disable Fcc while MIME-encapsulated Bcc."
1283   :type 'boolean
1284   :group 'wl-draft)
1285
1286 (defcustom wl-draft-config-alist nil
1287   "Alist of condition and actions for dynamical draft modification.
1288 First element of each list is some condition for the draft buffer (regular
1289 expression for header or elisp expression) and remaining elements indicate
1290 actions.
1291 If the first element is `reply' keyword, the next element be the condition
1292 for the message being replied, and remaining elements are actions.
1293
1294 The configuration is applied when `wl-draft-config-exec' is called, or
1295 applied automatically before sending message.
1296
1297 ex.
1298 '((\"^To: .*wl@lists.airs.net\"
1299    (\"From\" . my-from-address-for-wl-list)
1300    (\"Organization\" . my-organization-for-wl-list))
1301   (reply
1302    \"^To: .*hogehoge@aaa.ne.jp\"
1303    (\"From\" . \"Alternative Address <hogehoge@aaa.ne.jp>\")
1304    my-draft-config-function-hogehoge))
1305
1306 See also variable `wl-draft-parent-folder'."
1307   :type '(repeat (list (sexp :tag "Match")
1308                        (repeat
1309                         :inline t
1310                         (choice (cons (sexp :tag "Field(Variable)")
1311                                       (sexp :tag "Value"))
1312                                 (sexp :tag "Function")))))
1313   :group 'wl-draft
1314   :group 'wl-setting)
1315
1316 (defcustom wl-draft-config-matchone nil
1317   "*If non-nil, applied only one element of `wl-draft-config-alist'."
1318   :type 'boolean
1319   :group 'wl-draft
1320   :group 'wl-setting)
1321
1322 (defcustom wl-draft-elide-ellipsis "\n[...]\n\n"
1323   "*The string which is inserted for elided text."
1324   :type 'string
1325   :group 'wl-draft)
1326
1327 (defcustom wl-template-alist nil
1328   "Alist of template.
1329 First element of each list is a string specifies the name of the template.
1330 Remaining elements indicate actions. The format of actions is same as that
1331 of `wl-draft-config-alist'."
1332   :type '(repeat (list (string :tag "Name")
1333                        (repeat
1334                         :inline t
1335                         (choice (cons (sexp :tag "Field(Variable)")
1336                                       (sexp :tag "Value"))
1337                                 (sexp :tag "Function")))))
1338   :group 'wl-draft
1339   :group 'wl-setting)
1340
1341 (defcustom wl-template-visible-select t
1342   "*If non-nil, select template with visible."
1343   :type 'boolean
1344   :group 'wl-draft)
1345
1346 (defcustom wl-template-confirm nil
1347   "*If non-nil, require your confirmation when selected template."
1348   :type 'boolean
1349   :group 'wl-draft)
1350
1351 (defcustom wl-template-buffer-lines 7
1352   "*Lines of template buffer."
1353   :type 'integer
1354   :group 'wl-draft)
1355
1356 ;; queued sending.
1357 (defcustom wl-draft-enable-queuing t
1358   "*Non-nil enables queued sending."
1359   :type 'boolean
1360   :group 'wl-draft
1361   :group 'wl-pref)
1362
1363 (defcustom wl-draft-force-queuing nil
1364   "*Non-nil forces queued sending for mail and news."
1365   :type 'boolean
1366   :group 'wl-draft
1367   :group 'wl-pref)
1368
1369 (defcustom wl-draft-force-queuing-mail nil
1370   "*Non-nil forces queued sending for mail."
1371   :type 'boolean
1372   :group 'wl-draft
1373   :group 'wl-pref)
1374
1375 (defcustom wl-draft-force-queuing-news nil
1376   "*Non-nil forces queued sending for news."
1377   :type 'boolean
1378   :group 'wl-draft
1379   :group 'wl-pref)
1380
1381 (defcustom wl-draft-use-cache nil
1382   "*If non-nil, sending message is cached."
1383   :type 'boolean
1384   :group 'wl-draft
1385   :group 'wl-pref)
1386
1387 (defcustom wl-auto-flush-queue t
1388   "*If non-nil, sending queue is flushed when network status is toggled."
1389   :type 'boolean
1390   :group 'wl-draft
1391   :group 'wl-pref)
1392
1393 (defcustom wl-draft-buffer-style 'full
1394   "Style of draft buffer except for `wl-summary-reply' and `wl-summary-forward'
1395 'keep is to use current window, 'full is to use full frame window and
1396 'split is to split current window.
1397 If it is a function, it is called with the draft buffer as an argument."
1398   :type '(choice (const :tag "Keep window" keep)
1399                  (const :tag "Split window" split)
1400                  (const :tag "Full window" full)
1401                  (sexp :tag "Use Function"))
1402   :group 'wl-draft)
1403
1404 (defcustom wl-draft-reply-buffer-style 'split
1405   "Style of draft buffer for `wl-summary-reply' and `wl-summary-forward'
1406 'keep is to use message buffer window, 'full is to use full frame window and
1407 'split is to split message buffer window.
1408 If it is a function, it is called with the draft buffer as an argument."
1409   :type '(choice (const :tag "Keep window" keep)
1410                  (const :tag "Split window" split)
1411                  (const :tag "Full window" full)
1412                  (sexp :tag "Use Function"))
1413   :group 'wl-draft)
1414
1415 (defcustom wl-draft-reply-default-position 'body
1416   "Begining position of reply buffer.
1417 'body means the top of body.
1418 'bottom means the bottom of body.
1419 'top means the top of header.
1420 \"To\", \"Newsgroups\", \"Subject\" means the position of the header field.
1421 You can also set it to a list of setting.
1422 "
1423   :type '(choice (repeat
1424                   (choice
1425                    (const :tag "Top of body" body)
1426                    (const :tag "Bottom of body" bottom)
1427                    (const :tag "Top of header" top)
1428                    (const "To")
1429                    (const "Newsgroups")
1430                    (const "Subject")
1431                    (string :tag "Header Name")))
1432                  (const "To")
1433                  (const "Newsgroups")
1434                  (const "Subject")
1435                  (string :tag "Header Name"))
1436   :group 'wl-draft)
1437
1438 (defcustom wl-draft-queue-save-variables
1439   '(wl-envelope-from wl-from
1440     wl-smtp-posting-server wl-smtp-posting-user wl-smtp-posting-port
1441     wl-smtp-authenticate-type wl-smtp-connection-type
1442     wl-pop-before-smtp-server wl-pop-before-smtp-user wl-pop-before-smtp-port
1443     wl-pop-before-smtp-stream-type wl-pop-before-smtp-authenticate-type
1444     wl-nntp-posting-server wl-nntp-posting-server
1445     wl-nntp-posting-user wl-nntp-posting-port wl-nntp-posting-stream-type)
1446   "*Saving variables in queue info."
1447   :type '(repeat (sexp :tag "Variable"))
1448   :group 'wl-draft)
1449
1450 (defcustom wl-draft-sendlog t
1451   "*Keep send state in log if non-nil."
1452   :type 'boolean
1453   :group 'wl-draft)
1454
1455 (defcustom wl-draft-sendlog-max-size 20000
1456   "*Max file size of sendlog."
1457   :type '(choice (const :tag "Unlimited" nil)
1458                  integer)
1459   :group 'wl-draft)
1460
1461 (defcustom wl-summary-default-number-column 5
1462   "Number of columns in summary buffer."
1463   :type 'integer
1464   :group 'wl-summary)
1465
1466 (defcustom wl-summary-number-column-alist '(("\\*.*" . 6))
1467   "Alist of folder and its number column.
1468 If no matches, 'wl-summary-default-number-column' is used.
1469 ex.
1470 '((\"^%inbox@qmail-maildir\" . 9)
1471   (\"^-.*@news-server\" . 6))"
1472   :type '(repeat (cons (regexp :tag "Folder Regexp") integer))
1473   :group 'wl-summary)
1474
1475 (defcustom wl-summary-highlight t
1476   "Non-nil forces Summary buffer to be highlighted."
1477   :type 'boolean
1478   :group 'wl-summary
1479   :group 'wl-highlight)
1480
1481 (defcustom wl-summary-lazy-highlight (boundp 'window-scroll-functions)
1482   "Non-nil forces lazy summary highlighting using `window-scroll-functions'."
1483   :type 'boolean
1484   :group 'wl-summary
1485   :group 'wl-highlight)
1486
1487 (defcustom wl-summary-highlight-partial-threshold 1000
1488   "Summary is not highlighted entirely if there are lines more than this value.
1489 Available if only `wl-summary-lazy-highlight' is nil."
1490   :type 'integer
1491   :group 'wl-summary
1492   :group 'wl-highlight)
1493
1494 (defcustom wl-summary-partial-highlight-above-lines 30
1495   "If Summary has lines more than `wl-summary-highlight-partial-threshold',
1496 Summary lines are highlighted partialy above current position.
1497 Available if only `wl-summary-lazy-highlight' is nil."
1498   :type 'integer
1499   :group 'wl-summary
1500   :group 'wl-highlight)
1501
1502 (defcustom wl-summary-lazy-update-mark (boundp 'window-scroll-functions)
1503   "Non-nil forces lazy update mark using `window-scroll-functions'."
1504   :type 'boolean
1505   :group 'wl-summary)
1506
1507 (defcustom wl-summary-cache-use t
1508   "Non-nil forces wl-summary to use cache file."
1509   :type 'boolean
1510   :group 'wl-summary)
1511
1512 (defcustom wl-summary-auto-sync-marks t
1513   "Non-nil forces to synchronize unread/important marks."
1514   :type 'boolean
1515   :group 'wl-summary)
1516
1517 (defcustom wl-summary-cache-file ".wl-summary-cache"
1518   "*Cache file for summary mode contents."
1519   :type 'file
1520   :group 'wl-summary)
1521 (defcustom wl-summary-view-file ".wl-summary-view"
1522   "*Current summary view."
1523   :type 'file
1524   :group 'wl-summary)
1525 (defcustom wl-thread-top-file ".wl-thread-top"
1526   "*Current thread top entity... obsolete."
1527   :type 'file
1528   :group 'wl-summary)
1529 (defcustom wl-thread-entity-file ".wl-thread-entity"
1530   "*Thread entities."
1531   :type 'file
1532   :group 'wl-summary)
1533 (defcustom wl-thread-entity-list-file ".wl-thread-entity-list"
1534   "*Thread top entity list."
1535   :type 'file
1536   :group 'wl-summary)
1537
1538 (defcustom wl-print-buffer-function 'lpr-buffer
1539   "A function to print current buffer."
1540   :type 'function
1541   :group 'wl-pref)
1542
1543 (defcustom wl-ps-print-buffer-function
1544   (if window-system 'ps-print-buffer-with-faces 'ps-print-buffer)
1545   "A function to print current buffer with ps-print."
1546   :type 'function
1547   :group 'wl-pref)
1548
1549 ;;;; Preferences
1550 (defcustom wl-use-petname t
1551   "*Display petname in summary and default citation title."
1552   :type 'boolean
1553   :group 'wl-pref)
1554
1555 (defcustom wl-use-folder-petname
1556   '(modeline)
1557   "*List of situation using folder petname.
1558 Allowed situations are:
1559   modeline    : displayed on modeline.
1560   ask-folder  : displayed on minibuffer when ask folder.
1561   read-folder : can used for completion at `wl-summary-read-folder'."
1562   :type '(set (const modeline)
1563               (const ask-folder)
1564               (const read-folder))
1565   :group 'wl-summary
1566   :group 'wl-pref)
1567
1568 (defcustom wl-folder-petname-alist nil
1569   "A list of (realname . petname)."
1570   :type '(repeat (cons (string :tag "Realname") (string :tag "Petname")))
1571   :group 'wl-folder)
1572
1573 (defcustom wl-summary-weekday-name-lang
1574   (if (and (boundp 'current-language-environment)
1575            (string-equal "Japanese"
1576                          (symbol-value 'current-language-environment)))
1577       "ja" "en")
1578   "*Language to display week day."
1579   :type '(choice (const "ja")
1580                  (const "en")
1581                  (const "fr")
1582                  (const "de")
1583                  (string :tag "Other"))
1584   :group 'wl-summary
1585   :group 'wl-pref)
1586
1587 (defcustom wl-message-id-use-wl-from t
1588   "*Use `wl-from' for domain part of Message-ID if non-nil."
1589   :type 'boolean
1590   :group 'wl-pref)
1591
1592 (defcustom wl-local-domain nil
1593   "*Domain part of this client (without hostname).
1594 Set this if (system-name) does not return FQDN."
1595   :type '(choice (const :tag "Use System Name" nil)
1596                  string)
1597   :group 'wl-pref)
1598
1599 (defcustom wl-message-id-domain nil
1600   "*Specific domain part of Message-ID."
1601   :type '(choice (const :tag "Use System Name" nil)
1602                  string)
1603   :group 'wl-pref)
1604
1605 (defcustom wl-unique-id-suffix ".wl"
1606   "*Specific string in generated Message-ID
1607 which appear just before @."
1608   :type 'string
1609   :group 'wl-pref)
1610
1611 (defcustom wl-break-pages t
1612   "*Break Pages at ^L."
1613   :type 'boolean
1614   :group 'wl-pref)
1615
1616 (defcustom wl-message-use-header-narrowing t
1617   "Use header narrowing when non-nil."
1618   :type 'boolean
1619   :group 'wl-pref)
1620
1621 (defcustom wl-message-header-narrowing-fields '("to" "cc")
1622   "A list of field name to enable header narrowing."
1623   :type '(repeat string)
1624   :group 'wl-pref)
1625
1626 (defcustom wl-message-header-narrowing-lines 4
1627   "Line number to enable the header narrowing."
1628   :type 'integer
1629   :group 'wl-pref)
1630
1631 (defcustom wl-message-header-narrowing-string "..."
1632   "A string used for header narrowing truncation."
1633   :type 'string
1634   :group 'wl-pref)
1635
1636 (defvar wl-message-mode-line-format-spec-alist
1637   '((?f (if (memq 'modeline wl-use-folder-petname)
1638             (wl-folder-get-petname wl-message-buffer-cur-folder)
1639           wl-message-buffer-cur-folder))
1640     (?F wl-message-buffer-flag-indicator)
1641     (?n wl-message-buffer-cur-number))
1642   "An alist of format specifications for message buffer's mode-lines.
1643 Each element is a list of following:
1644 \(SPEC STRING-EXP)
1645 SPEC is a character for format specification.
1646 STRING-EXP is an expression to get string to insert.")
1647
1648 (defcustom wl-message-mode-line-format "Wanderlust: << %f / %n %F>>"
1649   "*A format string for message buffer's mode-line of Wanderlust.
1650 It may include any of the following format specifications
1651 which are replaced by the given information:
1652
1653 %f The folder name.
1654 %n The number of the message.
1655 %F The global flag indicator."
1656   :group 'wl-pref
1657   :type 'string)
1658
1659 (defcustom wl-message-truncate-lines default-truncate-lines
1660   "*Truncate lines in Message Buffer."
1661   :type 'boolean
1662   :group 'wl-pref)
1663
1664 (defcustom wl-draft-truncate-lines default-truncate-lines
1665   "*Truncate lines in Draft Buffer."
1666   :type 'boolean
1667   :group 'wl-draft
1668   :group 'wl-pref)
1669
1670 (defcustom wl-message-scroll-amount nil
1671   "*Scroll amount by SPC key."
1672   :type '(choice (const :tag "scrolling by screenfuls" nil)
1673                  integer)
1674   :group 'wl-pref)
1675
1676 (defcustom wl-message-window-size '(1 . 4)
1677   "*Size of summary and message window.  cons cell of (Summary : Message)."
1678   :type '(cons integer integer)
1679   :group 'wl-pref)
1680
1681 (defcustom wl-message-sort-field-list '("Return-Path" "Received" "^To" "^Cc"
1682                                         "Newsgroups" "Subject" "^From")
1683   "*Sort order of header fields.  Each elements are regexp of field name."
1684   :type '(repeat (string :tag "Field Regexp"))
1685   :group 'wl-pref
1686   :group 'wl-setting)
1687
1688 (defcustom wl-message-ignored-field-list nil
1689   "All fields that match this list will be hidden in message buffer.
1690 Each elements are regexp of field-name.
1691 You can specify exceptions by `wl-message-visible-field-list'."
1692   :type '(repeat (string :tag "Field Regexp"))
1693   :group 'wl-pref
1694   :group 'wl-setting)
1695
1696 (defcustom wl-message-visible-field-list nil
1697   "All fields that match this list will be displayed in message buffer.
1698 Each elements are regexp of field-name.
1699 This variable overwhelm `wl-message-ignored-field-list' settings."
1700   :type '(repeat (string :tag "Field Regexp"))
1701   :group 'wl-pref
1702   :group 'wl-setting)
1703
1704 (defcustom wl-message-header-button-alist
1705   (` (("^\\(References\\|Message-Id\\|In-Reply-To\\):"
1706        "<[^>]+>"
1707        0 wl-message-button-refer-article  0)
1708       ("^[^:]+:"
1709        "\\(<\\(url: \\)?news:\\([^>\n ]*\\)>\\)"
1710        1 wl-message-button-refer-article 3)))
1711   "Alist of headers and regexps to match buttons in message headers."
1712   :type '(repeat
1713           (list (regexp :tag "Header")
1714                 regexp
1715                 (integer :tag "Button")
1716                 (function :tag "Callback")
1717                 (repeat :tag "Data"
1718                         :inline t
1719                         (integer :tag "Regexp group"))))
1720   :group 'wl-pref)
1721
1722 (defcustom wl-message-body-button-alist
1723   '(("<mailto:[^>]+>" 0 'ignore 0 1024)
1724     ("<[^>]+@[^>]+>" 0 wl-message-button-refer-article 0 1024))
1725   "Alist of regexps to match buttons in message body."
1726   :type '(repeat
1727           (list regexp
1728                 (integer :tag "Button")
1729                 (function :tag "Callback")
1730                 (repeat :tag "Data"
1731                         :inline t
1732                         (integer :tag "Regexp group"))
1733                 (integer :tag "Max Length")))
1734   :group 'wl-pref)
1735
1736 (defcustom wl-folder-window-width 20
1737   "*Width of folder window."
1738   :type 'integer
1739   :group 'wl-folder
1740   :group 'wl-pref)
1741
1742 (defcustom wl-summary-recenter t
1743   "*Recenter on redisplay."
1744   :type 'boolean
1745   :group 'wl-summary
1746   :group 'wl-pref)
1747
1748 (defcustom wl-folder-use-frame nil
1749   "*Use dedicated frame for folder mode if non-nil."
1750   :type 'boolean
1751   :group 'wl-pref)
1752
1753 (defcustom wl-summary-use-frame nil
1754   "*Use dedicated frame for each folder summary if non-nil."
1755   :type 'boolean
1756   :group 'wl-pref)
1757
1758 (defcustom wl-stay-folder-window nil
1759   "*Stay folder window when folder is selected if non-nil."
1760   :type 'boolean
1761   :group 'wl-pref)
1762
1763 (defcustom wl-reply-subject-prefix "Re: "
1764   "*Prefix of the subject of the replied message.
1765 The value is string or string valued function to be evalueted in the target
1766 message buffer."
1767   :type '(choice string function)
1768   :group 'wl-draft
1769   :group 'wl-pref)
1770
1771 (defcustom wl-forward-subject-prefix "Forward: "
1772   "*Prefix of the subject of the forwarded message.
1773 The value is string or string valued function to be evalueted in the target
1774 message buffer."
1775   :type '(choice string function)
1776   :group 'wl-draft
1777   :group 'wl-pref)
1778
1779 (defcustom wl-draft-reply-use-address-with-full-name t
1780   "*Use address with full-name in the draft of replied message."
1781   :type 'boolean
1782   :group 'wl-pref
1783   :group 'wl-draft)
1784
1785 (defcustom wl-subject-re-prefix-regexp "^[ \t]*\\([Rr][Ee][:>][ \t]*\\)*[ \t]*"
1786   "*Regexp matching \"Re: \" in the subject line."
1787   :type 'regexp
1788   :group 'wl-draft
1789   :group 'wl-pref)
1790
1791 (defcustom wl-subject-forward-prefix-regexp "^[ \t]*\\(\\([Ff][Oo][Rr][Ww][Aa][Rr][Dd]\\|[Ff][Ww][Dd]\\|[Ff][Ww]\\)[:>][ \t]*\\)*[ \t]*"
1792   "*Regexp matching \"Forward: \", \"Fwd: \", or \"Fw: \" in the subject line."
1793   :type 'regexp
1794   :group 'wl-draft
1795   :group 'wl-pref)
1796
1797 (defcustom wl-folder-many-unsync-threshold 70
1798   "*Folders which contains messages more than this number are highlighted
1799 with wl-highlight-folder-many-face."
1800   :type 'integer
1801   :group 'wl-folder
1802   :group 'wl-pref)
1803
1804 (defcustom wl-fcc nil
1805   "*Folder Carbon Copy target initially added at creating draft buffer."
1806   :type '(choice (const :tag "disable" nil)
1807                  string function)
1808   :group 'wl-draft
1809   :group 'wl-pref)
1810
1811 (defcustom wl-fcc-force-as-read nil
1812   "*If non-nil, mark copied message as read."
1813   :type 'boolean
1814   :group 'wl-draft
1815   :group 'wl-pref)
1816
1817 (defcustom wl-bcc nil
1818   "*Blind Carbon Copy target initially added at creating draft buffer."
1819   :type '(choice (const :tag "disable" nil)
1820                  string)
1821   :group 'wl-draft
1822   :group 'wl-pref)
1823
1824 (defcustom wl-folder-desktop-name "Desktop"
1825   "*An implicit name of the folder top entity."
1826   :type 'string
1827   :group 'wl-folder
1828   :group 'wl-pref)
1829
1830 (defcustom wl-summary-indent-length-limit 46
1831   "*Limit of indent length for thread. Nil means unlimited"
1832   :type '(choice (const :tag "Unlimited" nil)
1833                  integer)
1834   :group 'wl-summary
1835   :group 'wl-pref)
1836
1837 (defcustom wl-summary-max-thread-depth 30
1838   "*If thread depth of the message is larger than this value, divide it."
1839   :type '(choice (const :tag "Unlimited" nil)
1840                  integer)
1841   :group 'wl-summary
1842   :group 'wl-pref)
1843
1844 (defcustom wl-summary-no-from-message "nobody@nowhere?"
1845   "*A string displayed in summary when no from field exists."
1846   :type 'string
1847   :group 'wl-summary)
1848
1849 (defcustom wl-summary-no-subject-message "(WL:No Subject in original.)"
1850   "*A string displayed in summary when no subject field exists."
1851   :type 'string
1852   :group 'wl-summary)
1853
1854 (defcustom wl-summary-cancel-message "I'd like to cancel my message."
1855   "*The body content of a cancel message."
1856   :type 'string
1857   :group 'wl-summary)
1858
1859 (defcustom wl-summary-width 80
1860   "*Set summary line width if non nil."
1861   :type '(choice (const :tag "Don't truncate" nil)
1862                  integer)
1863   :group 'wl-summary
1864   :group 'wl-pref)
1865
1866 (defcustom wl-summary-print-argument-within-window nil
1867   "*If non-nil, always print argument right side of window."
1868   :type 'boolean
1869   :group 'wl-summary
1870   :group 'wl-pref)
1871
1872 (defcustom wl-summary-pick-field-default "Body"
1873   "*Default field for pick."
1874   :type '(radio (const "From")
1875                 (const "Subject")
1876                 (const "To")
1877                 (const "Cc")
1878                 (const "Body")
1879                 (const "Since")
1880                 (const "Before")
1881                 (const "Last")
1882                 (const "First")
1883                 (string :tag "Other"))
1884   :group 'wl-summary)
1885
1886 (defcustom wl-mime-charset 'x-ctext
1887   "*MIME Charset for summary and message."
1888   :type 'symbol
1889   :group 'wl-summary
1890   :group 'wl-pref)
1891
1892 (defcustom wl-generate-mailer-string-function 'wl-generate-user-agent-string
1893   "A function for creating User-Agent field string."
1894   :type 'function
1895   :group 'wl-draft)
1896
1897 (defcustom wl-highlight-background-mode  (if (boundp 'hilit-background-mode)
1898                                              (or hilit-background-mode 'dark)
1899                                            'dark)
1900   "*Background mode of highlight (for Old Emacsen).  'dark or 'light."
1901   :type '(radio (const dark)
1902                 (const light))
1903   :group 'wl-highlight)
1904
1905 (defcustom wl-highlight-x-face-function nil
1906   "A function to display X-Face."
1907   :type 'function
1908   :group 'wl-highlight)
1909
1910 (defcustom wl-qmail-inject-program "/var/qmail/bin/qmail-inject"
1911   "Location of the qmail-inject program."
1912   :type '(string :tag "Program")
1913   :group 'wl-draft)
1914
1915 (defcustom wl-qmail-inject-args nil
1916   "Arguments passed to qmail-inject programs.
1917 This should be a list of strings, one string for each argument.
1918
1919 For e.g., if you wish to set the envelope sender address so that bounces
1920 go to the right place or to deal with listserv's usage of that address, you
1921 might set this variable to '(\"-f\" \"you@some.where\")."
1922   :type '(repeat (string :tag "Argument"))
1923   :group 'wl-draft)
1924
1925 (defcustom wl-rejected-letter-start
1926   "^[\t ]*-+[\t ]+\\(\\(original\\|\\(\\(the \\)?unsent\\)\\) message\\( follows\\)?[\t ]+-+[\t ]*\\|Below this line is a copy of the message\\..*\\)$"
1927   "Regexp specifying the beginning of the wrapper around a returned letter.
1928 This wrapper is generated by the mail system when rejecting a letter."
1929   :type 'regexp
1930   :group 'wl-draft)
1931
1932 (defcustom wl-ignored-forwarded-headers "\\(received\\|return-path\\|x-uidl\\)"
1933   "*All headers that match this regexp will be deleted when forwarding a message."
1934   :type 'regexp
1935   :group 'wl-draft)
1936
1937 (defcustom wl-ignored-resent-headers "\\(return-receipt\\|[bdf]cc\\)"
1938   "*All headers that match this regexp will be deleted when resending a message."
1939   :type 'regexp
1940   :group 'wl-draft)
1941
1942 (defcustom wl-draft-preview-attributes t
1943   "Non-nil forces to preview the attributes in the `wl-draft-preview-message'.
1944 Attributes specified in the `wl-draft-preview-attributes-list' are displayed."
1945   :type 'boolean
1946   :group 'wl-draft)
1947
1948 (defcustom wl-draft-preview-attributes-list '(recipients
1949                                               envelope-from
1950                                               smtp-posting-server
1951                                               smtp-posting-port)
1952   "*Attribute symbols to display in the draft preview.
1953 Candidates are following:
1954 `recipients'
1955 `envelope-from'
1956 `smtp-posting-server'
1957 `smtp-posting-port'
1958 `nntp-posting-server'
1959 `nntp-posting-port'
1960 Also variables which begin with `wl-' can be specified
1961 \(`wl-' have to be removed\)"
1962   :type '(repeat symbol)
1963   :group 'wl-draft)
1964
1965 (defcustom wl-draft-preview-attributes-buffer-lines 5
1966   "*Buffer height for the draft attribute preview."
1967   :type 'integer
1968   :group 'wl-draft)
1969
1970 (defcustom wl-draft-preview-attributes-buffer-name "*Preview Attributes*"
1971   "*Buffer name for the draft attribute preview."
1972   :type 'string
1973   :group 'wl-draft)
1974
1975 (defcustom wl-refile-default-from-folder "+from"
1976   "*Folder name to refile by `wl-refile-guess-by-from'."
1977   :type '(string :tag "Folder")
1978   :group 'wl-pref)
1979
1980 (defcustom wl-summary-auto-refile-skip-marks
1981   (list wl-summary-new-uncached-mark
1982         wl-summary-new-cached-mark
1983         wl-summary-unread-uncached-mark
1984         wl-summary-unread-cached-mark)
1985   "Persistent marks to skip auto-refiling."
1986   :type '(repeat (string :tag "Mark"))
1987   :group 'wl-summary)
1988
1989 (defcustom wl-summary-reserve-mark-list
1990   (list "o" "O" "D" "d" "i")
1991   "If a message is already marked as temporal marks in this list,
1992 the message is not marked by any mark command."
1993   :type '(repeat (string :tag "Temp-Mark"))
1994   :group 'wl-summary)
1995
1996 (defcustom wl-summary-skip-mark-list
1997   (list "D" "d")
1998   "If a message is already marked as temporal marks in this list,
1999 the message is skipped at cursor move."
2000   :type '(repeat (string :tag "Temp-Mark"))
2001   :group 'wl-summary)
2002
2003 (defcustom wl-summary-incorporate-marks
2004   (list wl-summary-new-uncached-mark
2005         wl-summary-unread-uncached-mark)
2006   "Persistent marks to prefetch at `wl-summary-incorporate'."
2007   :type '(repeat (string :tag "Mark"))
2008   :group 'wl-summary)
2009
2010 (defcustom wl-refile-rule-alist nil
2011   "Refile rule alist.
2012 e.x.
2013 '((\"From\"
2014    (\"teranisi@isl.ntt.co.jp\" . \"+teranisi\"))
2015   (\"x-ml-name\"
2016    (\"^Wanderlust\"    . \"+wl\")
2017    (\"^Elips\" . \"+elips\")))"
2018   :type '(repeat (list (string :tag "Field")
2019                        (repeat :inline t
2020                                (cons (regexp :tag "Value")
2021                                      (string :tag "Folder")))))
2022   :group 'wl-pref)
2023
2024 (defcustom wl-strict-diff-folders nil
2025   "List of regexps matching folders of which Wanderlust seriously counts unsync messages."
2026   :type '(choice (const :tag "Off" nil)
2027                  (repeat (regexp :tag "Folder Regexp")))
2028   :group 'wl-folder)
2029
2030 (defcustom wl-folder-use-server-diff t
2031   "Checked unread message number on IMAP4 server.
2032 Only IMAP4 folders have an effect."
2033   :type 'boolean
2034   :group 'wl-folder)
2035
2036 (defcustom wl-force-fetch-folders nil
2037   "Non-nil forces to fetch subfolders when user opened an 'access' folder."
2038   :type '(choice (const :tag "off" nil)
2039                  (const :menu-tag "on" t)
2040                  (repeat (regexp :tag "Folder Regexp")))
2041   :group 'wl-folder)
2042
2043 (defcustom wl-auto-check-folder-name nil
2044   "*A folder, a group or a list of folders and groups specified which
2045 will be automatically checked at the startup time."
2046   :type '(choice (string :tag "Folder")
2047                  (repeat (string :tag "Folder"))
2048                  (const none))
2049   :group 'wl-folder)
2050
2051 (defcustom wl-auto-uncheck-folder-list '("\\$.*")
2052   "All folders that match this list won't be checked at the startup
2053 time even if they are embedded in some groups specified by
2054 wl-auto-check-folder-name.
2055 Those folders are also skipped when you check on the Desktop.
2056 This value is preceded by wl-auto-check-folder-list.
2057 Each elements are regexp of folder name."
2058   :type '(repeat (regexp :tag "Folder Regexp"))
2059   :group 'wl-folder)
2060
2061 (defcustom wl-auto-check-folder-list nil
2062   "A list of patterns for exceptional folders against
2063 wl-auto-uncheck-folder-list.
2064 Each elements are regexp of folder name."
2065   :type '(repeat (regexp :tag "Folder Regexp"))
2066   :group 'wl-folder)
2067
2068 (defcustom wl-show-plug-status-on-modeline t
2069   "If it is non-nil, show plugged status in modeline."
2070   :type 'boolean
2071   :group 'wl-highlight)
2072
2073 (defcustom wl-plug-state-indicator-on  " [ON] "
2074   "String used to show plugged status ON."
2075   :type 'string
2076   :group 'wl-highlight)
2077
2078 (defcustom wl-plug-state-indicator-off " [--] "
2079   "String used to show plugged status OFF."
2080   :type 'string
2081   :group 'wl-highlight)
2082
2083 (defcustom wl-biff-check-folder-list nil
2084   "All folders that match this list are automatically checked
2085 every intervals specified by wl-biff-check-interval."
2086   :type '(repeat (regexp :tag "Folder"))
2087   :group 'wl-highlight)
2088
2089 (defcustom wl-biff-check-interval 40
2090   "Number of seconds between updates of new mails in the mode line."
2091   :type 'integer
2092   :group 'wl-highlight)
2093
2094 (defcustom wl-biff-use-idle-timer nil
2095   "Non-nil to use idle timer instead of strict timer for wl-biff"
2096   :type 'boolean
2097   :group 'wl-highlight)
2098
2099 (defcustom wl-biff-state-indicator-on (if (and (featurep 'xemacs)
2100                                                (not (featurep 'mule)))
2101                                           "[Mail]"
2102                                         (decode-coding-string
2103                                          ;; Youbin mark
2104                                          (read "\"[\e$B\\\")\e(B]\"")
2105                                          (if (boundp 'MULE)
2106                                              '*iso-2022-jp*
2107                                            'iso-2022-jp)))
2108   "String used to show biff status ON."
2109   :type 'string
2110   :group 'wl-highlight)
2111
2112 (defcustom wl-biff-state-indicator-off (if (and (featurep 'xemacs)
2113                                                 (not (featurep 'mule)))
2114                                            "[--]"
2115                                           ;; Japanese short hyphen
2116                                          "[\e$B!>\e(B]")
2117   "String used to show biff status OFF."
2118   :type 'string
2119   :group 'wl-highlight)
2120
2121 (defcustom wl-mode-line-display-priority-list '(biff plug title)
2122   "Displaying order of items to be shown in modeline.  The first item will
2123 be placed in the leftmost.  The significant items are `biff' and `plug';
2124 otherwise, e.g. `title', corresponds to the things except for the biff
2125 staus nor the plugged status.  The default order is '(biff plug title)
2126 even if the value of this option is set to nil.  Here are some samples:
2127
2128 ;; Plugged status first:
2129 \(setq wl-mode-line-display-priority-list '(plug))
2130
2131 ;; Biff status, Title of Wanderlust, Plugged status:
2132 \(setq wl-mode-line-display-priority-list '(biff title plug))
2133
2134 "
2135   :type '(repeat (radio (const :format "%v " biff)
2136                         (const :format "%v " plug)
2137                         (sexp :tag "Other" :value title)))
2138   :group 'wl-highlight)
2139
2140 (defcustom wl-interactive-send t
2141   "*If non-nil, require your confirmation when sending draft message."
2142   :type 'boolean
2143   :group 'wl-pref
2144   :group 'wl-setting)
2145
2146 (defcustom wl-interactive-exit t
2147   "*If non-nil, require your confirmation when exiting WL."
2148   :type 'boolean
2149   :group 'wl-pref)
2150
2151 (defcustom wl-summary-move-order 'unread
2152   "*The order of priority when move in summary mode.
2153 If this variable is `unread', precede \"U\", \"!\", \"N\" mark.
2154 If this variable is `new', precede \"N\" mark."
2155   :type '(radio (const new)
2156                 (const unread))
2157   :group 'wl-summary
2158   :group 'wl-setting)
2159
2160 (defvar wl-summary-move-direction-downward t)
2161
2162 (defcustom wl-summary-move-direction-toggle t
2163   "*If non-nil, search direction for the next message will be determined
2164 depends on previous search direction.
2165 It uses wl-summary-move-direction-downward as a direction flag."
2166   :type 'boolean
2167   :group 'wl-summary)
2168
2169 (defcustom wl-auto-select-first nil
2170   "*If non-nil, display selected first message when enter summary."
2171   :type 'boolean
2172   :group 'wl-pref
2173   :group 'wl-setting)
2174
2175 (defcustom wl-auto-prefetch-first nil
2176   "*If non-nil, prefetch selected first message when enter summary."
2177   :type 'boolean
2178   :group 'wl-pref
2179   :group 'wl-setting)
2180
2181 (defcustom wl-auto-select-next nil
2182   "*If non-nil, offer to go to the next folder from the end of the previous.
2183 If the value is the symbol `unread', go to the next folder
2184 that no unread message exists.  If the value is the symbol `skip-no-unread',
2185 skip the folder that no unread message exists.
2186
2187 See also variable `wl-summary-next-no-unread-command'."
2188   :type '(radio (const :tag "off" nil)
2189                 (const :tag "on" t)
2190                 (const unread)
2191                 (const skip-no-unread))
2192   :group 'wl-pref
2193   :group 'wl-setting)
2194
2195 (defcustom wl-message-buffer-name " *WL:Message*"
2196   "*Buffer name for message buffers."
2197   :group 'wl-pref
2198   :group 'wl-setting)
2199
2200 (defcustom wl-message-buffer-prefetch-folder-type-list '(imap4 nntp)
2201   "*All folder types that match this list prefetch next message,
2202 and reserved buffer cache."
2203   :type `(choice (const :tag "all" t)
2204                  (const :tag "never" nil)
2205                  (set (const localdir)
2206                       (const localnews)
2207                       (const maildir)
2208                       (const imap4)
2209                       (const nntp)
2210                       (const pop3)
2211                       (const shimbun)
2212                       (const nmz)
2213                       (const archive)
2214                       (const mark)
2215                       (const cache)))
2216   :group 'wl-pref)
2217
2218 (defcustom wl-message-buffer-prefetch-folder-list nil
2219   "*All folders that match this list prefetch next message,
2220 and reserved buffer cache.
2221 e.x.
2222 '(\"^[-%]\")"
2223   :type '(repeat (regexp :tag "Folder Regexp"))
2224   :group 'wl-pref)
2225
2226 (defcustom wl-message-buffer-prefetch-depth 1
2227   "*Depth of buffer prefetch in summary mode."
2228   :type 'integer
2229   :group 'wl-pref)
2230
2231 (defcustom wl-message-buffer-prefetch-idle-time 1
2232   "*Idle time of buffer prefetch."
2233   :type 'number
2234   :group 'wl-pref)
2235
2236 (defcustom wl-message-buffer-prefetch-threshold 30000
2237   "*Quit forward cache prefetching if message size is larger than this value."
2238   :type 'integer
2239   :group 'wl-pref)
2240
2241 (defcustom wl-summary-always-sticky-folder-list nil
2242   "All folders that match this list has sticky summary.
2243 Each elements are regexp of folder name."
2244   :type '(radio (const :tag "none" nil)
2245                 (const :tag "all" t)
2246                 (repeat (regexp :tag "Folder Regexp")))
2247   :group 'wl-pref)
2248
2249 (defcustom wl-summary-force-prefetch-folder-list nil
2250     "All folders that match this list are prefetched.
2251 Each elements are regexp of folder name."
2252     :type '(radio (const :tag "none" nil)
2253                   (const :tag "all" t)
2254                   (repeat (regexp :tag "Folder Regexp")))
2255     :group 'wl-pref)
2256
2257 (defcustom wl-no-save-folder-list '("^/.*$" "^\\[.*$")
2258   "All folders that match this list won't save its msgdb.
2259 Each elements are regexp of folder name."
2260   :type '(repeat (regexp :tag "Folder Regexp"))
2261   :group 'wl-pref)
2262
2263 (defcustom wl-save-folder-list nil
2264   "All folders that match this list save its msgdb.
2265 Each elements are regexp of folder name."
2266   :type '(repeat (regexp :tag "Folder Regexp"))
2267   :group 'wl-pref)
2268
2269 (defcustom wl-folder-mime-charset-alist
2270   '(("^-alt\\.chinese" . big5)
2271     ("^-relcom\\." . koi8-r)
2272     ("^-tw\\." . big5)
2273     ("^-han\\." . euc-kr)
2274     ("@sponichi" . shift_jis)
2275     ("@2ch" . shift_jis))
2276   "Charset alist.  If no match, `wl-mime-charset' is used."
2277   :type '(repeat (cons (regexp :tag "Folder Regexp") (symbol :tag "Charset")))
2278   :group 'wl-summary
2279   :group 'wl-pref)
2280
2281 (defcustom wl-folder-weekday-name-lang-alist
2282   '(("^-alt\\.chinese" . "en")
2283     ("^-relcom\\." . "en")
2284     ("^-tw\\." . "en")
2285     ("^-han\\." . "en"))
2286   "Weekday name lang alist.
2287 If no match, `wl-summary-weekday-name-lang' is used.
2288 e.x.
2289 '((\"xemacs-beta$\" . \"en\")
2290   (\"^-fj\" . \"ja\"))"
2291   :type '(repeat (cons (regexp :tag "Folder Regexp")
2292                        (choice (const "ja")
2293                                (const "en")
2294                                (const "fr")
2295                                (const "de")
2296                                (string :tag "Other"))))
2297   :group 'wl-pref)
2298
2299 (defcustom wl-folder-thread-indent-set-alist
2300   '(("^-alt\\.chinese" . (2 "+" "+" "|" "-" " "))
2301     ("^-relcom\\." . (2 "+" "+" "|" "-" " "))
2302     ("^-tw\\." . (2 "+" "+" "|" "-" " "))
2303     ("^-han\\." . (2 "+" "+" "|" "-" " ")))
2304   "Thread indent set alist.
2305 If no match, following indent set is used.
2306 \(wl-thread-indent-level
2307  wl-thread-have-younger-brother-str
2308  wl-thread-youngest-child-str
2309  wl-thread-vertical-str
2310  wl-thread-horizontal-str
2311  wl-thread-space-str)
2312 e.x.
2313 '((\"xemacs-beta$\" . (2 \"+\" \"+\" \"|\" \"-\" \" \")))"
2314   :type '(repeat (cons (regexp :tag "Folder Regexp")
2315                        (group (integer :tag "Indent")
2316                               (string :tag "Yonger Brother")
2317                               (string :tag "Yonger Child")
2318                               (string :tag "Vertical")
2319                               (string :tag "Horizontal")
2320                               (string :tag "Space"))))
2321   :group 'wl-pref)
2322
2323 (defcustom wl-folder-sync-range-alist
2324   (list (cons 'wl-require-update-all-folder-p "all"))
2325   "*Default sync range alist.  If no matches, `wl-default-sync-range' is used."
2326   :type '(repeat (cons (choice (regexp :tag "Folder Regexp")
2327                                (symbol :tag "A function"))
2328                        (choice (const "update")
2329                                (const "all")
2330                                (const "rescan")
2331                                (const "no-sync")
2332                                (const :tag "none" nil))))
2333   :group 'wl-pref)
2334
2335 (defcustom wl-default-sync-range  "update"
2336   "*Default sync range."
2337   :type '(choice (const "update")
2338                  (const "all")
2339                  (const "rescan")
2340                  (const "no-sync")
2341                  (const :tag "none" nil))
2342   :group 'wl-pref)
2343
2344 (defcustom wl-ask-range t
2345   "*If non-nil, ask for a range for summary synchronization.
2346 If nil, always use default."
2347   :type 'boolean
2348   :group 'wl-pref)
2349
2350 (defcustom wl-folder-process-duplicates-alist nil
2351   "Specify process type of duplicated messages.
2352 It should be a list of cons cell like: (REGEXP . TYPE)
2353 REGEXP is a regular expression string of folder name.
2354 TYPE is one of the symbols `hide' or `read'.
2355 `hide' means hide duplicated messages.
2356 `read' means mark as read duplicated messages.
2357 If TYPE is nil, do nothing for duplicated messages."
2358   :type '(repeat (cons (regexp :tag "Folder regexp")
2359                        (choice (const :tag "Hide" hide)
2360                                (const :tag "Mark as read" read))))
2361   :group 'wl-folder)
2362
2363 (defcustom wl-folder-move-cur-folder nil
2364   "*Non-nil, move cursor to current folder on folder buffer when goto folder."
2365   :type 'boolean
2366   :group 'wl-folder)
2367
2368 (defcustom wl-folder-check-async t
2369   "*Check the folder asynchronous."
2370   :type 'boolean
2371   :group 'wl-folder)
2372
2373 (defcustom wl-folder-notify-deleted nil
2374   "*Non-nil, display negative number on folder-mode when message is deleted
2375 in folder. If the value is 'sync, msgdb would be synchronized."
2376   :type '(choice (const :tag "off" nil)
2377                  (const :tag "on" t)
2378                  (const sync))
2379   :group 'wl-folder)
2380
2381 (defcustom wl-summary-exit-next-move t
2382   "*Non-nil, move to next-unsync or next-entity when exit summary."
2383   :type 'boolean
2384   :group 'wl-summary)
2385
2386 (defcustom wl-summary-next-no-unread-command
2387   '(wl-summary-read wl-summary-down wl-summary-up)
2388   "*Command list available when the value of `wl-auto-select-next' is 'unread
2389 or 'skip-no-unread."
2390   :type '(repeat function)
2391   :group 'wl-summary)
2392
2393 (defcustom wl-summary-search-via-nntp 'confirm
2394   "*Non-nil, search message via nntp after `wl-summary-jump-to-msg-by-message-id'.
2395 If the value is 'confirm, confirm before search, 'force to search via nntp
2396 regardless of current folder type."
2397   :type '(choice (const :tag "confirm" confirm)
2398                  (const :tag "always" force)
2399                  (const :tag "in nntp folder" t)
2400                  (const :tag "never" nil))
2401   :group 'wl-summary)
2402
2403 (defcustom wl-summary-keep-cursor-command
2404   '(wl-summary-goto-folder wl-summary-goto-last-visited-folder)
2405   "*Command list to keep cursor position when folder is changed to
2406 already existing summary."
2407   :type '(repeat function)
2408   :group 'wl-summary)
2409
2410 (defcustom wl-summary-showto-folder-regexp nil
2411   "Regexp specifying the folder that shows the To (or Newsgroups) field as
2412 Sender information in summary mode."
2413   :type '(choice (const :tag "none" nil)
2414                  regexp)
2415   :group 'wl-summary)
2416
2417 (defcustom wl-summary-save-file-suffix ".eml"
2418   "Suffix for the saved file name."
2419   :type 'string
2420   :group 'wl-summary)
2421
2422 (defcustom wl-folder-removed-mark "#<removed>"
2423   "Mark for removed folder."
2424   :type 'string
2425   :group 'wl-folder)
2426
2427 (defcustom wl-folder-unsubscribe-mark "#"
2428   "Mark for unsubscribe folder."
2429   :type 'string
2430   :group 'wl-folder)
2431
2432 (defcustom wl-dispose-folder-alist '(("^-" . remove)
2433                                      ("^@" . remove))
2434   "*Alist of folder and dispose policy.
2435 Each element is (folder-regexp . policy).
2436
2437 The policy is one of the followings:
2438 'remove or
2439 'null     : remove message.
2440 string    : refile to the specified folder.
2441 'trash or
2442 otherwise : refile to the `wl-trash-folder'.
2443 ex.
2444 '((\"^%\" . \"%#mh/trash\")
2445   (\"^-\" . remove)
2446   (\"^\\\\+\" . trash))"
2447   :type '(repeat (cons (regexp :tag "Folder Regexp")
2448                        (choice :tag "Policy"
2449                                (const remove)
2450                                (const :tag "remove(null)" null)
2451                                (const trash)
2452                                (const :tag "trash(other)" trash)
2453                                (string :tag "Folder"))))
2454   :group 'wl-folder)
2455
2456 (defcustom wl-folder-hierarchy-access-folders '("^-[^\\.]*\\(:\\|@\\|$\\)"
2457                                                 "^@$" "^'$")
2458   "*Access group REGEXPs to make hierarchy structure."
2459   :type '(repeat (string :tag "Regexp"))
2460   :group 'wl-folder)
2461
2462 (defcustom wl-folder-init-load-access-folders nil
2463   "*Access group folders to load folder list on `wl-folder-init'.
2464 If this variable is non-nil,
2465 `wl-folder-init-no-load-access-folders' will be ignored."
2466   :type '(repeat (regexp :tag "Folder Regexp"))
2467   :group 'wl-folder)
2468
2469 (defcustom wl-folder-init-no-load-access-folders nil
2470   "*Access group folders to not load folder list on `wl-folder-init'.
2471 If `wl-folder-init-load-access-folders' is non-nil,
2472 this variable will be ignored."
2473   :type '(repeat (regexp :tag "Folder Regexp"))
2474   :group 'wl-folder)
2475
2476 (defcustom wl-folder-access-subscribe-alist nil
2477   "*Subscribe folders to fetching folder entries.
2478 Each element is (group-regexp (subscribe folder-regexp ...)).
2479 If subscribe is non-nil, subscribe when match folder-regexp.
2480 If subscribe is nil, unsubscribe when match folder-regexp.
2481
2482 ex.
2483 '((\"^-fj$\"   . (t   \"^-fj\\\\.\\\\(editor\\\\|mail\\\\|net\\\\|news\\\\)\"))
2484   (\"^-comp$\" . (t   \"^-comp\\\\.unix\" \"^-comp\\\\.sys\"))
2485   (\"^-$\"     . (nil \"^-alt\" \"^-rec\")))"
2486   :type '(repeat (cons (regexp :tag "Folder Regexp")
2487                        (list (boolean :tag "Subscribed")
2488                              (repeat :inline t
2489                                      (regexp :tag "Folder Regexp")))))
2490   :group 'wl-folder)
2491
2492 ;;; For Folder Manager
2493
2494 (defcustom wl-interactive-save-folders t
2495   "*Non-nil require your confirmation when save folders."
2496   :type 'boolean
2497   :group 'wl-folder
2498   :group 'wl-setting)
2499
2500 (defcustom wl-fldmgr-make-backup t
2501   "*Non-nil make backup file when save folders."
2502   :type 'boolean
2503   :group 'wl-folder)
2504
2505 (defcustom wl-fldmgr-folders-indent "\t"
2506   "*Indent string for folders file."
2507   :type 'string
2508   :group 'wl-folder)
2509
2510 (defcustom wl-fldmgr-sort-function 'wl-fldmgr-sort-standard
2511   "*A function to sort folder."
2512   :type 'function
2513   :group 'wl-folder)
2514
2515 (defcustom wl-fldmgr-sort-group-first t
2516   "*Non-nil Group folder is first when sort."
2517   :type 'function
2518   :group 'wl-folder)
2519
2520 (defcustom wl-fldmgr-add-complete-with-current-folder-list nil
2521   "*If non-nil, completion for adding folder refers current folder list."
2522   :type 'boolean
2523   :group 'wl-folder)
2524
2525 (defcustom wl-fldmgr-make-filter-default "Body"
2526   "*Default filter key while making filter on Folder."
2527   :type '(radio (const "From")
2528                 (const "Subject")
2529                 (const "To")
2530                 (const "Cc")
2531                 (const "Body")
2532                 (const "Since")
2533                 (const "Before")
2534                 (const "Last")
2535                 (const "First")
2536                 (string :tag "Other"))
2537   :group 'wl-folder)
2538
2539 (defcustom wl-fldmgr-allow-rename-access-group nil
2540   "*If non-nil, allow to rename folder in access group."
2541   :type 'boolean
2542   :group 'wl-folder)
2543
2544 ;;; For Expire and Archive
2545
2546 (defcustom wl-expire-alist nil
2547   "Alist to decide a policy for expire.
2548 Each element is (folder-regexp (number or date) policy).
2549
2550 The policy is one of the followings:
2551 'remove  : remove messsage.
2552 'trash   : refile `wl-trash-folder'.
2553 string   : refile string folder.
2554 function : call function.
2555
2556 ex.
2557 '((\"^\\\\+ml/wl$\"             (number 500 510) wl-expire-archive-number1 t)
2558   (\"^\\\\+ml/\"                (number 300 305) wl-expire-archive-number2)
2559   (\"^\\\\+outbox$\"            (number 300) \"$outbox;lha\")
2560   (\"^\\\\(\\\\+tmp\\\\|\\\\+trash\\\\)$\"      (date 7) remove)
2561   (\"^\\\\+misc$\"              (date 14) trash))"
2562   :type '(repeat (choice (list :tag "No-match"
2563                                (regexp :tag "Folder Regexp")
2564                                (const nil))
2565                          (list :tag "Match"
2566                                (regexp :tag "Folder Regexp")
2567                                (list (radio :value number
2568                                             (const number)
2569                                             (const date))
2570                                      (list :inline t
2571                                            integer
2572                                            (repeat :inline t integer)))
2573                                (choice :tag "Policy"
2574                                        :value remove
2575                                        (const remove)
2576                                        (const trash)
2577                                        (string :tag "folder")
2578                                        function)
2579                                (repeat :inline t
2580                                        :tag "Arg for function"
2581                                        sexp))))
2582   :group 'wl-expire)
2583
2584 (defcustom wl-archive-alist '((".*" wl-archive-number1))
2585   "Alist to decide a policy for archive.
2586 Each element is (folder-regexp policy(function)).
2587
2588 ex.
2589 '((\"\\\\+work$\" wl-archive-date)
2590   (\"\\\\+ml/\"   wl-archive-number1)
2591   (\".*\"       wl-archive-number2))"
2592   :type '(repeat (list (regexp :tag "Folder Regexp")
2593                        function
2594                        (repeat :inline t
2595                                (sexp :tag "Argument"))))
2596   :group 'wl-expire)
2597
2598 (defcustom wl-summary-expire-reserve-marks
2599   (list wl-summary-flag-mark
2600         wl-summary-new-uncached-mark
2601         wl-summary-new-cached-mark
2602         wl-summary-unread-uncached-mark
2603         wl-summary-unread-cached-mark)
2604   "Permanent marks of reserved message when expire.
2605 Don't reserve temporary mark message.
2606
2607 ex.
2608 'all  : reserved all permanent marks.
2609 'none : not reserve permanent marks.
2610 list  : reserved specified permanent marks."
2611   :type '(repeat (string :tag "Mark"))
2612   :group 'wl-expire)
2613
2614 (defcustom wl-expire-number-with-reserve-marks nil
2615   "If non-nil, include reserve message when expire by number."
2616   :type 'boolean
2617   :group 'wl-expire)
2618
2619 (defcustom wl-expire-add-seen-list t
2620   "*If non-nil, add seen message list when refile message at expire."
2621   :type 'boolean
2622   :group 'wl-expire)
2623
2624 (defcustom wl-expire-use-log nil
2625   "*If non-nil, write a log when expired."
2626   :type 'boolean
2627   :group 'wl-expire)
2628
2629 (defcustom wl-expire-folder-update-msgdb t
2630   "*Non-nil update summary msgdb when expire on folder mode."
2631   :type 'boolean
2632   :group 'wl-expire)
2633
2634 ;; for wl-expire-archive-{number1|number2}
2635 (defcustom wl-expire-archive-files 100
2636   "*The number of one archive folder."
2637   :type 'integer
2638   :group 'wl-expire)
2639
2640 ;; for wl-expire-archive-{number1|number2|date}
2641 (defcustom wl-expire-archive-get-folder-function
2642   'wl-expire-archive-get-folder
2643   "*A function to get archive folder name."
2644   :type 'function
2645   :group 'wl-expire)
2646
2647 (defcustom wl-expire-delete-oldmsg-confirm t
2648   "*If non-nil, require your confirmation when delete old message."
2649   :type 'boolean
2650   :group 'wl-expire)
2651
2652 ;; for wl-expire-archive-get-folder
2653 (defcustom wl-expire-archive-folder-type 'zip
2654   "*Archiver type of archive folder."
2655   :type '(radio (const zip)
2656                 (const lha)
2657                 (const zoo)
2658                 (const rar)
2659                 (const tar)
2660                 (const tgz)
2661                 (symbol :tag "Other"))
2662   :group 'wl-expire)
2663
2664 (defcustom wl-expire-archive-folder-name-fmt "%s-%%05d;%s" ;; $folder-00100;zip
2665   "*A format string for archive folder name."
2666   :type 'string
2667   :group 'wl-expire)
2668
2669 (defcustom wl-expire-archive-folder-num-regexp "-\\([0-9]+\\);"
2670   "*A regexp string for archive folder name."
2671   :type 'string
2672   :group 'wl-expire)
2673
2674 (defcustom wl-expire-archive-date-folder-name-fmt "%s-%%04d%%02d;%s"
2675                                                 ;; $folder-199812;zip
2676   "*A format string for archive date folder name."
2677   :type 'string
2678   :group 'wl-expire)
2679
2680 (defcustom wl-expire-archive-date-folder-num-regexp "-\\([0-9]+\\);"
2681   "*A regexp string for archive date folder name."
2682   :type 'string
2683   :group 'wl-expire)
2684
2685 (defcustom wl-expire-archive-folder-prefix nil
2686   "*Prefix for archive folder."
2687   :type '(radio (const :tag "nothing" nil)
2688                 (const :tag "full" t)
2689                 (const short))
2690   :group 'wl-expire)
2691
2692 ;;;; Highlights.
2693
2694 ;; highilght about summary
2695 (defcustom wl-highlight-max-summary-lines 10000
2696   "*If the summary is larger than this lines, don't highlight it."
2697   :type 'integer
2698   :group 'wl-highlight)
2699
2700 ;; highilght about draft and message
2701 (defcustom wl-highlight-body-too t
2702   "*In addition to header, highlight the body too.  if non nil."
2703   :type 'boolean
2704   :group 'wl-highlight)
2705
2706 (defcustom wl-highlight-message-header-alist
2707   '(("Subject[ \t]*:" . wl-highlight-message-important-header-contents)
2708     ("From[ \t]*:\\|To[ \t]*:" . wl-highlight-message-important-header-contents2)
2709     ("X-[^ \t]*:\\|User-Agent[ \t]*:" . wl-highlight-message-unimportant-header-contents))
2710   ""
2711   :type '(repeat (cons regexp face))
2712   :group 'wl-highlight)
2713
2714 (defcustom wl-highlight-citation-prefix-regexp
2715   "^[>|:} ]*[>|:}]\\([^ \n>]*>\\)?\\|^[^ <\n>]*>"
2716   "All lines that match this regexp will be highlighted with
2717  `wl-highlight-message-cited-text-*' face."
2718   :type 'regexp
2719   :group 'wl-highlight)
2720
2721 (defcustom wl-highlight-highlight-citation-too nil
2722   "*Whether the whole citation line should go in the
2723 `wl-highlight-citation-face' face.
2724 If nil, the text matched by `wl-highlight-citation-prefix-regexp' is in the
2725 default face, and the remainder of the line is in the
2726 wl-highlight-message-cited-text face."
2727   :type 'boolean
2728   :group 'wl-highlight)
2729
2730 (defcustom wl-highlight-force-citation-header-regexp
2731   "^>>>.*$\\|^[ \t]*<[^>]*>[ \t]*$"
2732   "*The pattern to match the prolog of a cited block.
2733 Text in the body of a message which matches this will be displayed in
2734 the `wl-highlight-message-headers' face."
2735   :type 'regexp
2736   :group 'wl-highlight)
2737
2738 (defcustom wl-highlight-citation-header-regexp
2739   (concat "In article.*$\\|In message.*$\\|In the message.*$\\|"
2740           "^At[^\n]+\n[^\n]+wrote:\n\\|"
2741           "^.*\\(writes\\|wrote\\|said\\):\n")
2742   "*The pattern to match the prolog of a cited block.
2743 Text in the body of a message which matches this will be displayed in
2744 the `wl-highlight-message-headers' face."
2745   :type 'regexp
2746   :group 'wl-highlight)
2747
2748 (defcustom wl-highlight-max-header-size nil
2749   "*If the message header is larger than this many chars, don't highlight it.
2750 If this is nil, all headers will be highlighted."
2751   :type 'integer
2752   :group 'wl-highlight)
2753
2754 (defcustom wl-highlight-max-message-size 10000
2755   "*If the message body is larger than this many chars, don't highlight it.
2756 This is to prevent us from wasting time trying to fontify things like
2757 uuencoded files and large digests.  If this is nil, all messages will
2758 be highlighted."
2759   :type 'integer
2760   :group 'wl-highlight)
2761
2762 ;; highilght about signature (of draft and message)
2763 (defcustom wl-highlight-signature-separator
2764   '("\n--+\n" "\n\n--+.*\n*\\'")
2765   "List of regexps matching signature separator.
2766 It will be verified from head to tail looking for a separator.
2767 Verification will be done from the end of the buffer.
2768 No need to specify \"^-- $\" in this list,
2769 because it is verified by default.
2770 This variable can also be a regex."
2771   :type '(repeat regexp)
2772   :group 'wl-highlight)
2773
2774 (defcustom wl-max-signature-size 400
2775   "*If the signature is larger than this chars, don't treat it as a signature."
2776   :type 'integer
2777   :group 'wl-highlight)
2778
2779 ;; highilght about mouse
2780 (defcustom wl-use-highlight-mouse-line (and window-system
2781                                             (>= emacs-major-version 19))
2782   "*Highlight mouse line, if non-nil."
2783   :type 'boolean
2784   :group 'wl-highlight)
2785
2786 (defcustom wl-highlight-summary-line-help-echo-alist
2787   '((flag wl-highlight-flag-folder-help-echo)
2788     (nmz elmo-message-file-name))
2789   "*Alist to display help-echo in summary buffer.
2790 Each element is (folder-type handler(function)).
2791 Handler take two arguments elmo-folder and message number and return string."
2792   :type 'boolean
2793   :group 'wl-highlight)
2794
2795 ;; highilght about folder
2796 (defcustom wl-highlight-folder-with-icon
2797   (or (and (featurep 'xemacs)
2798            (featurep 'xpm))
2799       wl-on-emacs21)
2800   "*Highlight folder with icon(XEmacs or Emacs 21)."
2801   :type 'boolean
2802   :group 'wl-highlight)
2803
2804 (defcustom wl-highlight-folder-by-numbers t
2805   "Highlight folder lines by numbers.
2806 If it is a number, only numbers will be highlighted."
2807   :type '(choice (const :tag "whole line" t)
2808                  (const :tag "only numbers" 1)
2809                  (const :tag "don't highlight" nil))
2810   :group 'wl-highlight)
2811
2812 (defcustom wl-highlight-signature-search-function 'wl-highlight-signature-search
2813   "Function to search signature area in the message body."
2814   :type 'function
2815   :group 'wl-highlight)
2816
2817 (defcustom wl-use-dnd (and wl-on-xemacs
2818                            (featurep 'dragdrop))
2819   "If Non-nil, support dragdrop feature in XEmacs."
2820   :type 'boolean
2821   :group 'wl-pref)
2822
2823 (defcustom wl-reset-plugged-alist t
2824   "*If non-nil, reset `elmo-plugged-alist' when startup."
2825   :type 'boolean
2826   :group 'wl-pref)
2827
2828 (defcustom wl-demo-display-logo (if (or (featurep 'xemacs)
2829                                         (module-installed-p 'image)
2830                                         (module-installed-p 'bitmap))
2831                                     t)
2832   "If it is T, show graphic logo in the startup screen.  You can set it to
2833 a symbol `bitmap', `xbm' or `xpm' in order to force the image format."
2834   :type '(radio (const :tag "Off" nil)
2835                 (const :tag "On (any format)" t)
2836                 (const xpm)
2837                 (const xbm)
2838                 (const :tag "bitmap (using BITMAP-MULE)" bitmap))
2839   :group 'wl-pref)
2840
2841 (defcustom wl-invalid-character-message "(WL:Invalid characters.)"
2842   "*A string displayed when invalid character exists."
2843   :type 'string
2844   :group 'wl-pref)
2845
2846 ;;; Internal variables
2847 (defvar wl-init nil)
2848
2849 ;; For disconnected operations.
2850 (defvar wl-plugged-hook nil)
2851 (defvar wl-unplugged-hook nil)
2852 (defcustom wl-plugged t
2853   "*Plugged state at the startup.  Nil means off-line."
2854   :type 'boolean
2855   :group 'wl
2856   :group 'wl-setting)
2857
2858 ;; Internal variables used to modeline identifiers.
2859 (defvar wl-modeline-plug-status nil)
2860 (defvar wl-modeline-plug-state-on wl-plug-state-indicator-on)
2861 (defvar wl-modeline-plug-state-off wl-plug-state-indicator-off)
2862 (defvar wl-modeline-biff-status nil)
2863 (defvar wl-modeline-biff-state-on wl-biff-state-indicator-on)
2864 (defvar wl-modeline-biff-state-off wl-biff-state-indicator-off)
2865
2866 ;; Advanced thread view.
2867 (defvar wl-thread-indent-level (if wl-on-mule 1 2)
2868   "*Indent level for thread.")
2869 (defvar wl-thread-have-younger-brother-str (if wl-on-mule "\e$B(2\e(B" "+")
2870   "*A string for thread branch line.  It should contain one character.")
2871 (defvar wl-thread-youngest-child-str       (if wl-on-mule "\e$B(1\e(B" "+")
2872   "*A string for thread branch line.  It should contain one character.")
2873 (defvar wl-thread-vertical-str             (if wl-on-mule "\e$B(-\e(B" "|")
2874   "*A string for thread branch line.  It should contain one character.")
2875 (defvar wl-thread-horizontal-str           (if wl-on-mule "\e$B(,\e(B" "-")
2876   "*A string for thread branch line.  It should contain one character.")
2877 (defvar wl-thread-space-str                (if wl-on-mule "\e$B!!\e(B" " ")
2878   "*A string for thread branch line.  It should contain one character.")
2879
2880 ;; folder icons. filename relative to wl-icon-directory
2881 (defvar wl-opened-group-folder-icon "opened.xpm"
2882   "*Icon file for opened group folder.")
2883 (defvar wl-closed-group-folder-icon "closed.xpm"
2884   "*Icon file for closed group folder.")
2885 (defvar wl-nntp-folder-icon "news.xpm"
2886   "*Icon file for nntp folder.")
2887 (defvar wl-imap-folder-icon "imap.xpm"
2888   "*Icon file for imap folder.")
2889 (defvar wl-pop-folder-icon  "pop.xpm"
2890   "*Icon file for pop folder.")
2891 (defvar wl-localdir-folder-icon "local.xpm"
2892   "*Icon file for localdir folder.")
2893 (defvar wl-localnews-folder-icon "localnews.xpm"
2894   "*Icon file for localnews folder.")
2895 (defvar wl-internal-folder-icon "internal.xpm"
2896   "*Icon file for internal folder.")
2897 (defvar wl-multi-folder-icon "multi.xpm"
2898   "*Icon file for multi folder.")
2899 (defvar wl-filter-folder-icon "filter.xpm"
2900   "*Icon file for filter folder.")
2901 (defvar wl-archive-folder-icon "archive.xpm"
2902   "*Icon file for archive folder.")
2903 (defvar wl-pipe-folder-icon "pipe.xpm"
2904   "*Icon file for pipe folder.")
2905 (defvar wl-nmz-folder-icon "nmz.xpm"
2906   "*Icon file for namazu folder.")
2907 (defvar wl-shimbun-folder-icon "shimbun.xpm"
2908   "*Icon file for shimbun folder.")
2909 (defvar wl-file-folder-icon "file.xpm"
2910   "*Icon file for file folder.")
2911 (defvar wl-maildir-folder-icon "maildir.xpm"
2912   "*Icon file for maildir folder.")
2913 (defvar wl-empty-trash-folder-icon "trash-e.xpm"
2914   "*Icon file for emptied trash folder.")
2915 (defvar wl-trash-folder-icon "trash.xpm"
2916   "*Icon file for trash folder.")
2917 (defvar wl-draft-folder-icon "draft.xpm"
2918   "*Icon file for draft folder.")
2919 (defvar wl-queue-folder-icon "queue.xpm"
2920   "*Icon file for queue folder.")
2921 (defvar wl-plugged-icon "plugged.xpm"
2922   "*Icon file for plugged state.")
2923 (defvar wl-unplugged-icon "unplugged.xpm"
2924   "*Icon file for unplugged state.")
2925 (defvar wl-biff-mail-icon "letter.xpm"
2926   "*Icon file for mail existed state.")
2927 (defvar wl-biff-nomail-icon "no-letter.xpm"
2928   "*Icon file for no mail existed state.")
2929 (defvar wl-prog-uudecode "uudecode"
2930   "*uudecode program name.")
2931 (defvar wl-prog-uudecode-arg nil
2932   "*Arguments for uudecode program.")
2933 (defvar wl-prog-uudecode-no-stdout-option t
2934   "*If non-nil, uudecode program don't have option for output to stdout.")
2935
2936 ;; plug
2937 (defvar wl-plugged-plug-on "ON")
2938 (defvar wl-plugged-plug-off "--")
2939 (defvar wl-plugged-auto-off "**")
2940 (defvar wl-plugged-server-indent 2)
2941 (defvar wl-plugged-port-indent 4)
2942 (defvar wl-plugged-queue-status-column 25)
2943
2944 ;;;; Obsolete variables.
2945
2946 ;; 2003-11-05
2947 (elmo-define-obsolete-variable 'wl-summary-new-mark
2948                                'wl-summary-new-uncached-mark)
2949
2950 ;; 2003-07-15 delete -> dispose
2951 (elmo-define-obsolete-variable 'wl-delete-folder-alist
2952                                'wl-dispose-folder-alist)
2953
2954 ;; 2002-12-25
2955 (elmo-define-obsolete-variable 'wl-draft-reply-myself-with-argument-list
2956                                'wl-draft-reply-with-argument-list)
2957 (elmo-define-obsolete-variable 'wl-draft-reply-myself-without-argument-list
2958                                'wl-draft-reply-without-argument-list)
2959
2960 ;; 2001-12-11: *-dir -> *-directory
2961 (elmo-define-obsolete-variable 'wl-icon-dir
2962                                'wl-icon-directory)
2963 (elmo-define-obsolete-variable 'wl-mime-save-dir
2964                                'wl-mime-save-directory)
2965 (elmo-define-obsolete-variable 'wl-score-files-dir
2966                                'wl-score-files-directory)
2967 (elmo-define-obsolete-variable 'wl-tmp-dir
2968                                'wl-temporary-file-directory)
2969
2970 ;; 2001-12-10
2971 (elmo-define-obsolete-variable 'wl-summary-update-confirm-threshold
2972                                'elmo-folder-update-threshold)
2973 (elmo-define-obsolete-variable 'wl-fetch-confirm-threshold
2974                                'elmo-message-fetch-threshold)
2975
2976 (elmo-define-obsolete-variable 'wl-cache-prefetch-folder-type-list
2977                                'wl-message-buffer-prefetch-folder-type-list)
2978 (elmo-define-obsolete-variable 'wl-cache-prefetch-folder-list
2979                                'wl-message-buffer-prefetch-folder-list)
2980
2981 ;; 2001-02-27: *-func -> *-function
2982 (elmo-define-obsolete-variable 'wl-summary-from-func
2983                                'wl-summary-from-function)
2984 (elmo-define-obsolete-variable 'wl-summary-subject-func
2985                                'wl-summary-subject-function)
2986 (elmo-define-obsolete-variable 'wl-summary-subject-filter-func
2987                                'wl-summary-subject-filter-function)
2988 (elmo-define-obsolete-variable 'wl-draft-send-func
2989                                'wl-draft-send-function)
2990 (elmo-define-obsolete-variable 'wl-draft-send-news-func
2991                                'wl-draft-send-news-function)
2992 (elmo-define-obsolete-variable 'wl-draft-send-mail-func
2993                                'wl-draft-send-mail-function)
2994 (elmo-define-obsolete-variable 'wl-print-buffer-func
2995                                'wl-print-buffer-function)
2996 (elmo-define-obsolete-variable 'wl-ps-print-buffer-func
2997                                'wl-ps-print-buffer-function)
2998 (elmo-define-obsolete-variable 'wl-generate-mailer-string-func
2999                                'wl-generate-mailer-string-function)
3000 (elmo-define-obsolete-variable 'wl-highlight-x-face-func
3001                                'wl-highlight-x-face-function)
3002 (elmo-define-obsolete-variable 'wl-fldmgr-sort-func
3003                                'wl-fldmgr-sort-function)
3004 (elmo-define-obsolete-variable 'wl-expire-archive-get-folder-func
3005                                'wl-expire-archive-get-folder-function)
3006 (elmo-define-obsolete-variable 'wl-highlight-signature-search-func
3007                                'wl-highlight-signature-search-function)
3008
3009 ;; 2000-01-25: temp mark -> target mark
3010 (elmo-define-obsolete-variable 'wl-summary-temp-above
3011                                'wl-summary-target-above)
3012
3013 ;; 1999-11-07: Unified with `wl-draft-config-alist'.
3014 (defvar wl-draft-prepared-config-alist nil)
3015 (make-obsolete-variable 'wl-draft-prepared-config-alist
3016                         'wl-draft-config-alist)
3017
3018 ;; 1999-10-10
3019 (elmo-define-obsolete-variable 'wl-address-filename
3020                                'wl-address-file)
3021 (elmo-define-obsolete-variable 'wl-score-default-file-name
3022                                'wl-score-default-file)
3023
3024
3025 (require 'product)
3026 (product-provide (provide 'wl-vars) (require 'wl-version))
3027
3028 ;;; wl-vars.el ends here