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