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