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