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