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