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