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