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