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