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