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