Add nil choice for wl-message-scroll-amount.
[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 '(choice (const :tag "scrolling by screenfuls" nil)
1391                  integer)
1392   :group 'wl-pref)
1393
1394 (defcustom wl-message-window-size '(1 . 4)
1395   "*Size of summary and message window.  cons cell of (Summary : Message)."
1396   :type '(cons integer integer)
1397   :group 'wl-pref)
1398
1399 (defcustom wl-message-sort-field-list '("Return-Path" "Received" "^To" "^Cc"
1400                                         "Newsgroups" "Subject" "^From")
1401   "*Sort order of header fields.  Each elements are regexp of field name."
1402   :type '(repeat (string :tag "Field Regexp"))
1403   :group 'wl-pref
1404   :group 'wl-setting)
1405
1406 (defcustom wl-message-ignored-field-list nil
1407   "All fields that match this list will be hidden in message buffer.
1408 Each elements are regexp of field-name."
1409   :type '(repeat (string :tag "Field Regexp"))
1410   :group 'wl-pref
1411   :group 'wl-setting)
1412
1413 (defcustom wl-message-visible-field-list nil
1414   "All fields that match this list will be displayed in message buffer.
1415 Each elements are regexp of field-name."
1416   :type '(repeat (string :tag "Field Regexp"))
1417   :group 'wl-pref
1418   :group 'wl-setting)
1419
1420 (defcustom wl-message-header-button-alist
1421   (` (("^\\(References\\|Message-Id\\|In-Reply-To\\):"
1422        "<[^>]+>"
1423        0 wl-message-button-refer-article  0)
1424       ("^[^:]+:"
1425        "\\(<\\(url: \\)?news:\\([^>\n ]*\\)>\\)"
1426        1 wl-message-button-refer-article 3)))
1427   "Alist of headers and regexps to match buttons in message headers."
1428   :type '(repeat
1429           (list (regexp :tag "Header")
1430                 regexp
1431                 (integer :tag "Button")
1432                 (function :tag "Callback")
1433                 (repeat :tag "Data"
1434                         :inline t
1435                         (integer :tag "Regexp group"))))
1436   :group 'wl-pref)
1437
1438 (defcustom wl-message-body-button-alist
1439   '(("<mailto:[^>]+>" 0 'ignore 0 1024)
1440     ("<[^>]+@[^>]+>" 0 wl-message-button-refer-article 0 1024))
1441   "Alist of regexps to match buttons in message body."
1442   :type '(repeat
1443           (list regexp
1444                 (integer :tag "Button")
1445                 (function :tag "Callback")
1446                 (repeat :tag "Data"
1447                         :inline t
1448                         (integer :tag "Regexp group"))
1449                 (integer :tag "Max Length")))
1450   :group 'wl-pref)
1451
1452 (defcustom wl-folder-window-width 20
1453   "*Width of folder window."
1454   :type 'integer
1455   :group 'wl-folder
1456   :group 'wl-pref)
1457
1458 (defcustom wl-summary-recenter t
1459   "*Recenter on redisplay."
1460   :type 'boolean
1461   :group 'wl-summary
1462   :group 'wl-pref)
1463
1464 (defcustom wl-folder-use-frame nil
1465   "*Use dedicated frame for folder mode if non-nil."
1466   :type 'boolean
1467   :group 'wl-pref)
1468
1469 (defcustom wl-summary-use-frame nil
1470   "*Use dedicated frame for each folder summary if non-nil."
1471   :type 'boolean
1472   :group 'wl-pref)
1473
1474 (defcustom wl-stay-folder-window nil
1475   "*Stay folder window when folder is selected if non-nil."
1476   :type 'boolean
1477   :group 'wl-pref)
1478
1479 (defcustom wl-reply-subject-prefix "Re: "
1480   "*Prefix of the subject of the replied message."
1481   :type 'string
1482   :group 'wl-draft
1483   :group 'wl-pref)
1484
1485 (defcustom wl-draft-reply-use-address-with-full-name t
1486   "*Use address with full-name in the draft of replied message."
1487   :type 'boolean
1488   :group 'wl-pref
1489   :group 'wl-draft)
1490
1491 (defcustom wl-subject-prefix-regexp "^[ \t]*\\([Rr][Ee][:>][ \t]*\\)*[ \t]*"
1492   "*Regexp matching \"Re: \" in the subject line."
1493   :type 'regexp
1494   :group 'wl-draft
1495   :group 'wl-pref)
1496
1497 (defcustom wl-folder-many-unsync-threshold 70
1498   "*Folders which contains messages more than this number are highlighted
1499 with wl-highlight-folder-many-face."
1500   :type 'integer
1501   :group 'wl-folder
1502   :group 'wl-pref)
1503
1504 (defcustom wl-fcc nil
1505   "*Folder Carbon Copy."
1506   :type '(choice (const :tag "disable" nil)
1507                  string function)
1508   :group 'wl-draft
1509   :group 'wl-pref)
1510
1511 (defcustom wl-fcc-force-as-read nil
1512   "*If non-nil, mark copied message as read."
1513   :type 'boolean
1514   :group 'wl-draft
1515   :group 'wl-pref)
1516
1517 (defcustom wl-bcc nil
1518   "*Blind Carbon Copy."
1519   :type '(choice (const :tag "disable" nil)
1520                  string)
1521   :group 'wl-draft
1522   :group 'wl-pref)
1523
1524 (defcustom wl-folder-desktop-name "Desktop"
1525   "*An implicit name of the folder top entity."
1526   :type 'string
1527   :group 'wl-folder
1528   :group 'wl-pref)
1529
1530 (defcustom wl-summary-indent-length-limit 46
1531   "*Limit of indent length for thread. Nil means unlimited"
1532   :type '(choice (const :tag "Unlimited" nil)
1533                  integer)
1534   :group 'wl-summary
1535   :group 'wl-pref)
1536
1537 (defcustom wl-summary-no-from-message "nobody@nowhere?"
1538   "*A string displayed in summary when no from field exists."
1539   :type 'string
1540   :group 'wl-summary)
1541
1542 (defcustom wl-summary-no-subject-message "(WL:No Subject in original.)"
1543   "*A string displayed in summary when no subject field exists."
1544   :type 'string
1545   :group 'wl-summary)
1546
1547 (defcustom wl-summary-cancel-message "I'd like to cancel my message."
1548   "*The body content of a cancel message."
1549   :type 'string
1550   :group 'wl-summary)
1551
1552 (defcustom wl-summary-width 80
1553   "*Set summary line width if non nil."
1554   :type '(choice (const :tag "Don't truncate" nil)
1555                  integer)
1556   :group 'wl-summary
1557   :group 'wl-pref)
1558
1559 (defcustom wl-summary-pick-field-default "Body"
1560   "*Default field for pick."
1561   :type '(radio (const "From")
1562                 (const "Subject")
1563                 (const "To")
1564                 (const "Cc")
1565                 (const "Body")
1566                 (const "Since")
1567                 (const "Before")
1568                 (const "Last")
1569                 (const "First")
1570                 (string :tag "Other"))
1571   :group 'wl-summary)
1572
1573 (defcustom wl-summary-subject-length-limit nil
1574   "*Set subject width in summary when wl-summary-width is nil.
1575 Nil means unlimited"
1576   :type '(choice (const :tag "Unlimited" nil)
1577                  integer)
1578   :group 'wl-summary
1579   :group 'wl-pref)
1580
1581 (defcustom wl-mime-charset 'x-ctext
1582   "*MIME Charset for summary and message."
1583   :type 'symbol
1584   :group 'wl-summary
1585   :group 'wl-pref)
1586
1587 (defcustom wl-generate-mailer-string-function 'wl-generate-user-agent-string
1588   "A function for creating User-Agent field string."
1589   :type 'function
1590   :group 'wl-draft)
1591
1592 (defcustom wl-highlight-background-mode  (if (boundp 'hilit-background-mode)
1593                                              (or hilit-background-mode 'dark)
1594                                            'dark)
1595   "*Background mode of highlight (for Old Emacsen).  'dark or 'light."
1596   :type '(radio (const dark)
1597                 (const light))
1598   :group 'wl-highlight)
1599
1600 (defcustom wl-highlight-x-face-function nil
1601   "A function to display X-Face."
1602   :type 'function
1603   :group 'wl-highlight)
1604
1605 (defcustom wl-qmail-inject-program "/var/qmail/bin/qmail-inject"
1606   "Location of the qmail-inject program."
1607   :type '(string :tag "Program")
1608   :group 'wl-draft)
1609
1610 (defcustom wl-qmail-inject-args nil
1611   "Arguments passed to qmail-inject programs.
1612 This should be a list of strings, one string for each argument.
1613
1614 For e.g., if you wish to set the envelope sender address so that bounces
1615 go to the right place or to deal with listserv's usage of that address, you
1616 might set this variable to '(\"-f\" \"you@some.where\")."
1617   :type '(repeat (string :tag "Argument"))
1618   :group 'wl-draft)
1619
1620 (defcustom wl-rejected-letter-start
1621   "^[\t ]*-+[\t ]+\\(original\\|\\(\\(the \\)?unsent\\)\\) message\\( follows\\)?[\t ]+-+[\t ]*$"
1622   "Regexp specifying the beginning of the wrapper around a returned letter.
1623 This wrapper is generated by the mail system when rejecting a letter."
1624   :type 'regexp
1625   :group 'wl-draft)
1626
1627 (defcustom wl-ignored-forwarded-headers "\\(received\\|return-path\\|x-uidl\\)"
1628   "*All headers that match this regexp will be deleted when forwarding a message."
1629   :type 'regexp
1630   :group 'wl-draft)
1631
1632 (defcustom wl-ignored-resent-headers "\\(return-receipt\\|[bdf]cc\\)"
1633   "*All headers that match this regexp will be deleted when resending a message."
1634   :type 'regexp
1635   :group 'wl-draft)
1636
1637 (defcustom wl-refile-default-from-folder "+from"
1638   "*Folder name to refile by `wl-refile-guess-by-from'."
1639   :type '(string :tag "Folder")
1640   :group 'wl-pref)
1641
1642 (defcustom wl-summary-auto-refile-skip-marks
1643   (list wl-summary-new-mark
1644         wl-summary-unread-uncached-mark
1645         wl-summary-unread-cached-mark)
1646   "Persistent marks to skip auto-refiling."
1647   :type '(repeat (string :tag "Mark"))
1648   :group 'wl-summary)
1649
1650 (defcustom wl-summary-reserve-mark-list
1651   (list "o" "O" "D")
1652   "If a message is already marked as temporal marks in this list,
1653 the message is not marked by any mark command."
1654   :type '(repeat (string :tag "Temp-Mark"))
1655   :group 'wl-summary)
1656
1657 (defcustom wl-summary-skip-mark-list
1658   (list "D")
1659   "If a message is already marked as temporal marks in this list,
1660 the message is skipped at cursor move."
1661   :type '(repeat (string :tag "Temp-Mark"))
1662   :group 'wl-summary)
1663
1664 (defcustom wl-summary-incorporate-marks
1665   (list wl-summary-new-mark
1666         wl-summary-unread-uncached-mark)
1667   "Persistent marks to prefetch at `wl-summary-incorporate'."
1668   :type '(repeat (string :tag "Mark"))
1669   :group 'wl-summary)
1670
1671 (defcustom wl-refile-rule-alist nil
1672   "Refile rule alist.
1673 e.x.
1674 '(
1675   (\"From\"
1676    (\"teranisi@isl.ntt.co.jp\" . \"+teranisi\"))
1677   (\"x-ml-name\"
1678    (\"^Wanderlust\"    . \"+wl\")
1679    (\"^Elips\" . \"+elips\")))"
1680   :type '(repeat (list (string :tag "Field")
1681                        (repeat :inline t
1682                                (cons (regexp :tag "Value")
1683                                      (string :tag "Folder")))))
1684   :group 'wl-pref)
1685
1686 (defcustom wl-strict-diff-folders nil
1687   "List of regexps matching folders of which Wanderlust seriously counts unsync messages."
1688   :type '(choice (const :tag "Off" nil)
1689                  (repeat (regexp :tag "Folder Regexp")))
1690   :group 'wl-folder)
1691
1692 (defcustom wl-folder-use-server-diff t
1693   "Checked unread message number on IMAP4 server.
1694 Only IMAP4 folders have an effect."
1695   :type 'boolean
1696   :group 'wl-folder)
1697
1698 (defcustom wl-force-fetch-folders nil
1699   "Non-nil forces to fetch subfolders when user opened an 'access' folder."
1700   :type '(choice (const :tag "off" nil)
1701                  (const :menu-tag "on" t)
1702                  (repeat (regexp :tag "Folder Regexp")))
1703   :group 'wl-folder)
1704
1705 (defcustom wl-auto-check-folder-name nil
1706   "*A folder, a group or a list of folders and groups specified which
1707 will be automatically checked at the startup time."
1708   :type '(choice (string :tag "Folder")
1709                  (repeat (string :tag "Folder"))
1710                  (const none))
1711   :group 'wl-folder)
1712
1713 (defcustom wl-auto-uncheck-folder-list '("\\$.*")
1714   "All folders that match this list won't be checked at the startup
1715 time even if they are embedded in some groups specified by
1716 wl-auto-check-folder-name.
1717 Those folders are also skipped when you check on the Desktop.
1718 This value is preceded by wl-auto-check-folder-list.
1719 Each elements are regexp of folder name."
1720   :type '(repeat (regexp :tag "Folder Regexp"))
1721   :group 'wl-folder)
1722
1723 (defcustom wl-auto-check-folder-list nil
1724   "A list of patterns for exceptional folders against
1725 wl-auto-uncheck-folder-list.
1726 Each elements are regexp of folder name."
1727   :type '(repeat (regexp :tag "Folder Regexp"))
1728   :group 'wl-folder)
1729
1730 (defcustom wl-show-plug-status-on-modeline t
1731   "If it is non-nil, show plugged status in modeline."
1732   :type 'boolean
1733   :group 'wl-highlight)
1734
1735 (defcustom wl-plug-state-indicator-on  " [ON] "
1736   "String used to show plugged status ON."
1737   :type 'string
1738   :group 'wl-highlight)
1739
1740 (defcustom wl-plug-state-indicator-off " [--] "
1741   "String used to show plugged status OFF."
1742   :type 'string
1743   :group 'wl-highlight)
1744
1745 (defcustom wl-biff-check-folder-list nil
1746   "All folders that match this list are automatically checked
1747 every intervals specified by wl-biff-check-interval."
1748   :type '(repeat (regexp :tag "Folder Regexp"))
1749   :group 'wl-highlight)
1750
1751 (defcustom wl-biff-check-interval 40
1752   "Number of seconds between updates of new mails in the mode line."
1753   :type 'integer
1754   :group 'wl-highlight)
1755
1756 (defcustom wl-biff-state-indicator-on (if (and (featurep 'xemacs)
1757                                                (not (featurep 'mule)))
1758                                           "[Mail]"
1759                                         (decode-coding-string
1760                                          ;; Youbin mark
1761                                          (read "\"[\e$B\\\")\e(B]\"")
1762                                          (if (boundp 'MULE)
1763                                              '*iso-2022-jp*
1764                                            'iso-2022-jp)))
1765   "String used to show biff status ON."
1766   :type 'string
1767   :group 'wl-highlight)
1768
1769 (defcustom wl-biff-state-indicator-off (if (and (featurep 'xemacs)
1770                                                 (not (featurep 'mule)))
1771                                            "[--]"
1772                                           ;; Japanese short hyphen
1773                                          "[\e$B!>\e(B]")
1774   "String used to show biff status OFF."
1775   :type 'string
1776   :group 'wl-highlight)
1777
1778 (defcustom wl-mode-line-display-priority-list '(biff plug title)
1779   "Displaying order of items to be shown in modeline.  The first item will
1780 be placed in the leftmost.  The significant items are `biff' and `plug';
1781 otherwise, e.g. `title', corresponds to the things except for the biff
1782 staus nor the plugged status.  The default order is '(biff plug title)
1783 even if the value of this option is set to nil.  Here are some samples:
1784
1785 ;; Plugged status first:
1786 \(setq wl-mode-line-display-priority-list '(plug))
1787
1788 ;; Biff status, Title of Wanderlust, Plugged status:
1789 \(setq wl-mode-line-display-priority-list '(biff title plug))
1790
1791 "
1792   :type '(repeat (radio (const :format "%v " biff)
1793                         (const :format "%v " plug)
1794                         (sexp :tag "Other" :value title)))
1795   :group 'wl-highlight)
1796
1797 (defcustom wl-interactive-send t
1798   "*If non-nil, require your confirmation when sending draft message."
1799   :type 'boolean
1800   :group 'wl-pref
1801   :group 'wl-setting)
1802
1803 (defcustom wl-interactive-exit t
1804   "*If non-nil, require your confirmation when exiting WL."
1805   :type 'boolean
1806   :group 'wl-pref)
1807
1808 (defcustom wl-summary-move-order 'unread
1809   "*The order of priority when move in summary mode.
1810 If this variable is `unread', precede \"U\", \"!\", \"N\" mark.
1811 If this variable is `new', precede \"N\" mark."
1812   :type '(radio (const new)
1813                 (const unread))
1814   :group 'wl-summary
1815   :group 'wl-setting)
1816
1817 (defvar wl-summary-move-direction-downward t)
1818
1819 (defcustom wl-summary-move-direction-toggle t
1820   "*If non-nil, search direction for the next message will be determined
1821 depends on previous search direction.
1822 It uses wl-summary-move-direction-downward as a direction flag."
1823   :type 'boolean
1824   :group 'wl-summary)
1825
1826 (defcustom wl-auto-select-first nil
1827   "*If non-nil, display selected first message when enter summary."
1828   :type 'boolean
1829   :group 'wl-pref
1830   :group 'wl-setting)
1831
1832 (defcustom wl-auto-prefetch-first nil
1833   "*If non-nil, prefetch selected first message when enter summary."
1834   :type 'boolean
1835   :group 'wl-pref
1836   :group 'wl-setting)
1837
1838 (defcustom wl-auto-select-next nil
1839   "*If non-nil, offer to go to the next folder from the end of the previous.
1840 If the value is the symbol `unread', go to the next folder
1841 that no unread message exists.  If the value is the symbol `skip-no-unread',
1842 skip the folder that no unread message exists.
1843
1844 See also variable `wl-summary-next-no-unread-command'."
1845   :type '(radio (const :tag "off" nil)
1846                 (const :tag "on" t)
1847                 (const unread)
1848                 (const skip-no-unread))
1849   :group 'wl-pref
1850   :group 'wl-setting)
1851
1852 (defcustom wl-message-buffer-prefetch-folder-type-list t
1853   "*All folder types that match this list prefetch next message,
1854 and reserved buffer cache."
1855   :type `(choice (const :tag "all" t)
1856                  (const :tag "never" nil)
1857                  (set (const localdir)
1858                       (const localnews)
1859                       (const maildir)
1860                       (const imap4)
1861                       (const nntp)
1862                       (const pop3)
1863                       (const shimbun)
1864                       (const nmz)
1865                       (const archive)
1866                       (const mark)
1867                       (const cache)))
1868   :group 'wl-pref)
1869
1870 (defcustom wl-message-buffer-prefetch-folder-list nil
1871   "*All folders that match this list prefetch next message,
1872 and reserved buffer cache.
1873 e.x.
1874 '(\"^[-%]\")"
1875   :type '(repeat (regexp :tag "Folder Regexp"))
1876   :group 'wl-pref)
1877
1878 (defcustom wl-message-buffer-prefetch-depth 3
1879   "*Depth of buffer prefetch in summary mode."
1880   :type 'integer
1881   :group 'wl-pref)
1882
1883 (defcustom wl-message-buffer-prefetch-idle-time 0.2
1884   "*Idle time of buffer prefetch."
1885   :type 'number
1886   :group 'wl-pref)
1887
1888 (defcustom wl-message-buffer-prefetch-threshold 30000
1889   "*Quit forward cache prefetching if message size is larger than this value."
1890   :type 'integer
1891   :group 'wl-pref)
1892
1893 (defcustom wl-summary-always-sticky-folder-list nil
1894   "All folders that match this list has sticky summary.
1895 Each elements are regexp of folder name."
1896   :type '(radio (const :tag "none" nil)
1897                 (const :tag "all" t)
1898                 (repeat (regexp :tag "Folder Regexp")))
1899   :group 'wl-pref)
1900
1901 (defcustom wl-no-save-folder-list '("^/.*$" "^\\[.*$")
1902   "All folders that match this list won't save its msgdb.
1903 Each elements are regexp of folder name."
1904   :type '(repeat (regexp :tag "Folder Regexp"))
1905   :group 'wl-pref)
1906
1907 (defcustom wl-save-folder-list nil
1908   "All folders that match this list save its msgdb.
1909 Each elements are regexp of folder name."
1910   :type '(repeat (regexp :tag "Folder Regexp"))
1911   :group 'wl-pref)
1912
1913 (defcustom wl-folder-mime-charset-alist
1914   '(("^-alt\\.chinese" . big5)
1915     ("^-relcom\\." . koi8-r)
1916     ("^-tw\\." . big5)
1917     ("^-han\\." . euc-kr)
1918     ("@sponichi" . shift_jis)
1919     ("@2ch" . shift_jis))
1920   "Charset alist.  If no match, `wl-mime-charset' is used."
1921   :type '(repeat (cons (regexp :tag "Folder Regexp") (symbol :tag "Charset")))
1922   :group 'wl-summary
1923   :group 'wl-pref)
1924
1925 (defcustom wl-folder-weekday-name-lang-alist
1926   '(("^-alt\\.chinese" . "en")
1927     ("^-relcom\\." . "en")
1928     ("^-tw\\." . "en")
1929     ("^-han\\." . "en"))
1930   "Weekday name lang alist.
1931 If no match, `wl-summary-weekday-name-lang' is used.
1932 e.x.
1933 '((\"xemacs-beta$\" . \"en\")
1934   (\"^-fj\" . \"ja\"))"
1935   :type '(repeat (cons (regexp :tag "Folder Regexp")
1936                        (choice (const "ja")
1937                                (const "en")
1938                                (const "fr")
1939                                (const "de")
1940                                (string :tag "Other"))))
1941   :group 'wl-pref)
1942
1943 (defcustom wl-folder-thread-indent-set-alist
1944   '(("^-alt\\.chinese" . (2 "+" "+" "|" "-" " "))
1945     ("^-relcom\\." . (2 "+" "+" "|" "-" " "))
1946     ("^-tw\\." . (2 "+" "+" "|" "-" " "))
1947     ("^-han\\." . (2 "+" "+" "|" "-" " ")))
1948   "Thread indent set alist.
1949 If no match, following indent set is used.
1950 (wl-thread-indent-level
1951  wl-thread-have-younger-brother-str
1952  wl-thread-youngest-child-str
1953  wl-thread-vertical-str
1954  wl-thread-horizontal-str
1955  wl-thread-space-str)
1956 e.x.
1957 '((\"xemacs-beta$\" . (2 \"+\" \"+\" \"|\" \"-\" \" \")))"
1958   :type '(repeat (cons (regexp :tag "Folder Regexp")
1959                        (group (integer :tag "Indent")
1960                               (string :tag "Yonger Brother")
1961                               (string :tag "Yonger Child")
1962                               (string :tag "Vertical")
1963                               (string :tag "Horizontal")
1964                               (string :tag "Space"))))
1965   :group 'wl-pref)
1966
1967 (defcustom wl-folder-sync-range-alist
1968   (list (cons (concat "^" (regexp-quote wl-draft-folder) "$\\|^"
1969                       (regexp-quote wl-queue-folder) "$")
1970               "all"))
1971   "*Default sync range alist.  If no matches, `wl-default-sync-range' is used."
1972   :type '(repeat (cons (regexp :tag "Folder Regexp")
1973                        (choice (const "update")
1974                                (const "all")
1975                                (const "rescan")
1976                                (const "first:")
1977                                (const "last:")
1978                                (const "no-sync")
1979                                (const :tag "none" nil))))
1980   :group 'wl-pref)
1981
1982 (defcustom wl-default-sync-range  "update"
1983   "*Default sync range."
1984   :type '(choice (const "update")
1985                  (const "all")
1986                  (const "rescan")
1987                  (const "first:")
1988                  (const "last:")
1989                  (const "no-sync")
1990                  (const :tag "none" nil))
1991   :group 'wl-pref)
1992
1993 (defcustom wl-ask-range t
1994   "*If non-nil, ask for a range for summary synchronization.
1995 If nil, always use default."
1996   :type 'boolean
1997   :group 'wl-pref)
1998
1999 (defcustom wl-folder-process-duplicates-alist nil
2000   "Specify process type of duplicated messages.
2001 It should be a list of cons cell like: (REGEXP . TYPE)
2002 REGEXP is a regular expression string of folder name.
2003 TYPE is one of the symbols `hide' or `read'.
2004 `hide' means hide duplicated messages.
2005 `read' means mark as read duplicated messages.
2006 If TYPE is nil, do nothing for duplicated messages."
2007   :type '(repeat (cons (regexp :tag "Folder regexp")
2008                        (choice (const :tag "Hide" hide)
2009                                (const :tag "Mark as read" read))))
2010   :group 'wl-folder)
2011
2012 (defcustom wl-folder-move-cur-folder nil
2013   "*Non-nil, move to current folder on folder-mode when goto folder."
2014   :type 'boolean
2015   :group 'wl-folder)
2016
2017 (defcustom wl-folder-check-async t
2018   "*Check the folder asynchronous."
2019   :type 'boolean
2020   :group 'wl-folder)
2021
2022 (defcustom wl-folder-notify-deleted nil
2023   "*Non-nil, display negative number on folder-mode when message is deleted
2024 in folder. If the value is 'sync, msgdb would be synchronized."
2025   :type '(choice (const :tag "off" nil)
2026                  (const :tag "on" t)
2027                  (const sync))
2028   :group 'wl-folder)
2029
2030 (defcustom wl-summary-exit-next-move t
2031   "*Non-nil, move to next-unsync or next-entity when exit summary."
2032   :type 'boolean
2033   :group 'wl-summary)
2034
2035 (defcustom wl-summary-next-no-unread-command
2036   '(wl-summary-read wl-summary-down wl-summary-up)
2037   "*Command list available when the value of `wl-auto-select-next' is 'unread
2038 or 'skip-no-unread."
2039   :type '(repeat function)
2040   :group 'wl-summary)
2041
2042 (defcustom wl-summary-search-via-nntp 'confirm
2043   "*Non-nil, search message via nntp after `wl-summary-jump-to-msg-by-message-id'.  If the value is 'confirm, confirm before search."
2044   :type 'boolean
2045   :group 'wl-summary)
2046
2047 (defcustom wl-summary-keep-cursor-command
2048   '(wl-summary-goto-folder wl-summary-goto-last-visited-folder)
2049   "*Command list to keep cursor position when folder is changed to
2050 already existing summary."
2051   :type '(repeat function)
2052   :group 'wl-summary)
2053
2054 (defcustom wl-summary-showto-folder-regexp nil
2055   "Regexp specifying the folder that shows the To (or Newsgroups) field as
2056 Sender information in summary mode."
2057   :type '(choice (const :tag "none" nil)
2058                  regexp)
2059   :group 'wl-summary)
2060
2061 (defcustom wl-folder-removed-mark "#<removed>"
2062   "Mark for removed folder."
2063   :type 'string
2064   :group 'wl-folder)
2065
2066 (defcustom wl-folder-unsubscribe-mark "#"
2067   "Mark for unsubscribe folder."
2068   :type 'string
2069   :group 'wl-folder)
2070
2071 (defcustom wl-delete-folder-alist '(("^-" . remove))
2072   "*Alist of folder and delete policy.
2073 Each element is (folder-regexp . policy).
2074
2075 The policy is one of the followings:
2076 'remove or
2077 'null     : remove message.
2078 string    : refile to the specified folder.
2079 'trash or
2080 otherwise : refile to the `wl-trash-folder'.
2081 ex.
2082 '((\"^%\" . \"%#mh/trash\")
2083   (\"^-\" . remove)
2084   (\"^\\\\+\" . trash))"
2085   :type '(repeat (cons (regexp :tag "Folder Regexp")
2086                        (choice :tag "Policy"
2087                                (const remove)
2088                                (const :tag "remove(null)" null)
2089                                (const trash)
2090                                (const :tag "trash(other)" trash)
2091                                (string :tag "Folder"))))
2092   :group 'wl-folder)
2093
2094 (defcustom wl-refile-policy-alist '(("^[-=']" . copy)
2095                                     (".*" . move))
2096   "*List of refile policy.  Each element is (FOLDER-REGEXP . POLICY).
2097 POLICY is copy or move."
2098   :type '(repeat (cons (regexp :tag "Folder Regexp")
2099                        (choice (const copy)
2100                                (const move))))
2101   :group 'wl-summary
2102   :group 'wl-pref)
2103
2104 (defcustom wl-folder-hierarchy-access-folders '("^-$" "^-alt$")
2105   "*Access group REGEXPs to make hierarchy structure."
2106   :type '(repeat (string :tag "Folder"))
2107   :group 'wl-folder)
2108
2109 (defcustom wl-folder-init-load-access-folders nil
2110   "*Access group folders to load folder list on `wl-folder-init'.
2111 If this variable is non-nil,
2112 `wl-folder-init-no-load-access-folders' will be ignored."
2113   :type '(repeat (regexp :tag "Folder Regexp"))
2114   :group 'wl-folder)
2115
2116 (defcustom wl-folder-init-no-load-access-folders nil
2117   "*Access group folders to not load folder list on `wl-folder-init'.
2118 If `wl-folder-init-load-access-folders' is non-nil,
2119 this variable will be ignored."
2120   :type '(repeat (regexp :tag "Folder Regexp"))
2121   :group 'wl-folder)
2122
2123 (defcustom wl-folder-access-subscribe-alist nil
2124   "*Subscribe folders to fetching folder entries.
2125 Each element is (group-regexp (subscribe folder-regexp ...)).
2126 If subscribe is non-nil, subscribe when match folder-regexp.
2127 If subscribe is nil, unsubscribe when match folder-regexp.
2128
2129 ex.
2130 '((\"^-fj$\"   . (t   \"^-fj\\\\.\\\\(editor\\\\|mail\\\\|net\\\\|news\\\\)\"))
2131   (\"^-comp$\" . (t   \"^-comp\\\\.unix\" \"^-comp\\\\.sys\"))
2132   (\"^-$\"     . (nil \"^-alt\" \"^-rec\")))"
2133   :type '(repeat (cons (regexp :tag "Folder Regexp")
2134                        (list (boolean :tag "Subscribed")
2135                              (repeat :inline t
2136                                      (regexp :tag "Folder Regexp")))))
2137   :group 'wl-folder)
2138
2139 ;;; For Folder Manager
2140
2141 (defcustom wl-interactive-save-folders t
2142   "*Non-nil require your confirmation when save folders."
2143   :type 'boolean
2144   :group 'wl-folder
2145   :group 'wl-setting)
2146
2147 (defcustom wl-fldmgr-make-backup t
2148   "*Non-nil make backup file when save folders."
2149   :type 'boolean
2150   :group 'wl-folder)
2151
2152 (defcustom wl-fldmgr-folders-indent "\t"
2153   "*Indent string for folders file."
2154   :type 'string
2155   :group 'wl-folder)
2156
2157 (defcustom wl-fldmgr-sort-function 'wl-fldmgr-sort-standard
2158   "*A function to sort folder."
2159   :type 'function
2160   :group 'wl-folder)
2161
2162 (defcustom wl-fldmgr-sort-group-first t
2163   "*Non-nil Group folder is first when sort."
2164   :type 'function
2165   :group 'wl-folder)
2166
2167 (defcustom wl-fldmgr-add-complete-with-current-folder-list nil
2168   "*If non-nil, completion for adding folder refers current folder list."
2169   :type 'boolean
2170   :group 'wl-folder)
2171
2172 (defcustom wl-fldmgr-make-filter-default "Body"
2173   "*Default filter key while making filter on Folder."
2174   :type '(radio (const "From")
2175                 (const "Subject")
2176                 (const "To")
2177                 (const "Cc")
2178                 (const "Body")
2179                 (const "Since")
2180                 (const "Before")
2181                 (const "Last")
2182                 (const "First")
2183                 (string :tag "Other"))
2184   :group 'wl-folder)
2185
2186 (defcustom wl-fldmgr-allow-rename-access-group nil
2187   "*If non-nil, allow to rename folder in access group."
2188   :type 'boolean
2189   :group 'wl-folder)
2190
2191 ;;; For Expire and Archive
2192
2193 (defcustom wl-expire-alist nil
2194   "Alist to decide a policy for expire.
2195 Each element is (folder-regexp (number or date) policy).
2196
2197 The policy is one of the followings:
2198 'remove  : remove messsage.
2199 'trash   : refile `wl-trash-folder'.
2200 string   : refile string folder.
2201 function : call function.
2202
2203 ex.
2204 '((\"^\\\\+ml/wl$\"             (number 500 510) wl-expire-archive-number1 t)
2205   (\"^\\\\+ml/\"                (number 300 305) wl-expire-archive-number2)
2206   (\"^\\\\+outbox$\"            (number 300) \"$outbox;lha\")
2207   (\"^\\\\(\\\\+tmp\\\\|\\\\+trash\\\\)$\"      (date 7) remove)
2208   (\"^\\\\+misc$\"              (date 14) trash))"
2209   :type '(repeat (choice (list :tag "No-match"
2210                                (regexp :tag "Folder Regexp")
2211                                (const nil))
2212                          (list :tag "Match"
2213                                (regexp :tag "Folder Regexp")
2214                                (list (radio :value number
2215                                             (const number)
2216                                             (const date))
2217                                      (list :inline t
2218                                            integer
2219                                            (repeat :inline t integer)))
2220                                (choice :tag "Policy"
2221                                        :value remove
2222                                        (const remove)
2223                                        (const trash)
2224                                        (string :tag "folder")
2225                                        function)
2226                                (repeat :inline t
2227                                        :tag "Arg for function"
2228                                        sexp))))
2229   :group 'wl-expire)
2230
2231 (defcustom wl-archive-alist '((".*" wl-archive-number1))
2232   "Alist to decide a policy for archive.
2233 Each element is (folder-regexp policy(function)).
2234
2235 ex.
2236 '((\"\\\\+work$\" wl-archive-date)
2237   (\"\\\\+ml/\"   wl-archive-number1)
2238   (\".*\"       wl-archive-number2))"
2239   :type '(repeat (list (regexp :tag "Folder Regexp")
2240                        function
2241                        (repeat :inline t
2242                                (sexp :tag "Argument"))))
2243   :group 'wl-expire)
2244
2245 (defcustom wl-summary-expire-reserve-marks
2246   (list wl-summary-important-mark
2247         wl-summary-new-mark
2248         wl-summary-unread-mark
2249         wl-summary-unread-uncached-mark
2250         wl-summary-unread-cached-mark)
2251   "Permanent marks of reserved message when expire.
2252 Don't reserve temporary mark message.
2253
2254 ex.
2255 'all  : reserved all permanent marks.
2256 'none : not reserve permanent marks.
2257 list  : reserved specified permanent marks."
2258   :type '(repeat (string :tag "Mark"))
2259   :group 'wl-expire)
2260
2261 (defcustom wl-expire-number-with-reserve-marks nil
2262   "If non-nil, include reserve message when expire by number."
2263   :type 'boolean
2264   :group 'wl-expire)
2265
2266 (defcustom wl-expire-add-seen-list t
2267   "*If non-nil, add seen message list when refile message at expire."
2268   :type 'boolean
2269   :group 'wl-expire)
2270
2271 (defcustom wl-expire-use-log nil
2272   "*If non-nil, write a log when expired."
2273   :type 'boolean
2274   :group 'wl-expire)
2275
2276 (defcustom wl-expire-folder-update-msgdb t
2277   "*Non-nil update summary msgdb when expire on folder mode."
2278   :type 'boolean
2279   :group 'wl-expire)
2280
2281 ;; for wl-expire-archive-{number1|number2}
2282 (defcustom wl-expire-archive-files 100
2283   "*The number of one archive folder."
2284   :type 'integer
2285   :group 'wl-expire)
2286
2287 ;; for wl-expire-archive-{number1|number2|date}
2288 (defcustom wl-expire-archive-get-folder-function
2289   'wl-expire-archive-get-folder
2290   "*A function to get archive folder name."
2291   :type 'function
2292   :group 'wl-expire)
2293
2294 (defcustom wl-expire-delete-oldmsg-confirm t
2295   "*If non-nil, require your confirmation when delete old message."
2296   :type 'boolean
2297   :group 'wl-expire)
2298
2299 ;; for wl-expire-archive-get-folder
2300 (defcustom wl-expire-archive-folder-type 'zip
2301   "*Archiver type of archive folder."
2302   :type '(radio (const zip)
2303                 (const lha)
2304                 (const zoo)
2305                 (const rar)
2306                 (const tar)
2307                 (const tgz)
2308                 (symbol :tag "Other"))
2309   :group 'wl-expire)
2310
2311 (defcustom wl-expire-archive-folder-name-fmt "%s-%%05d;%s" ;; $folder-00100;zip
2312   "*A format string for archive folder name."
2313   :type 'string
2314   :group 'wl-expire)
2315
2316 (defcustom wl-expire-archive-folder-num-regexp "-\\([0-9]+\\);"
2317   "*A regexp string for archive folder name."
2318   :type 'string
2319   :group 'wl-expire)
2320
2321 (defcustom wl-expire-archive-date-folder-name-fmt "%s-%%04d%%02d;%s"
2322                                                 ;; $folder-199812;zip
2323   "*A format string for archive date folder name."
2324   :type 'string
2325   :group 'wl-expire)
2326
2327 (defcustom wl-expire-archive-date-folder-num-regexp "-\\([0-9]+\\);"
2328   "*A regexp string for archive date folder name."
2329   :type 'string
2330   :group 'wl-expire)
2331
2332 (defcustom wl-expire-archive-folder-prefix nil
2333   "*Prefix for archive folder."
2334   :type '(radio (const :tag "nothing" nil)
2335                 (const :tag "full" t)
2336                 (const short))
2337   :group 'wl-expire)
2338
2339 ;;;; Highlights.
2340
2341 ;; highilght about summary
2342 (defcustom wl-highlight-max-summary-lines 10000
2343   "*If the summary is larger than this lines, don't highlight it."
2344   :type 'integer
2345   :group 'wl-highlight)
2346
2347 ;; highilght about draft and message
2348 (defcustom wl-highlight-body-too t
2349   "*In addition to header, highlight the body too.  if non nil."
2350   :type 'boolean
2351   :group 'wl-highlight)
2352
2353 (defcustom wl-highlight-message-header-alist
2354   '(("Subject[ \t]*:" . wl-highlight-message-important-header-contents)
2355     ("From[ \t]*:\\|To[ \t]*:" . wl-highlight-message-important-header-contents2)
2356     ("X-[^ \t]*:\\|User-Agent[ \t]*:" . wl-highlight-message-unimportant-header-contents))
2357   ""
2358   :type '(repeat (cons regexp face))
2359   :group 'wl-highlight)
2360
2361 (defcustom wl-highlight-citation-prefix-regexp
2362   "^[>|:} ]*[>|:}]\\([^ \n>]*>\\)?\\|^[^ <\n>]*>"
2363   "All lines that match this regexp will be highlighted with
2364  `wl-highlight-message-cited-text-*' face."
2365   :type 'regexp
2366   :group 'wl-highlight)
2367
2368 (defcustom wl-highlight-highlight-citation-too nil
2369   "*Whether the whole citation line should go in the
2370 `wl-highlight-citation-face' face.
2371 If nil, the text matched by `wl-highlight-citation-prefix-regexp' is in the
2372 default face, and the remainder of the line is in the
2373 wl-highlight-message-cited-text face."
2374   :type 'boolean
2375   :group 'wl-highlight)
2376
2377 (defcustom wl-highlight-force-citation-header-regexp
2378   "^>>>.*$\\|^[ \t]*<[^>]*>[ \t]*$"
2379   "*The pattern to match the prolog of a cited block.
2380 Text in the body of a message which matches this will be displayed in
2381 the `wl-highlight-message-headers' face."
2382   :type 'regexp
2383   :group 'wl-highlight)
2384
2385 (defcustom wl-highlight-citation-header-regexp
2386   (concat "In article.*$\\|In message.*$\\|In the message.*$\\|"
2387           "^At[^\n]+\n[^\n]+wrote:\n\\|"
2388           "^.*\\(writes\\|wrote\\|said\\):\n")
2389   "*The pattern to match the prolog of a cited block.
2390 Text in the body of a message which matches this will be displayed in
2391 the `wl-highlight-message-headers' face."
2392   :type 'regexp
2393   :group 'wl-highlight)
2394
2395 (defcustom wl-highlight-max-header-size nil
2396   "*If the message header is larger than this many chars, don't highlight it.
2397 If this is nil, all headers will be highlighted."
2398   :type 'integer
2399   :group 'wl-highlight)
2400
2401 (defcustom wl-highlight-max-message-size 10000
2402   "*If the message body is larger than this many chars, don't highlight it.
2403 This is to prevent us from wasting time trying to fontify things like
2404 uuencoded files and large digests.  If this is nil, all messages will
2405 be highlighted."
2406   :type 'integer
2407   :group 'wl-highlight)
2408
2409 ;; highilght about signature (of draft and message)
2410 (defcustom wl-highlight-signature-separator
2411   '("\n--+\n" "\n\n--+.*\n*\\'")
2412   "List of regexps matching signature separator.
2413 It will be verified from head to tail looking for a separator.
2414 Verification will be done from the end of the buffer.
2415 No need to specify \"^-- $\" in this list,
2416 because it is verified by default.
2417 This variable can also be a regex."
2418   :type '(repeat regexp)
2419   :group 'wl-highlight)
2420
2421 (defcustom wl-max-signature-size 400
2422   "*If the signature is larger than this chars, don't treat it as a signature."
2423   :type 'integer
2424   :group 'wl-highlight)
2425
2426 ;; highilght about mouse
2427 (defcustom wl-use-highlight-mouse-line (and window-system
2428                                             (>= emacs-major-version 19))
2429   "*Highlight mouse line, if non nil."
2430   :type 'boolean
2431   :group 'wl-highlight)
2432
2433 ;; highilght about folder
2434 (defcustom wl-highlight-folder-with-icon
2435   (or (and (featurep 'xemacs)
2436            (featurep 'xpm))
2437       wl-on-emacs21)
2438   "*Highlight folder with icon(XEmacs or Emacs 21)."
2439   :type 'boolean
2440   :group 'wl-highlight)
2441 (defcustom wl-highlight-folder-by-numbers t
2442   "Highlight folder lines by numbers.
2443 If it is a number, only numbers will be highlighted."
2444   :type '(choice (const :tag "whole line" t)
2445                  (const :tag "only numbers" 1)
2446                  (const :tag "don't highlight" nil))
2447   :group 'wl-highlight)
2448
2449 (defcustom wl-highlight-signature-search-function 'wl-highlight-signature-search
2450   "Function to search signature area in the message body."
2451   :type 'function
2452   :group 'wl-highlight)
2453
2454 (defcustom wl-use-dnd (and wl-on-xemacs
2455                            (featurep 'dragdrop))
2456   "If Non-nil, support dragdrop feature in XEmacs."
2457   :type 'boolean
2458   :group 'wl-pref)
2459
2460 (defcustom wl-reset-plugged-alist t
2461   "*If non-nil, reset `elmo-plugged-alist' when startup."
2462   :type 'boolean
2463   :group 'wl-pref)
2464
2465 (defcustom wl-demo-display-logo (if (or (featurep 'xemacs)
2466                                         (module-installed-p 'image)
2467                                         (module-installed-p 'bitmap))
2468                                     t)
2469   "If it is T, show graphic logo in the startup screen.  You can set it to
2470 a symbol `bitmap', `xbm' or `xpm' in order to force the image format."
2471   :type '(radio (const :tag "Off" nil)
2472                 (const :tag "On (any format)" t)
2473                 (const xpm)
2474                 (const xbm)
2475                 (const :tag "bitmap (using BITMAP-MULE)" bitmap))
2476   :group 'wl-pref)
2477
2478 (defcustom wl-invalid-character-message "(WL:Invalid characters.)"
2479   "*A string displayed when invalid character exists."
2480   :type 'string
2481   :group 'wl-pref)
2482
2483 ;;; Internal variables
2484 (defvar wl-init nil)
2485
2486 ;; For disconnected operations.
2487 (defvar wl-plugged-hook nil)
2488 (defvar wl-unplugged-hook nil)
2489 (defcustom wl-plugged t
2490   "*Plugged state at the startup.  Nil means off-line."
2491   :type 'boolean
2492   :group 'wl
2493   :group 'wl-setting)
2494
2495 ;; Internal variables used to modeline identifiers.
2496 (defvar wl-modeline-plug-status nil)
2497 (defvar wl-modeline-plug-state-on wl-plug-state-indicator-on)
2498 (defvar wl-modeline-plug-state-off wl-plug-state-indicator-off)
2499 (defvar wl-modeline-biff-status nil)
2500 (defvar wl-modeline-biff-state-on wl-biff-state-indicator-on)
2501 (defvar wl-modeline-biff-state-off wl-biff-state-indicator-off)
2502
2503 ;; Advanced thread view.
2504 (defvar wl-thread-indent-level 1
2505   "*Indent level for thread.")
2506 (defvar wl-thread-have-younger-brother-str "\e$B(2\e(B"
2507   "*A string for thread branch line.  It should contain one character.")
2508 (defvar wl-thread-youngest-child-str       "\e$B(1\e(B"
2509   "*A string for thread branch line.  It should contain one character.")
2510 (defvar wl-thread-vertical-str             "\e$B(-\e(B"
2511   "*A string for thread branch line.  It should contain one character.")
2512 (defvar wl-thread-horizontal-str           "\e$B(,\e(B"
2513   "*A string for thread branch line.  It should contain one character.")
2514 (defvar wl-thread-space-str                "\e$B!!\e(B"
2515   "*A string for thread branch line.  It should contain one character.")
2516
2517 (defvar wl-highlight-thread-indent-string-regexp "[^[<]*"
2518   "* A regexp string for thread indent...for highlight.")
2519
2520 ;; folder icons. filename relative to wl-icon-directory
2521 (defvar wl-opened-group-folder-icon "opened.xpm"
2522   "*Icon file for opened group folder.")
2523 (defvar wl-closed-group-folder-icon "closed.xpm"
2524   "*Icon file for closed group folder.")
2525 (defvar wl-nntp-folder-icon "news.xpm"
2526   "*Icon file for nntp folder.")
2527 (defvar wl-imap-folder-icon "imap.xpm"
2528   "*Icon file for imap folder.")
2529 (defvar wl-pop-folder-icon  "pop.xpm"
2530   "*Icon file for pop folder.")
2531 (defvar wl-localdir-folder-icon "local.xpm"
2532   "*Icon file for localdir folder.")
2533 (defvar wl-localnews-folder-icon "localnews.xpm"
2534   "*Icon file for localnews folder.")
2535 (defvar wl-internal-folder-icon "internal.xpm"
2536   "*Icon file for internal folder.")
2537 (defvar wl-multi-folder-icon "multi.xpm"
2538   "*Icon file for multi folder.")
2539 (defvar wl-filter-folder-icon "filter.xpm"
2540   "*Icon file for filter folder.")
2541 (defvar wl-archive-folder-icon "archive.xpm"
2542   "*Icon file for archive folder.")
2543 (defvar wl-pipe-folder-icon "pipe.xpm"
2544   "*Icon file for pipe folder.")
2545 (defvar wl-nmz-folder-icon "nmz.xpm"
2546   "*Icon file for namazu folder.")
2547 (defvar wl-shimbun-folder-icon "shimbun.xpm"
2548   "*Icon file for shimbun folder.")
2549 (defvar wl-maildir-folder-icon "maildir.xpm"
2550   "*Icon file for maildir folder.")
2551 (defvar wl-empty-trash-folder-icon "trash-e.xpm"
2552   "*Icon file for emptied trash folder.")
2553 (defvar wl-trash-folder-icon "trash.xpm"
2554   "*Icon file for trash folder.")
2555 (defvar wl-draft-folder-icon "draft.xpm"
2556   "*Icon file for draft folder.")
2557 (defvar wl-queue-folder-icon "queue.xpm"
2558   "*Icon file for queue folder.")
2559 (defvar wl-plugged-icon "plugged.xpm"
2560   "*Icon file for plugged state.")
2561 (defvar wl-unplugged-icon "unplugged.xpm"
2562   "*Icon file for unplugged state.")
2563 (defvar wl-biff-mail-icon "letter.xpm"
2564   "*Icon file for mail existed state.")
2565 (defvar wl-biff-nomail-icon "no-letter.xpm"
2566   "*Icon file for no mail existed state.")
2567 (defvar wl-prog-uudecode "uudecode"
2568   "*uudecode program name.")
2569 (defvar wl-prog-uudecode-arg nil
2570   "*Arguments for uudecode program.")
2571 (defvar wl-prog-uudecode-no-stdout-option t
2572   "*If non-nil, uudecode program don't have option for output to stdout.")
2573
2574 ;; plug
2575 (defvar wl-plugged-plug-on "ON")
2576 (defvar wl-plugged-plug-off "--")
2577 (defvar wl-plugged-auto-off "**")
2578 (defvar wl-plugged-server-indent 2)
2579 (defvar wl-plugged-port-indent 4)
2580 (defvar wl-plugged-queue-status-column 25)
2581
2582 ;;;; Obsolete variables.
2583
2584 ;; 2001-12-11: *-dir -> *-directory
2585 (elmo-define-obsolete-variable 'wl-icon-dir
2586                                'wl-icon-directory)
2587 (elmo-define-obsolete-variable 'wl-mime-save-dir
2588                                'wl-mime-save-directory)
2589 (elmo-define-obsolete-variable 'wl-score-files-dir
2590                                'wl-score-files-directory)
2591 (elmo-define-obsolete-variable 'wl-tmp-dir
2592                                'wl-temporary-file-directory)
2593
2594 ;; 2001-12-07
2595 (elmo-define-obsolete-variable 'wl-subject-length-limit
2596                                'wl-summary-subject-length-limit)
2597
2598 ;; 2001-12-10
2599 (elmo-define-obsolete-variable 'wl-summary-update-confirm-threshold
2600                                'elmo-folder-update-threshold)
2601 (elmo-define-obsolete-variable 'wl-fetch-confirm-threshold
2602                                'elmo-message-fetch-threshold)
2603
2604 (elmo-define-obsolete-variable 'wl-cache-prefetch-folder-type-list
2605                                'wl-message-buffer-prefetch-folder-type-list)
2606 (elmo-define-obsolete-variable 'wl-cache-prefetch-folder-list
2607                                'wl-message-buffer-prefetch-folder-list)
2608
2609 ;; 2001-02-27: *-func -> *-function
2610 (elmo-define-obsolete-variable 'wl-summary-from-func
2611                                'wl-summary-from-function)
2612 (elmo-define-obsolete-variable 'wl-summary-subject-func
2613                                'wl-summary-subject-function)
2614 (elmo-define-obsolete-variable 'wl-summary-subject-filter-func
2615                                'wl-summary-subject-filter-function)
2616 (elmo-define-obsolete-variable 'wl-draft-send-func
2617                                'wl-draft-send-function)
2618 (elmo-define-obsolete-variable 'wl-draft-send-news-func
2619                                'wl-draft-send-news-function)
2620 (elmo-define-obsolete-variable 'wl-draft-send-mail-func
2621                                'wl-draft-send-mail-function)
2622 (elmo-define-obsolete-variable 'wl-print-buffer-func
2623                                'wl-print-buffer-function)
2624 (elmo-define-obsolete-variable 'wl-ps-print-buffer-func
2625                                'wl-ps-print-buffer-function)
2626 (elmo-define-obsolete-variable 'wl-generate-mailer-string-func
2627                                'wl-generate-mailer-string-function)
2628 (elmo-define-obsolete-variable 'wl-highlight-x-face-func
2629                                'wl-highlight-x-face-function)
2630 (elmo-define-obsolete-variable 'wl-fldmgr-sort-func
2631                                'wl-fldmgr-sort-function)
2632 (elmo-define-obsolete-variable 'wl-expire-archive-get-folder-func
2633                                'wl-expire-archive-get-folder-function)
2634 (elmo-define-obsolete-variable 'wl-highlight-signature-search-func
2635                                'wl-highlight-signature-search-function)
2636
2637 ;; 2000-01-25: temp mark -> target mark
2638 (elmo-define-obsolete-variable 'wl-summary-temp-above
2639                                'wl-summary-target-above)
2640
2641 ;; 1999-11-07: Unified with `wl-draft-config-alist'.
2642 (defvar wl-draft-prepared-config-alist nil)
2643 (make-obsolete-variable 'wl-draft-prepared-config-alist
2644                         'wl-draft-config-alist)
2645
2646 ;; 1999-10-10
2647 (elmo-define-obsolete-variable 'wl-address-filename
2648                                'wl-address-file)
2649 (elmo-define-obsolete-variable 'wl-score-default-file-name
2650                                'wl-score-default-file)
2651
2652
2653 (require 'product)
2654 (product-provide (provide 'wl-vars) (require 'wl-version))
2655
2656 ;;; wl-vars.el ends here