* wl-vars.el (wl-summary-resend-hook): New hook.
[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 'elmo-msgdb)
37 (require 'custom)
38
39 ;;; Customizable Variables
40
41 (defgroup wl nil
42   "Wanderlust, a news and mail reading software."
43   :tag "Wanderlust"
44   :link (` (custom-manual
45             (, (if (and (boundp 'current-language-environment)
46                         (string-equal "Japanese"
47                                       (symbol-value 'current-language-environment)))
48                    "(wl-ja)Top"
49                  "(wl)Top"))))
50   :group 'news
51   :group 'mail)
52
53 (defgroup wl-pref nil
54   "Wanderlust, Preferences."
55   :prefix "wl-"
56   :group 'wl)
57
58 (defgroup wl-folder nil
59   "Wanderlust, folder buffer."
60   :prefix "wl-"
61   :group 'wl)
62
63 (defgroup wl-summary nil
64   "Wanderlust, summary buffer."
65   :prefix "wl-"
66   :group 'wl)
67
68 (defgroup wl-summary-marks nil
69   "Wanderlust, marks used in summary buffers."
70   :prefix "wl-summary-"
71   :group 'wl-summary)
72
73 (defgroup wl-expire nil
74   "Wanderlust, Expiring and archiving."
75   :prefix "wl-"
76   :group 'wl)
77
78 (defgroup wl-score nil
79   "Wanderlust, Score file handling."
80   :prefix "wl-"
81   :group 'wl)
82
83 (defgroup wl-highlight nil
84   "Wanderlust, Highlights."
85   :prefix "wl-"
86   :group 'wl)
87
88 (defgroup wl-draft nil
89   "Wanderlust, draft mode."
90   :prefix "wl-"
91   :group 'wl)
92
93 (defgroup wl-setting nil
94   "Wanderlust common settings."
95   :prefix "wl-"
96   :group 'wl)
97
98 ;;; Emacsen
99 (defconst wl-on-xemacs (featurep 'xemacs))
100
101 (defconst wl-on-emacs21 (and (not wl-on-xemacs)
102                              (>= emacs-major-version 21)))
103
104 (defconst wl-on-mule (featurep 'mule))
105
106 (defconst wl-on-mule3
107   (and wl-on-mule (or wl-on-xemacs
108                       (> emacs-major-version 19))))
109
110 (defconst wl-on-nemacs nil) ; backward compatibility.
111
112 (eval-when-compile
113   (defun-maybe locate-data-directory (a)))
114
115 (defvar wl-cs-noconv
116   (cond (wl-on-mule3 'binary)
117         (wl-on-mule  '*noconv*)
118         (t           nil)))
119
120 (defvar wl-cs-autoconv
121   (cond (wl-on-mule3 'undecided)
122         (wl-on-mule  '*autoconv*)
123         (t           nil)))
124
125 (defvar wl-cs-local
126   (cond (wl-on-mule3  'junet)
127         (wl-on-mule   '*junet*)
128         (t           nil)))
129
130 (defvar wl-cs-cache wl-cs-local)
131
132 (defcustom wl-from (and user-mail-address
133                         (concat (and (user-full-name)
134                                      (concat (elmo-address-quote-specials
135                                               (user-full-name))
136                                              " "))
137                                 "<" user-mail-address ">"))
138   "*From string used in draft."
139   :type  'string
140   :group 'wl
141   :group 'wl-setting)
142
143 (defcustom wl-user-mail-address-list nil
144   "*A list of user's mail addresses.
145 This list is used to judge whether an address is user's or not.
146 You should set this variable if you use multiple e-mail addresses.
147 If you don't have multiple e-mail addresses, you don't have to set this.
148 NOTE: Non-nil value of `wl-user-mail-address-regexp' supersede this."
149   :type '(repeat string)
150   :group 'wl
151   :group 'wl-setting)
152
153 (defcustom wl-user-mail-address-regexp nil
154   "*A regexp for user's mail addresses.
155 Supersede `wl-user-mail-address-list'."
156   :type '(choice (const :tag "Use wl-user-mail-address-list" nil)
157                  string)
158   :group 'wl
159   :group 'wl-setting)
160
161 (defcustom wl-organization (getenv "ORGANIZATION")
162   "Organization name."
163   :type '(choice (const :tag "none" nil)
164                  string)
165   :group 'wl
166   :group 'wl-setting)
167
168 (defcustom wl-temporary-file-directory "~/tmp/"
169   "*Default temporary directory to save message, part."
170   :type 'directory
171   :group 'wl)
172
173 (defcustom wl-icon-directory (if (fboundp 'locate-data-directory)
174                                  (locate-data-directory "wl")
175                                (let ((icons (expand-file-name "wl/icons/"
176                                                               data-directory)))
177                                  (if (file-directory-p icons)
178                                      icons)))
179   "*Directory to load the icon files from, or nil if none."
180   :type '(choice (const :tag "none" nil)
181                  string)
182   :group 'wl)
183
184 (defcustom wl-summary-default-view 'thread
185   "Default status of summary view, thread or sequential view."
186   :type '(choice (const :tag "Thread" thread)
187                  (const :tag "Sequential" sequence))
188   :group 'wl-summary)
189
190 (defcustom wl-summary-default-view-alist nil
191   "An alist of regexp for folder name and summary default view.
192 If no match, `wl-summary-default-view' is used."
193   :type '(repeat (cons (regexp :tag "Folder Regexp")
194                        (choice (const :tag "Thread" thread)
195                                (const :tag "Sequential" sequence))))
196   :group 'wl-summary)
197
198 (defvar wl-summary-mode-line-format-spec-alist
199   '((?f (if (memq 'modeline wl-use-folder-petname)
200             (wl-folder-get-petname (elmo-folder-name-internal
201                                     wl-summary-buffer-elmo-folder))
202           (elmo-folder-name-internal wl-summary-buffer-elmo-folder)))
203     (?t (if (eq wl-summary-buffer-view 'thread) "T" "S"))
204     (?n wl-summary-buffer-new-count)
205     (?u wl-summary-buffer-unread-count)
206     (?a (length wl-summary-buffer-number-list)))
207   "An alist of format specifications that can appear in summary mode-lines.
208 Each element is a list of following:
209 \(SPEC STRING-EXP)
210 SPEC is a character for format specification.
211 STRING-EXP is an expression to get string to insert.")
212
213 (defcustom wl-summary-mode-line-format "Wanderlust: %f {%t}(%n/%u/%a)"
214   "*A format string for summary mode-line of Wanderlust.
215 It may include any of the following format specifications
216 which are replaced by the given information:
217
218 %f The folder name.
219 %t The thread status of the summary ('T' for thread, 'S' for sequential).
220 %n The number of new messages.
221 %u The number of unread messages (includes new messages).
222 %a The number of all messages."
223   :group 'wl-summary
224   :type 'string)
225
226 (defvar wl-summary-line-format-spec-alist
227   '((?Y (wl-summary-line-year))
228     (?M (wl-summary-line-month))
229     (?D (wl-summary-line-day))
230     (?W (wl-summary-line-day-of-week))
231     (?h (wl-summary-line-hour))
232     (?m (wl-summary-line-minute))
233     (?\[ (if wl-thr-linked "<" "["))
234     (?\] (if wl-thr-linked ">" "]"))
235     (?t (or wl-thr-indent-string ""))
236     (?s (wl-summary-line-subject))
237     (?S (wl-summary-line-size))
238     (?C (if wl-thr-children-number
239             (concat "[+" (number-to-string wl-thr-children-number) "] ")
240           (if wl-parent-message-entity
241               (if wl-thr-linked ">>" ">")
242             "")))
243     (?~ (if (zerop (length wl-line-string)) "" " "))
244     (?c (if wl-thr-children-number
245             (concat "+" (number-to-string wl-thr-children-number) ":")
246           ""))
247     (?f (wl-summary-line-from))
248     (?# (wl-summary-line-list-info))
249     (?l (wl-summary-line-list-count))
250     (?T (or wl-temp-mark " "))
251     (?P (or wl-persistent-mark " "))
252     (?n (wl-summary-line-number))
253     (?@ (wl-summary-line-attached)))
254   "An alist of format specifications that can appear in summary lines.
255 Each element is a list of following:
256 \(SPEC STRING-EXP)
257 SPEC is a character for format specification.
258 STRING-EXP is an expression to get string to insert.")
259
260 (defcustom wl-summary-line-format "%n%T%P%M/%D(%W)%h:%m %t%[%17(%c %f%) %] %s"
261   "*A default format string for summary line of Wanderlust.
262 It may include any of the following format specifications
263 which are replaced by the given information:
264
265 %n The number of the message.
266    The width is decided using `wl-summary-default-number-column' and
267    `wl-summary-number-column-alist'.
268 %T The temporal mark (*, D, o, O).
269 %P The persistent mark (status of the message).
270 %Y The year of the date field of the message (zero padded).
271 %M The month of the date field of the message (zero padded).
272 %D The day of the date field of the message (zero padded).
273 %W The weekday name of the date field of the message (zero padded).
274 %h The hour of the date field of the message (zero padded).
275 %m The minute of the date field of the message (zero padded).
276 %[ An open bracket.  If the message thread is linked,
277    it is replaced with '<'.
278 %] A close bracket.  If the message thread is linked,
279    it is replaced with '>'.
280 %c The children number of the closed message thread.
281    Children number is printed like '+??:'.
282 %C The children number of the closed message thread.
283    Children number is printed like '[+??] '.
284    If the message is opened, '>' or '>>' (linked) is displayed.
285 %f The from: field string of the message.
286 %s The subject: field string of the message.
287 %S The size of the message (if available).
288 %~ If the previous spec is not zero-length, replaced with ' '.
289
290 If the format string contains the specifiers %( and %), the text between
291 them will have the specified number of columns."
292   :group 'wl-summary
293   :type 'string)
294
295 (defcustom wl-folder-summary-line-format-alist nil
296   "An alist of folder name and a summary line format.
297 If no match, `wl-summary-line-format' is used.
298 e.x.
299       '((\"^%\" . \"%n%T%P%M/%D(%W)%h:%m %t%[%14(%c %f%) %](%S) %s\")
300         (\"^@2ch\" . \"%n%T%P%M%/%D/%h:%m %t[%9(%c %f%) ]%s\")))"
301   :type '(repeat (cons (regexp :tag "Folder Regexp")
302                        (string :tag "line format")))
303   :group 'wl-summary)
304
305 (defcustom wl-summary-check-line-format t
306   "*Check summary line format change if non-nil.
307 When summary line format is changed, current summary cache is discarded.
308 It is highly recommended to set this value to t."
309   :type 'boolean
310   :group 'wl-summary)
311
312 (defcustom wl-summary-line-format-file ".wl-summary-line-format"
313   "*Cache file for summary line format."
314   :type 'file
315   :group 'wl-summary)
316
317 (defcustom wl-summary-from-function 'wl-summary-default-from
318   "*A function for displaying sender (From: field) information."
319   :type 'function
320   :group 'wl-summary)
321
322 (defcustom wl-summary-subject-function 'wl-summary-default-subject
323   "*A function for displaying subject."
324   :type 'function
325   :group 'wl-summary)
326
327 (defcustom wl-summary-subject-filter-function 'wl-summary-default-subject-filter
328   "*A filter function for comparing subjects."
329   :type 'function
330   :group 'wl-summary)
331
332 (defcustom wl-summary-search-parent-by-subject-regexp "^[ \t]*\\(\\[[^:]+[,: ][0-9]+\\]\\)?[ \t]*re[\\^[:> ]"
333   "*If message does not have in-reply-to field nor references field and
334 subject matches this regexp, search parent message by subject matching.
335 If nil, never search search parent by subject."
336   :type '(choice string
337                  (const :tag "Don't search parent" nil))
338   :group 'wl-summary)
339
340 ;;; Mark & Action
341 (defcustom wl-summary-mark-action-list
342   '(("*"
343      target-mark
344      nil
345      wl-summary-register-target-mark
346      nil
347      wl-highlight-summary-temp-face
348      "Put target mark.")
349     ("d"
350      dispose
351      nil
352      wl-summary-register-temp-mark
353      wl-summary-exec-action-dispose
354      wl-highlight-summary-disposed-face
355      "Dispose messages according to `wl-dispose-folder-alist'.")
356     ("D"
357      delete
358      nil
359      wl-summary-register-temp-mark
360      wl-summary-exec-action-delete
361      wl-highlight-summary-deleted-face
362      "Delete messages immediately.")
363     ("o"
364      refile
365      wl-summary-get-refile-destination
366      wl-summary-set-action-refile
367      wl-summary-exec-action-refile
368      wl-highlight-summary-refiled-face
369      "Refile messages to the other folder.")
370     ("O"
371      copy
372      wl-summary-get-copy-destination
373      wl-summary-register-temp-mark
374      wl-summary-exec-action-copy
375      wl-highlight-summary-copied-face
376      "Copy messages to the other folder.")
377     ("i"
378      prefetch
379      nil
380      wl-summary-register-temp-mark
381      wl-summary-exec-action-prefetch
382      wl-highlight-summary-prefetch-face
383      "Prefetch messages.")
384     ("~"
385      resend
386      wl-summary-get-resend-address
387      wl-summary-register-temp-mark
388      wl-summary-exec-action-resend
389      wl-highlight-summary-resend-face
390      "Resend messages."))
391   "A variable to define Mark & Action.
392 Each element of the list should be a list of
393 \(MARK
394   SYMBOL
395   ARGUMENT-FUNCTION
396   SET-MARK-FUNCTION
397   EXEC-FUNCTION
398   FACE
399   DOC-STRING)
400
401 MARK is a temporal mark string to define.
402 SYMBOL is an action name to define.
403 ARGUMENT-FUNCTION is a function called to set the argument data for
404 SET-MARK-FUNCTION.
405 Its argument is (ACTION NUMBER).
406 ACTION is same as the SYMBOL.
407 NUMBER is the message number to determine the argument data.
408 SET-MARK-FUNCTION is a function called to set the mark.
409 Its argument is (NUMBER MARK DATA).
410 NUMBER is the target message number.
411 MARK is the temporary mark string.
412 DATA is given by ARGUMENT-FUNCTION.
413 EXEC-FUNCTION is a function called to execute the action.
414 Its argument is a list of MARK-INFO.
415 MARK-INFO is a list of (NUMBER MARK DATA).
416 FACE is a face for highlighting."
417   :type '(repeat (list
418                   (string :tag "Temporary mark")
419                   (symbol :tag "Action name")
420                   (symbol :tag "Argument function")
421                   (symbol :tag "Set mark function")
422                   (symbol :tag "Exec function")
423                   (symbol :tag "Face symbol")
424                   (string :tag "Document string")))
425   :group 'wl-summary)
426
427 ;; Important folders
428 (defcustom wl-default-folder "%inbox"
429   "*Default folder used in `wl-summary-goto-folder'."
430   :type 'string
431   :group 'wl)
432 (defcustom wl-draft-folder "+draft"
433   "*Draft folder"
434   :type 'string
435   :group 'wl)
436 (defcustom wl-trash-folder "+trash"
437   "*Trash folder"
438   :type 'string
439   :group 'wl
440   :group 'wl-setting)
441 (defcustom wl-queue-folder "+queue"
442   "*Queue folder"
443   :type 'string
444   :group 'wl)
445
446 (defcustom wl-default-spec "%"
447   "*Default prefix for folder name initially added in minibuffer"
448   :type 'string
449   :group 'wl)
450
451 (defcustom wl-insert-mail-followup-to nil
452   "*Insert Mail-Followup-To: field if non-nil."
453   :type 'boolean
454   :group 'wl-draft)
455
456 (defcustom wl-insert-mail-reply-to nil
457   "*Insert Mail-Reply-To: field if non-nil."
458   :type 'boolean
459   :group 'wl-draft)
460
461 (defcustom wl-insert-message-id t
462   "*Insert Message-ID: field if non-nil."
463   :type 'boolean
464   :group 'wl-draft)
465
466 (defcustom wl-auto-insert-x-face t
467   "*Insert X-Face: field automatically."
468   :type 'boolean
469   :group 'wl-draft)
470
471 (defcustom wl-x-face-file "~/.xface"
472   "*X-Face field is inserted using its contents.
473 If file exists and `wl-auto-insert-x-face' is non-nil."
474   :type 'file
475   :group 'wl-draft)
476
477 (defcustom wl-draft-write-file-function 'wl-draft-save
478   "Save function for draft message."
479   :type 'function
480   :group 'wl-draft)
481
482 (defcustom wl-subscribed-mailing-list nil
483   "*Subscribed mailing list.
484 You had better set this variable if you set 'wl-insert-mail-followup-to' as t."
485   :type '(repeat string)
486   :group 'wl-pref
487   :group 'wl-setting)
488
489 (defcustom wl-demo t
490   "*Display demo at start time."
491   :type 'boolean
492   :group 'wl-pref)
493
494 (defcustom wl-demo-icon-name-alist
495   '(((string-match "^... Dec \\([ 01][0-9]\\|2[0-5]\\)" (current-time-string))
496      .
497      (concat "wl-" (wl-version-status) "-xmas-logo"))
498     (t
499      .
500      (concat "wl-" (wl-version-status) "-logo")))
501   "An alist to determine the basename of the logo file."
502   :type '(repeat (cons (symbol :tag "condition")
503                        (symbol :tag "file name")))
504   :group 'wl-pref)
505
506 (defcustom wl-demo-image-filter-alist nil
507   "An alist of image type and filter function."
508   :type '(repeat (cons symbol function))
509   :group 'wl-pref)
510
511 (defcustom wl-envelope-from nil
512   "*Envelope From used in SMTP.
513 If nil, `wl-from' is used."
514   :type '(choice (const :tag "Same as 'From' field." nil)
515                  string)
516   :group 'wl
517   :group 'wl-setting)
518
519 (defcustom wl-draft-additional-header-alist nil
520   "*Additional headers in the draft."
521   :type '(repeat (cons (symbol :tag "Field Name")
522                        (choice (string :tag "String")
523                                (function :tag "Function")))))
524
525 (defcustom wl-draft-add-in-reply-to t
526   "*If non-nil, message-id of the cited message is inserted to the
527 in-reply-to field of the current draft."
528   :type 'boolean
529   :group 'wl)
530
531 (defcustom wl-draft-add-references nil
532   "*If non-nil, message-id of the cited message is inserted to the
533 references field of the current draft."
534   :type 'boolean
535   :group 'wl)
536
537 (defcustom wl-draft-cite-function 'wl-default-draft-cite
538   "*A function for citation."
539   :type 'function
540   :group 'wl-draft)
541
542 (defcustom wl-default-draft-cite-decorate-author t
543   "*If non-nil, the author of cited message is arranged by
544 `wl-summary-from-func-internal' in `wl-default-draft-cite'."
545   :type 'boolean
546   :group 'wl-draft)
547
548 (defcustom wl-smtp-connection-type nil
549   "*SMTP connection type.
550 If nil, default smtp connection type is used."
551   :type '(choice (const :tag "default" nil)
552                  (const :tag "Use STARTTLS" starttls)
553                  (const :tag "SMTP over SSL" ssl)
554                  symbol)
555   :group 'wl)
556
557 (defcustom wl-smtp-posting-user nil
558   "*SMTP authentication user."
559   :type '(choice (const :tag "none" nil)
560                  string)
561   :group 'wl
562   :group 'wl-setting)
563
564 (defcustom wl-smtp-posting-server nil
565   "*SMTP server name to send mail (wl-draft-send-mail-with-smtp)."
566   :type '(choice (const :tag "none" nil)
567                  string)
568   :group 'wl
569   :group 'wl-setting)
570
571 (defcustom wl-smtp-posting-port nil
572   "*SMTP port number in `wl-smtp-posting-server'.
573 If nil, default SMTP port number(25) is used."
574   :type '(choice (const :tag "Default (25)" nil)
575                  integer)
576   :group 'wl
577   :group 'wl-setting)
578
579 (defcustom wl-smtp-authenticate-type nil
580   "*SMTP Authentication type.
581 If nil, don't authenticate."
582   :type '(choice (const :tag "none" nil)
583                  (const :tag "PLAIN" "plain")
584                  (const :tag "CRAM-MD5" "cram-md5")
585                  (const :tag "DIGEST-MD5" "digest-md5")
586                  (const :tag "LOGIN" "login")
587                  (string :tag "Other"))
588   :group 'wl
589   :group 'wl-setting)
590
591 (defcustom wl-pop-before-smtp-user nil
592   "*POP3 user name to send mail using POP-before-SMTP.
593 If nil, `elmo-pop3-default-user' is used.
594 To use POP-before-SMTP,
595 \(setq wl-draft-send-mail-function 'wl-draft-send-mail-with-pop-before-smtp)"
596   :type '(choice (const :tag "none" nil)
597                  string)
598   :group 'wl
599   :group 'wl-setting)
600
601 (defcustom wl-pop-before-smtp-server nil
602   "*POP3 server for POP-before-SMTP.
603 If nil, `elmo-pop3-default-server' is used."
604   :type '(choice (const :tag "none" nil)
605                  string)
606   :group 'wl
607   :group 'wl-setting)
608
609 (defcustom wl-pop-before-smtp-port nil
610   "*POP3 port for POP-before-SMTP.
611 If nil, `elmo-pop3-default-port' is used."
612   :type '(choice (const :tag "none" nil)
613                  integer string)
614   :group 'wl
615   :group 'wl-setting)
616
617 (defcustom wl-pop-before-smtp-stream-type nil
618   "*Stream type for POP-before-SMTP.
619 If nil, `elmo-pop3-default-stream-type' is used."
620   :type 'boolean
621   :group 'wl)
622
623 (defcustom wl-pop-before-smtp-authenticate-type nil
624   "*Default Authentication type for POP-before-SMTP.
625 If nil, `elmo-pop3-default-authenticate-type' is used."
626   :type '(choice (const :tag "none" nil)
627                  (const :tag "APOP" 'apop)
628                  (const :tag "POP3" 'user))
629   :group 'wl
630   :group 'wl-setting)
631
632 (defcustom wl-nntp-posting-server nil
633   "*NNTP server name to post news.
634 If nil, `elmo-nntp-default-server' is used."
635   :type '(choice (const :tag "none" nil)
636                  string)
637   :group 'wl
638   :group 'wl-setting)
639 (defcustom wl-nntp-posting-user nil
640   "*NNTP user name to post news for authinfo.
641 If nil, `elmo-nntp-default-user' is used.
642 If nil, don't authenticate."
643   :type '(choice (const :tag "none" nil)
644                  string)
645   :group 'wl
646   :group 'wl-setting)
647 (defcustom wl-nntp-posting-port nil
648   "*NNTP port to post news.
649 If nil, `elmo-nntp-default-port' is used."
650   :type '(choice (const :tag "none" nil)
651                  integer string)
652   :group 'wl
653   :group 'wl-setting)
654 (defcustom wl-nntp-posting-stream-type nil
655   "*Stream type for posting Netnews.
656 If nil, `elmo-nntp-default-stream-type' is used."
657   :type 'boolean
658   :group 'wl)
659 (defcustom wl-nntp-posting-function 'elmo-nntp-post
660   "A function to post news.
661 Prepared candidate is 'elmo-nntp-post."
662   :type '(radio (function-item elmo-nntp-post)
663                 (function :tag "Other"))
664   :group 'wl-draft)
665 (defcustom wl-nntp-posting-config-alist nil
666   "*Alist of configuration on nntp posting.
667 ex.
668 '((\",?local.test\" . \"news.media.kyoto-u.ac.jp\")
669   (\",?ku\\.\" .
670    ((server . \"news.media.kyoto-u.ac.jp\")
671     (user . \"newsmaster\")
672     (port . 119)
673     (function . elmo-nntp-post))
674   (\".*\" . \"newsfeed.kuee.kyoto-u.ac.jp\")))"
675   :type '(repeat (cons (sexp :tag "Match")
676                        (choice (string :tag "Server")
677                                (repeat :inlie t
678                                        (cons (choice (const server)
679                                                      (const user)
680                                                      (const port)
681                                                      (const stream-type)
682                                                      (const function))
683                                              (sexp :tag "Value"))))))
684   :group 'wl-draft
685   :group 'wl-setting)
686
687 (defcustom wl-prefetch-confirm t
688   "*Confirm prefetching if message size is larger than `wl-prefetch-threshold'."
689   :type 'boolean
690   :group 'wl-pref)
691
692 (defcustom wl-prefetch-threshold 30000
693   "*Maximum size of message prefetched without confirmation.
694 If nil, all messages prefetched regardless of its size.
695 If message size is larger than this value, confirm prefetching
696 when `wl-prefetch-confirm' is non-nil."
697   :type '(choice (integer :tag "Threshold (bytes)")
698                  (const :tag "No limitation" nil))
699   :group 'wl-pref
700   :group 'wl-setting)
701
702 (defcustom wl-thread-insert-opened nil
703   "*Non-nil forces to insert thread as opened in updating."
704   :type 'boolean
705   :group 'wl-summary
706   :group 'wl-setting)
707
708 (defcustom wl-thread-open-reading-thread t
709   "*Non-nil forces to open reading thread."
710   :type 'boolean
711   :group 'wl-summary)
712
713 ;;;; Hooks
714 (defvar wl-folder-mode-hook nil
715   "A hook called when wanderlust folder mode is started.
716 This hook may contain the functions `wl-folder-init-icons' and
717 `wl-setup-folder' for reasons of system internal to accord facilities
718 for the Emacs variants.")
719 (defvar wl-summary-toggle-disp-on-hook nil
720   "A hook called when message is toggled.")
721 (defvar wl-summary-toggle-disp-off-hook nil
722   "A hook called when message is disappeared.")
723 (defvar wl-summary-toggle-disp-folder-on-hook nil
724   "A hook called when folder is toggled.")
725 (defvar wl-summary-toggle-disp-folder-off-hook nil
726   "A hook called when folder is disappeared.")
727 (defvar wl-summary-toggle-disp-folder-message-resumed-hook nil
728   "A hook called when message window is resumed when folder is toggled.")
729 (defvar wl-summary-mode-hook nil
730   "A hook called when summary mode is started.
731 This hook may contain the function `wl-setup-summary' for reasons of
732 system internal to accord facilities for the Emacs variants.")
733
734 (defvar wl-summary-prepared-pre-hook nil
735   "A hook called before the summary buffer has been generated.")
736 (defvar wl-summary-prepared-hook nil
737   "A hook called after the summary buffer has been generated.")
738 (defvar wl-summary-sync-updated-hook nil
739   "A hook called when update summary buffer.")
740 (defvar wl-summary-unread-message-hook nil
741   "A hook called when unread message is displayed.")
742 (defvar wl-summary-edit-addresses-hook nil
743   "A hook called when address book is edited.")
744 (defvar wl-summary-buffer-message-saved-hook nil
745   "A hook called when msgdb is saved.")
746 (defvar wl-summary-buffer-mark-saved-hook nil
747   "A hook called when mark is saved.")
748 (defvar wl-summary-divide-thread-when-subject-changed nil
749   "Divide thread when subject is changed.")
750 (defvar wl-init-hook nil
751   "A hook called when initialization is finished.  This hook may contain
752 the functions `wl-plugged-init-icons' and `wl-biff-init-icons' for
753 reasons of system internal to accord facilities for the Emacs variants.")
754 (defvar wl-hook nil
755   "A hook called when Wanderlust is invoked.")
756
757 (defvar wl-draft-reply-hook
758   '((lambda () (wl-draft-setup-parent-flag 'answered)))
759   "A hook called when replied.
760 This hook runs on the draft buffer.")
761
762 (defvar wl-draft-forward-hook
763   '((lambda () (wl-draft-setup-parent-flag 'forwarded)))
764   "A hook called when forwarded.
765 This hook runs on the draft buffer.")
766
767 (defvar wl-draft-kill-pre-hook nil
768   "A hook called just before the draft buffer is killed.")
769
770 (defvar wl-summary-reply-hook nil
771   "A hook called when `wl-summary-reply' is called.
772 This hook runs on the summary buffer.")
773
774 (defvar wl-summary-forward-hook nil
775   "A hook called when `wl-summary-forward' is called.
776 This hook runs on the summary buffer.")
777
778 (defvar wl-summary-resend-hook nil
779   "A hook runs on the resent message buffer before sending process starts.")
780
781 (defvar wl-mail-setup-hook nil
782   "A hook called when Draft is prepared.")
783 (defvar wl-draft-reedit-hook '(wl-draft-remove-text-plain-tag)
784   "A hook called when Draft is re-edited.
785 The cursor point is located at top of the body.")
786 (defvar wl-draft-send-hook '(wl-draft-config-exec)
787   "A hook called on the draft editing buffer before sending process starts.")
788 (defvar wl-mail-send-pre-hook nil
789   "A hook called just before the mail sending process starts.")
790 (defvar wl-news-send-pre-hook nil
791   "A hook called just before the news sending process starts.")
792 (defvar wl-message-buffer-created-hook nil
793   "A hook called when Message buffer is prepared.")
794 (defvar wl-message-redisplay-hook nil
795   "A hook called when Message is displayed.")
796 (defvar wl-message-exit-hook nil
797   "A hook called when quit message.")
798 (defvar wl-summary-exit-pre-hook nil
799   "A hook called before exit summary mode.")
800 (defvar wl-summary-exit-hook nil
801   "A hook called when exit summary mode.")
802 (defvar wl-highlight-headers-hook nil
803   "A hook called when header is highlighted.")
804 (defvar wl-highlight-message-hook nil
805   "A hook called when message is highlighted.")
806 (defvar wl-save-hook nil
807   "A hook called when save summary and folder status.")
808 (defvar wl-exit-hook nil
809   "A hook called when exit wanderlust.")
810 (defvar wl-folder-suspend-hook nil
811   "A hook called when suspend wanderlust.")
812 (defvar wl-biff-notify-hook '(ding)
813   "A hook called when a biff-notification is invoked.")
814 (defvar wl-biff-unnotify-hook nil
815   "A hook called when a biff-notification is removed.")
816 (defvar wl-auto-check-folder-pre-hook nil
817   "A hook called before auto check folders.")
818 (defvar wl-auto-check-folder-hook nil
819   "A hook called when auto check folders.")
820 (defvar wl-folder-check-entity-pre-hook nil
821   "A hook called before check entity.")
822 (defvar wl-folder-check-entity-hook nil
823   "A hook called when check entity.")
824 (defvar wl-draft-config-exec-hook nil
825   "A hook called when execute header-config on draft.")
826 (defvar wl-summary-expire-pre-hook nil
827   "A hook called before expire.")
828 (defvar wl-summary-expire-hook nil
829   "A hook called when expired.")
830 (defvar wl-summary-archive-pre-hook nil
831   "A hook called before archive.")
832 (defvar wl-summary-archive-hook nil
833   "A hook called when archived.")
834 (defvar wl-summary-line-inserted-hook nil
835   "A hook called when summary line is inserted.")
836 (defvar wl-summary-insert-headers-hook nil
837   "A hook called when insert header for search header.")
838 (defvar wl-message-display-internal-hook nil
839   "A hook called when message buffer is created and message is displayed.
840 This hook may contain the functions `wl-setup-message' for
841 reasons of system internal to accord facilities for the Emacs variants.")
842 (defvar wl-thread-update-children-number-hook nil
843   "A hook called when children number is updated.")
844 (defvar wl-folder-update-access-group-hook nil
845   "A hook called when update access group folder.")
846 (defvar wl-draft-cited-hook nil
847   "A hook called after a message is cited.")
848 (defvar wl-draft-insert-x-face-field-hook nil
849   "A hook called after a x-face field is inserted.")
850 (defvar wl-template-mode-hook nil
851   "A hook called when template mode is started.")
852 (defvar wl-score-mode-hook nil
853   "A hook called when score mode is started.")
854 (defvar wl-make-plugged-hook nil
855   "A hook called when make plugged alist.")
856
857 (defvar wl-plugged-exit-hook nil
858   "A hook called when exit plugged mode.")
859
860 ;;;; functions for draft
861 (defcustom wl-draft-send-function 'wl-draft-normal-send-func
862   "A function to send message."
863   :type 'function
864   :group 'wl-draft)
865
866 (defcustom wl-draft-send-news-function 'wl-draft-elmo-nntp-send
867   "A function to send news."
868   :type 'function
869   :group 'wl-draft)
870
871 (defcustom wl-draft-send-mail-function 'wl-draft-send-mail-with-smtp
872   "A function to send mail.
873 Prepared candidates are 'wl-draft-send-mail-with-smtp,
874 'wl-draft-send-mail-with-qmail and 'wl-draft-send-mail-with-pop-before-smtp."
875   :type '(radio (function-item wl-draft-send-mail-with-smtp)
876                 (function-item wl-draft-send-mail-with-qmail)
877                 (function-item wl-draft-send-mail-with-pop-before-smtp)
878                 (function :tag "Other"))
879   :group 'wl-draft)
880
881 (defcustom wl-draft-reply-with-argument-list
882   '(("From" . (("Reply-To" "Mail-Reply-To" "From")
883                ("Mail-Followup-To" "To" "Cc")
884                ("Followup-To" "Newsgroups"))))
885   "Alist of cons cell of
886 \('condition' .  ('fields for To' 'fields for Cc' 'fields for Newsgroups'))
887 'condition' is a header name string (non-nil if the header exists in original
888 message), a function (evaluated in original message buffer) or a list of those
889 \(means 'AND' condition).
890 'fields for ***' is a list of strings.
891 If car of each cons cell returns non-nil value,
892 cdr of each cons cell is used for preparing headers of draft message.
893 Default is for 'reply-to-all'."
894   :type '(repeat (cons (choice (string :tag "Field Name")
895                                (symbol :tag "Function")
896                                (const :tag "Replying to self" wl-draft-self-reply-p)
897                                (repeat :tag "AND"
898                                        (choice (string :tag "Field Name")
899                                                (symbol :tag "Function")
900                                                (const :tag "Replying to self" wl-draft-self-reply-p))))
901                        (list (repeat :tag "Fields For To" string)
902                              (repeat :tag "Fields For Cc" string)
903                              (repeat :tag "Fields For Newsgroups" string))))
904   :group 'wl-draft)
905
906 (defcustom wl-draft-reply-without-argument-list
907   '(("Followup-To" . (("Mail-Followup-To" "Mail-Reply-To" "Reply-To") nil ("Followup-To")))
908     ("Mail-Followup-To" . (("Mail-Followup-To") nil nil))
909     ("Newsgroups" . (("Mail-Reply-To" "Reply-To" "To") ("Cc") ("Newsgroups")))
910     ("Mail-Reply-To" . (("Mail-Reply-To" "Reply-To") ("To" "Cc") nil))
911     ("Reply-To" . (("Reply-To") ("To" "Cc") nil))
912     (wl-draft-self-reply-p . (("To") ("Cc") nil))
913     ("From" . (("From") ("To" "Cc") nil)))
914   "Alist of cons cell of
915 \('condition' .  ('fields for To' 'fields for Cc' 'fields for Newsgroups'))
916 'condition' is a header name string (non-nil if the header exists in original
917 message), a function (evaluated in original message buffer) or a list of those
918 \(means 'AND' condition).
919 'fields for ***' is a list of strings.
920 If car of each cons cell returns non-nil value,
921 cdr of each cons cell is used for preparing headers of draft message."
922   :type '(repeat (cons (choice (string :tag "Field Name")
923                                (symbol :tag "Function")
924                                (const :tag "Replying to self" wl-draft-self-reply-p)
925                                (repeat :tag "AND"
926                                        (choice (string :tag "Field Name")
927                                                (symbol :tag "Function")
928                                                (const :tag "Replying to self" wl-draft-self-reply-p))))
929                        (list (repeat :tag "Fields For To" string)
930                              (repeat :tag "Fields For Cc" string)
931                              (repeat :tag "Fields For Newsgroups" string))))
932   :group 'wl-draft)
933
934 (defcustom wl-draft-always-delete-myself nil
935   "*Always delete myself from recipient if non-nil."
936   :type 'boolean
937   :group 'wl-draft)
938
939 (defcustom wl-draft-delete-myself-from-bcc-fcc nil
940   "*Do not insert bcc or fcc if To and Cc fields is a member of
941 `wl-subscribed-mailing-list'"
942   :type 'boolean
943   :group 'wl-draft)
944
945 (defcustom wl-draft-resume-folder-window t
946   "*Resume folder window in `wl-draft-hide'."
947   :type 'boolean
948   :group 'wl-draft)
949
950 (defcustom wl-draft-use-frame nil
951   "*Raise new frame when composing draft."
952   :type 'boolean
953   :group 'wl-draft)
954
955 (defcustom wl-draft-qmail-send-plugged nil
956   "*Send mail when plugged is on, in the `wl-draft-send-mail-with-qmail'."
957   :type 'boolean
958   :group 'wl-draft)
959
960 (defcustom wl-draft-remove-group-list-contents t
961   "*If non-nil, remove group list contents in `wl-draft-send-mail-with-smtp'."
962   :type 'boolean
963   :group 'wl-draft)
964
965 ;;;;
966 (defcustom wl-init-file "~/.wl"
967   "*User customization setting file."
968   :type 'file
969   :group 'wl)
970
971 (defcustom wl-folders-file "~/.folders"
972   "*Folders file."
973   :type 'file
974   :group 'wl)
975
976 (defcustom wl-address-file "~/.addresses"
977   "*Addresses file."
978   :type 'file
979   :group 'wl)
980
981 (defcustom wl-alias-file "~/.im/Aliases"
982   "*Alias file for completion."
983   :type 'file
984   :group 'wl)
985
986 (defcustom wl-ldap-server nil
987   "*LDAP server."
988   :type '(choice (const :tag "Default server(localhost)" nil)
989                  (string :tag "Server"))
990   :group 'wl
991   :group 'wl-setting)
992
993 (defcustom wl-ldap-port nil
994   "*LDAP port."
995   :type '(choice (const :tag "Default port" nil)
996                  integer)
997   :group 'wl
998   :group 'wl-setting)
999
1000 (defcustom wl-ldap-base nil
1001   "*LDAP base."
1002   :type '(choice (const :tag "Default base" nil)
1003                  (string :tag "Base"))
1004   :group 'wl
1005   :group 'wl-setting)
1006
1007 (defcustom wl-use-ldap nil
1008   "*If non-nil, use LDAP for address completion."
1009   :type 'boolean
1010   :group 'wl
1011   :group 'wl-setting)
1012
1013 (defcustom wl-use-acap nil
1014   "*If non-nil, use ACAP for configuration."
1015   :type 'boolean
1016   :group 'wl)
1017
1018 (defcustom wl-folder-info-save t
1019   "If non-nil, save elmo-folder-info-alist."
1020   :type 'boolean
1021   :group 'wl-folder)
1022
1023 (defcustom wl-summary-persistent-mark-priority-list '(flag
1024                                                       new
1025                                                       answered
1026                                                       forwarded
1027                                                       unread)
1028   "List of preserved flag symbols to define the priority to map\
1029 to the persistent mark.
1030 Special symbol `flag' means the user defined flag."
1031   :type '(repeat (symbol :tag "preserved flag"))
1032   :group 'wl-summary)
1033
1034 (defcustom wl-summary-flag-alist
1035   '((important "orange"))
1036   "An alist to define the global flags for the summary mode.
1037 Each element is a form like:
1038 \(SYMBOL-OF-FLAG COLOR [MARK]\)
1039 Example:
1040 \((important \"orange\"\)
1041  \(todo \"red\" \"T\"\)
1042  \(business \"green\" \"B\"\)
1043  \(private \"blue\"\)\)"
1044   :type '(repeat (list (symbol :tag "flag")
1045                        (string :tag "color")
1046                        (choice (string :tag "mark")
1047                                (const :tag "Default mark" nil))))
1048   :group 'wl-summary)
1049
1050 (defcustom wl-summary-uncached-mark "!"
1051   "Mark for uncached message with no flag."
1052   :type '(string :tag "Mark")
1053   :group 'wl-summary-marks)
1054
1055 (defcustom wl-summary-new-uncached-mark "N"
1056   "Mark for new and uncached message."
1057   :type '(string :tag "Mark")
1058   :group 'wl-summary-marks)
1059
1060 (defcustom wl-summary-new-cached-mark "n"
1061   "Mark for new but already cached message."
1062   :type '(string :tag "Mark")
1063   :group 'wl-summary-marks)
1064
1065 (defcustom wl-summary-unread-uncached-mark "U"
1066   "Mark for unread and uncached message."
1067   :type '(string :tag "Mark")
1068   :group 'wl-summary-marks)
1069
1070 (defcustom wl-summary-unread-cached-mark "u"
1071   "Mark for unread but already cached message."
1072   :type '(string :tag "Mark")
1073   :group 'wl-summary-marks)
1074
1075 (defcustom wl-summary-answered-cached-mark "a"
1076   "Mark for answered and cached message."
1077   :type '(string :tag "Mark")
1078   :group 'wl-summary-marks)
1079
1080 (defcustom wl-summary-answered-uncached-mark "A"
1081   "Mark for answered but uncached message."
1082   :type '(string :tag "Mark")
1083   :group 'wl-summary-marks)
1084
1085 (defcustom wl-summary-flag-mark "$"
1086   "Mark for the messages which have tags."
1087   :type '(string :tag "Mark")
1088   :group 'wl-summary-marks)
1089
1090 (defcustom wl-summary-score-over-mark "+"
1091   "Score mark used for messages with high scores."
1092   :type '(string :tag "Mark")
1093   :group 'wl-summary-marks)
1094
1095 (defcustom wl-summary-score-below-mark "-"
1096   "Score mark used for messages with low scores."
1097   :type '(string :tag "Mark")
1098   :group 'wl-summary-marks)
1099
1100 (defcustom wl-summary-no-mime-folder-list nil
1101   "*All folders that match this list don't analysis mime."
1102   :type '(repeat string)
1103   :group 'wl-summary)
1104
1105 (defcustom wl-summary-fix-timezone nil
1106   "*Time zone of the date string in summary mode.
1107 If nil, it is adjust to the default time zone information
1108 \(system's default time zone or environment variable TZ)."
1109   :type '(choice (const :tag "Default time zone" nil)
1110                  string)
1111   :group 'wl-summary)
1112
1113 (defcustom wl-summary-default-score 0
1114   "*Default message score level.
1115 All scores generated by the score files will be added to this score.
1116 If this variable is nil, scoring will be disabled."
1117   :type '(choice (const :tag "disable" nil)
1118                  integer)
1119   :group 'wl-score)
1120
1121 (defcustom wl-summary-important-above nil
1122   "*Mark all messages with a score above this variable as important.
1123 This variable is local to the summary buffers."
1124   :type '(choice (const :tag "off" nil)
1125                  integer)
1126   :group 'wl-score)
1127
1128 (defcustom wl-summary-target-above nil
1129   "*Mark all messages with a score above this variable as target.
1130 This variable is local to the summary buffers."
1131   :type '(choice (const :tag "off" nil)
1132                  integer)
1133   :group 'wl-score)
1134
1135 (defcustom wl-summary-mark-below 0
1136   "*Mark all messages with a score below this variable as read.
1137 This variable is local to each summary buffer and usually set by the
1138 score file."
1139   :type 'integer
1140   :group 'wl-score)
1141
1142 (defcustom wl-summary-expunge-below nil
1143   "All messages that have a score less than this variable will be expunged.
1144 This variable is local to the summary buffers."
1145   :type '(choice (const :tag "off" nil)
1146                  integer)
1147   :group 'wl-score)
1148
1149 (defcustom wl-summary-score-marks
1150   (list wl-summary-new-uncached-mark wl-summary-new-cached-mark)
1151   "Persistent marks to scoring."
1152   :type '(repeat (string :tag "Mark"))
1153   :group 'wl-score)
1154
1155 (defcustom wl-use-scoring t
1156   "*If non-nil, enable scoring."
1157   :type 'boolean
1158   :group 'wl-pref)
1159
1160 (defcustom wl-summary-rescore-partial-threshold 200
1161   "*Summary is not scored entirely if there are messages more than this value.
1162 In sync-all or rescan."
1163   :type 'integer
1164   :group 'wl-score)
1165
1166 (defcustom wl-score-files-directory (concat elmo-msgdb-directory elmo-path-sep)
1167   "*Name of the directory where score files will be stored.
1168 (default \"~/.elmo\")."
1169   :type 'directory
1170   :group 'wl)
1171
1172 (defcustom wl-score-interactive-default-score 1000
1173   "*Scoring commands will raise/lower the score with this number as the default."
1174   :type 'integer
1175   :group 'wl-score)
1176
1177 (defcustom wl-score-expiry-days 7
1178   "*Number of days before unused score file entries are expired.
1179 If this variable is nil, no score file entries will be expired."
1180   :type '(choice (const :tag "never" nil)
1181                  number)
1182   :group 'wl-score)
1183
1184 (defcustom wl-score-update-entry-dates t
1185   "*In non-nil, update matching score entry dates.
1186 If this variable is nil, then score entries that provide matches
1187 will be expired along with non-matching score entries."
1188   :type 'boolean
1189   :group 'wl-score)
1190
1191 (defcustom wl-score-folder-alist nil
1192   "*Alist of folder regexp and score file."
1193   :type '(repeat (list (regexp :tag "Folder Regexp")
1194                        (repeat :inline t
1195                                (choice file
1196                                        (symbol :tag "Variable")))))
1197   :group 'wl-score)
1198
1199 (defcustom wl-score-folder-alist-matchone t
1200   "*If non-nil, getting only one element of `wl-score-folder-alist'."
1201   :type 'boolean
1202   :group 'wl-score)
1203
1204 (defcustom wl-score-default-file "all.SCORE"
1205   "*Default score file name."
1206   :type 'file
1207   :group 'wl-score)
1208
1209 (defcustom wl-score-simplify-fuzzy-regexp
1210   '("^[ \t]*\\[[^:]+[,: ][0-9]+\\][ \t]*")
1211   "*Strings to be removed when doing fuzzy matches.
1212 This can either be a regular expression or list of regular expressions."
1213   :type '(repeat regexp)
1214   :group 'wl-score)
1215
1216 (defcustom wl-score-header-default-entry
1217   '(("number" -1000 perm =)
1218     ("subject" -1000 nil nil)
1219     ("from" -1000 perm s)
1220     ("message-id" -1000 temp e)
1221     ("references" -1000 perm e)
1222     ("to" -1000 perm s)
1223     ("cc" -1000 perm s)
1224     ("date" -1000 temp nil)
1225     ("xref" -1000 perm s)
1226     ("extra" -1000 perm s)
1227     ("chars" -1000 perm >)
1228     ("lines" -1000 perm >)
1229     ("followup" -1000 perm s)
1230     ("thread" -1000 temp s))
1231   "*Default entry when insert score entry."
1232   :type '(repeat (list (string :tag "Header")
1233                        (choice (integer :tag "Score")
1234                                (const :tag "Ask" nil))
1235                        (choice (const :tag "Permanent" perm)
1236                                (const :tag "Temporary" temp)
1237                                (const :tag "Ask" nil))
1238                        (choice (const :tag "Regexp string" r)
1239                                (const :tag "Substring" s)
1240                                (const :tag "fuzzy string" f)
1241                                (const :tag "Exact string" e)
1242                                (const :tag "REGEXP STRING" R)
1243                                (const :tag "SUBSTRING" S)
1244                                (const :tag "FUZZY STRING" F)
1245                                (const :tag "EXACT STRING" E)
1246                                (const :tag "less than" <)
1247                                (const :tag "less equal" <=)
1248                                (const :tag "greater than" >)
1249                                (const :tag "greater equal" >=)
1250                                (const :tag "equal" =)
1251                                (const :tag "Ask" nil))))
1252   :group 'wl-score)
1253
1254 (defcustom wl-score-mode-mime-charset 'x-ctext
1255   "*MIME Charset for score file."
1256   :type 'symbol
1257   :group 'wl-score)
1258
1259 (defcustom wl-draft-fields
1260   '("To:" "Cc:" "Bcc:" "Fcc:" "Distribution:" "Organization:"
1261     "Newsgroups:" "Followup-To:" "Mail-Followup-To:" "From:" "Reply-To:")
1262   "Fields used in draft mode."
1263   :type '(repeat (string :tag "Field"))
1264   :group 'wl-draft)
1265
1266 ;; MIME Bcc.
1267 (defcustom wl-draft-mime-bcc-field-name "Ecc"
1268   "Field name for MIME-encapsulated Bcc."
1269   :type '(string :tag "Field Name")
1270   :group 'wl-draft)
1271
1272 (defcustom wl-draft-mime-bcc-body nil
1273   "Body string for MIME-encapsulated Bcc.
1274 If nil, a string `This is a blind carbon copy.' is used."
1275   :type '(choice (const :tag "default" nil)
1276                  (string :tag "Body"))
1277   :group 'wl-draft)
1278
1279 (defcustom wl-draft-disable-bcc-for-mime-bcc t
1280   "Disable Bcc while MIME-encapsulated Bcc."
1281   :type 'boolean
1282   :group 'wl-draft)
1283
1284 (defcustom wl-draft-disable-fcc-for-mime-bcc t
1285   "Disable Fcc while MIME-encapsulated Bcc."
1286   :type 'boolean
1287   :group 'wl-draft)
1288
1289 (defcustom wl-draft-config-alist nil
1290   "Alist of condition and actions for dynamical draft modification.
1291 First element of each list is some condition for the draft buffer (regular
1292 expression for header or elisp expression) and remaining elements indicate
1293 actions.
1294 If the first element is `reply' keyword, the next element be the condition
1295 for the message being replied, and remaining elements are actions.
1296
1297 The configuration is applied when `wl-draft-config-exec' is called, or
1298 applied automatically before sending message.
1299
1300 ex.
1301 '((\"^To: .*wl@lists.airs.net\"
1302    (\"From\" . my-from-address-for-wl-list)
1303    (\"Organization\" . my-organization-for-wl-list))
1304   (reply
1305    \"^To: .*hogehoge@aaa.ne.jp\"
1306    (\"From\" . \"Alternative Address <hogehoge@aaa.ne.jp>\")
1307    my-draft-config-function-hogehoge))
1308
1309 See also variable `wl-draft-parent-folder'."
1310   :type '(repeat (list (sexp :tag "Match")
1311                        (repeat
1312                         :inline t
1313                         (choice (cons (sexp :tag "Field(Variable)")
1314                                       (sexp :tag "Value"))
1315                                 (sexp :tag "Function")))))
1316   :group 'wl-draft
1317   :group 'wl-setting)
1318
1319 (defcustom wl-draft-config-matchone nil
1320   "*If non-nil, applied only one element of `wl-draft-config-alist'."
1321   :type 'boolean
1322   :group 'wl-draft
1323   :group 'wl-setting)
1324
1325 (defcustom wl-draft-elide-ellipsis "\n[...]\n\n"
1326   "*The string which is inserted for elided text."
1327   :type 'string
1328   :group 'wl-draft)
1329
1330 (defcustom wl-template-alist nil
1331   "Alist of template.
1332 First element of each list is a string specifies the name of the template.
1333 Remaining elements indicate actions. The format of actions is same as that
1334 of `wl-draft-config-alist'."
1335   :type '(repeat (list (string :tag "Name")
1336                        (repeat
1337                         :inline t
1338                         (choice (cons (sexp :tag "Field(Variable)")
1339                                       (sexp :tag "Value"))
1340                                 (sexp :tag "Function")))))
1341   :group 'wl-draft
1342   :group 'wl-setting)
1343
1344 (defcustom wl-template-visible-select t
1345   "*If non-nil, select template with visible."
1346   :type 'boolean
1347   :group 'wl-draft)
1348
1349 (defcustom wl-template-confirm nil
1350   "*If non-nil, require your confirmation when selected template."
1351   :type 'boolean
1352   :group 'wl-draft)
1353
1354 (defcustom wl-template-buffer-lines 7
1355   "*Lines of template buffer."
1356   :type 'integer
1357   :group 'wl-draft)
1358
1359 ;; queued sending.
1360 (defcustom wl-draft-enable-queuing t
1361   "*Non-nil enables queued sending."
1362   :type 'boolean
1363   :group 'wl-draft
1364   :group 'wl-pref)
1365
1366 (defcustom wl-draft-force-queuing nil
1367   "*Non-nil forces queued sending for mail and news."
1368   :type 'boolean
1369   :group 'wl-draft
1370   :group 'wl-pref)
1371
1372 (defcustom wl-draft-force-queuing-mail nil
1373   "*Non-nil forces queued sending for mail."
1374   :type 'boolean
1375   :group 'wl-draft
1376   :group 'wl-pref)
1377
1378 (defcustom wl-draft-force-queuing-news nil
1379   "*Non-nil forces queued sending for news."
1380   :type 'boolean
1381   :group 'wl-draft
1382   :group 'wl-pref)
1383
1384 (defcustom wl-draft-use-cache nil
1385   "*If non-nil, sending message is cached."
1386   :type 'boolean
1387   :group 'wl-draft
1388   :group 'wl-pref)
1389
1390 (defcustom wl-auto-flush-queue t
1391   "*If non-nil, sending queue is flushed when network status is toggled."
1392   :type 'boolean
1393   :group 'wl-draft
1394   :group 'wl-pref)
1395
1396 (defcustom wl-draft-buffer-style 'full
1397   "Style of draft buffer except for `wl-summary-reply' and `wl-summary-forward'
1398 'keep is to use current window, 'full is to use full frame window and
1399 'split is to split current window.
1400 If it is a function, it is called with the draft buffer as an argument."
1401   :type '(choice (const :tag "Keep window" keep)
1402                  (const :tag "Split window" split)
1403                  (const :tag "Full window" full)
1404                  (sexp :tag "Use Function"))
1405   :group 'wl-draft)
1406
1407 (defcustom wl-draft-reply-buffer-style 'split
1408   "Style of draft buffer for `wl-summary-reply' and `wl-summary-forward'
1409 'keep is to use message buffer window, 'full is to use full frame window and
1410 'split is to split message buffer window.
1411 If it is a function, it is called with the draft buffer as an argument."
1412   :type '(choice (const :tag "Keep window" keep)
1413                  (const :tag "Split window" split)
1414                  (const :tag "Full window" full)
1415                  (sexp :tag "Use Function"))
1416   :group 'wl-draft)
1417
1418 (defcustom wl-draft-reply-default-position 'body
1419   "Begining position of reply buffer.
1420 'body means the top of body.
1421 'bottom means the bottom of body.
1422 'top means the top of header.
1423 \"To\", \"Newsgroups\", \"Subject\" means the position of the header field.
1424 You can also set it to a list of setting.
1425 "
1426   :type '(choice (repeat
1427                   (choice
1428                    (const :tag "Top of body" body)
1429                    (const :tag "Bottom of body" bottom)
1430                    (const :tag "Top of header" top)
1431                    (const "To")
1432                    (const "Newsgroups")
1433                    (const "Subject")
1434                    (string :tag "Header Name")))
1435                  (const "To")
1436                  (const "Newsgroups")
1437                  (const "Subject")
1438                  (string :tag "Header Name"))
1439   :group 'wl-draft)
1440
1441 (defcustom wl-draft-queue-save-variables
1442   '(wl-envelope-from wl-from
1443     wl-smtp-posting-server wl-smtp-posting-user wl-smtp-posting-port
1444     wl-smtp-authenticate-type wl-smtp-connection-type
1445     wl-pop-before-smtp-server wl-pop-before-smtp-user wl-pop-before-smtp-port
1446     wl-pop-before-smtp-stream-type wl-pop-before-smtp-authenticate-type
1447     wl-nntp-posting-server wl-nntp-posting-server
1448     wl-nntp-posting-user wl-nntp-posting-port wl-nntp-posting-stream-type)
1449   "*Saving variables in queue info."
1450   :type '(repeat (sexp :tag "Variable"))
1451   :group 'wl-draft)
1452
1453 (defcustom wl-draft-sendlog t
1454   "*Keep send state in log if non-nil."
1455   :type 'boolean
1456   :group 'wl-draft)
1457
1458 (defcustom wl-draft-sendlog-max-size 20000
1459   "*Max file size of sendlog."
1460   :type '(choice (const :tag "Unlimited" nil)
1461                  integer)
1462   :group 'wl-draft)
1463
1464 (defcustom wl-summary-default-number-column 5
1465   "Number of columns in summary buffer."
1466   :type 'integer
1467   :group 'wl-summary)
1468
1469 (defcustom wl-summary-number-column-alist '(("\\*.*" . 6))
1470   "Alist of folder and its number column.
1471 If no matches, 'wl-summary-default-number-column' is used.
1472 ex.
1473 '((\"^%inbox@qmail-maildir\" . 9)
1474   (\"^-.*@news-server\" . 6))"
1475   :type '(repeat (cons (regexp :tag "Folder Regexp") integer))
1476   :group 'wl-summary)
1477
1478 (defcustom wl-summary-highlight t
1479   "Non-nil forces Summary buffer to be highlighted."
1480   :type 'boolean
1481   :group 'wl-summary
1482   :group 'wl-highlight)
1483
1484 (defcustom wl-summary-lazy-highlight (boundp 'window-scroll-functions)
1485   "Non-nil forces lazy summary highlighting using `window-scroll-functions'."
1486   :type 'boolean
1487   :group 'wl-summary
1488   :group 'wl-highlight)
1489
1490 (defcustom wl-summary-highlight-partial-threshold 1000
1491   "Summary is not highlighted entirely if there are lines more than this value.
1492 Available if only `wl-summary-lazy-highlight' is nil."
1493   :type 'integer
1494   :group 'wl-summary
1495   :group 'wl-highlight)
1496
1497 (defcustom wl-summary-partial-highlight-above-lines 30
1498   "If Summary has lines more than `wl-summary-highlight-partial-threshold',
1499 Summary lines are highlighted partialy above current position.
1500 Available if only `wl-summary-lazy-highlight' is nil."
1501   :type 'integer
1502   :group 'wl-summary
1503   :group 'wl-highlight)
1504
1505 (defcustom wl-summary-lazy-update-mark (boundp 'window-scroll-functions)
1506   "Non-nil forces lazy update mark using `window-scroll-functions'."
1507   :type 'boolean
1508   :group 'wl-summary)
1509
1510 (defcustom wl-summary-cache-use t
1511   "Non-nil forces wl-summary to use cache file."
1512   :type 'boolean
1513   :group 'wl-summary)
1514
1515 (defcustom wl-summary-auto-sync-marks t
1516   "Non-nil forces to synchronize unread/important marks."
1517   :type 'boolean
1518   :group 'wl-summary)
1519
1520 (defcustom wl-summary-cache-file ".wl-summary-cache"
1521   "*Cache file for summary mode contents."
1522   :type 'file
1523   :group 'wl-summary)
1524 (defcustom wl-summary-view-file ".wl-summary-view"
1525   "*Current summary view."
1526   :type 'file
1527   :group 'wl-summary)
1528 (defcustom wl-thread-top-file ".wl-thread-top"
1529   "*Current thread top entity... obsolete."
1530   :type 'file
1531   :group 'wl-summary)
1532 (defcustom wl-thread-entity-file ".wl-thread-entity"
1533   "*Thread entities."
1534   :type 'file
1535   :group 'wl-summary)
1536 (defcustom wl-thread-entity-list-file ".wl-thread-entity-list"
1537   "*Thread top entity list."
1538   :type 'file
1539   :group 'wl-summary)
1540
1541 (defcustom wl-print-buffer-function 'lpr-buffer
1542   "A function to print current buffer."
1543   :type 'function
1544   :group 'wl-pref)
1545
1546 (defcustom wl-ps-print-buffer-function
1547   (if window-system 'ps-print-buffer-with-faces 'ps-print-buffer)
1548   "A function to print current buffer with ps-print."
1549   :type 'function
1550   :group 'wl-pref)
1551
1552 ;;;; Preferences
1553 (defcustom wl-use-petname t
1554   "*Display petname in summary and default citation title."
1555   :type 'boolean
1556   :group 'wl-pref)
1557
1558 (defcustom wl-use-folder-petname
1559   '(modeline)
1560   "*List of situation using folder petname.
1561 Allowed situations are:
1562   modeline    : displayed on modeline.
1563   ask-folder  : displayed on minibuffer when ask folder.
1564   read-folder : can used for completion at `wl-summary-read-folder'."
1565   :type '(set (const modeline)
1566               (const ask-folder)
1567               (const read-folder))
1568   :group 'wl-summary
1569   :group 'wl-pref)
1570
1571 (defcustom wl-folder-petname-alist nil
1572   "A list of (realname . petname)."
1573   :type '(repeat (cons (string :tag "Realname") (string :tag "Petname")))
1574   :group 'wl-folder)
1575
1576 (defcustom wl-summary-weekday-name-lang
1577   (if (and (boundp 'current-language-environment)
1578            (string-equal "Japanese"
1579                          (symbol-value 'current-language-environment)))
1580       "ja" "en")
1581   "*Language to display week day."
1582   :type '(choice (const "ja")
1583                  (const "en")
1584                  (const "fr")
1585                  (const "de")
1586                  (string :tag "Other"))
1587   :group 'wl-summary
1588   :group 'wl-pref)
1589
1590 (defcustom wl-message-id-use-wl-from t
1591   "*Use `wl-from' for domain part of Message-ID if non-nil."
1592   :type 'boolean
1593   :group 'wl-pref)
1594
1595 (defcustom wl-local-domain nil
1596   "*Domain part of this client (without hostname).
1597 Set this if (system-name) does not return FQDN."
1598   :type '(choice (const :tag "Use System Name" nil)
1599                  string)
1600   :group 'wl-pref)
1601
1602 (defcustom wl-message-id-domain nil
1603   "*Specific domain part of Message-ID."
1604   :type '(choice (const :tag "Use System Name" nil)
1605                  string)
1606   :group 'wl-pref)
1607
1608 (defcustom wl-unique-id-suffix ".wl"
1609   "*Specific string in generated Message-ID
1610 which appear just before @."
1611   :type 'string
1612   :group 'wl-pref)
1613
1614 (defcustom wl-break-pages t
1615   "*Break Pages at ^L."
1616   :type 'boolean
1617   :group 'wl-pref)
1618
1619 (defcustom wl-message-use-header-narrowing t
1620   "Use header narrowing when non-nil."
1621   :type 'boolean
1622   :group 'wl-pref)
1623
1624 (defcustom wl-message-header-narrowing-fields '("to" "cc")
1625   "A list of field name to enable header narrowing."
1626   :type '(repeat string)
1627   :group 'wl-pref)
1628
1629 (defcustom wl-message-header-narrowing-lines 4
1630   "Line number to enable the header narrowing."
1631   :type 'integer
1632   :group 'wl-pref)
1633
1634 (defcustom wl-message-header-narrowing-string "..."
1635   "A string used for header narrowing truncation."
1636   :type 'string
1637   :group 'wl-pref)
1638
1639 (defvar wl-message-mode-line-format-spec-alist
1640   '((?f (if (memq 'modeline wl-use-folder-petname)
1641             (wl-folder-get-petname wl-message-buffer-cur-folder)
1642           wl-message-buffer-cur-folder))
1643     (?F wl-message-buffer-flag-indicator)
1644     (?n wl-message-buffer-cur-number))
1645   "An alist of format specifications for message buffer's mode-lines.
1646 Each element is a list of following:
1647 \(SPEC STRING-EXP)
1648 SPEC is a character for format specification.
1649 STRING-EXP is an expression to get string to insert.")
1650
1651 (defcustom wl-message-mode-line-format "Wanderlust: << %f / %n %F>>"
1652   "*A format string for message buffer's mode-line of Wanderlust.
1653 It may include any of the following format specifications
1654 which are replaced by the given information:
1655
1656 %f The folder name.
1657 %n The number of the message.
1658 %F The global flag indicator."
1659   :group 'wl-pref
1660   :type 'string)
1661
1662 (defcustom wl-message-truncate-lines default-truncate-lines
1663   "*Truncate lines in Message Buffer."
1664   :type 'boolean
1665   :group 'wl-pref)
1666
1667 (defcustom wl-draft-truncate-lines default-truncate-lines
1668   "*Truncate lines in Draft Buffer."
1669   :type 'boolean
1670   :group 'wl-draft
1671   :group 'wl-pref)
1672
1673 (defcustom wl-message-scroll-amount nil
1674   "*Scroll amount by SPC key."
1675   :type '(choice (const :tag "scrolling by screenfuls" nil)
1676                  integer)
1677   :group 'wl-pref)
1678
1679 (defcustom wl-message-window-size '(1 . 4)
1680   "*Size of summary and message window.  cons cell of (Summary : Message)."
1681   :type '(cons integer integer)
1682   :group 'wl-pref)
1683
1684 (defcustom wl-message-sort-field-list '("Return-Path" "Received" "^To" "^Cc"
1685                                         "Newsgroups" "Subject" "^From")
1686   "*Sort order of header fields.  Each elements are regexp of field name."
1687   :type '(repeat (string :tag "Field Regexp"))
1688   :group 'wl-pref
1689   :group 'wl-setting)
1690
1691 (defcustom wl-message-ignored-field-list nil
1692   "All fields that match this list will be hidden in message buffer.
1693 Each elements are regexp of field-name.
1694 You can specify exceptions by `wl-message-visible-field-list'."
1695   :type '(repeat (string :tag "Field Regexp"))
1696   :group 'wl-pref
1697   :group 'wl-setting)
1698
1699 (defcustom wl-message-visible-field-list nil
1700   "All fields that match this list will be displayed in message buffer.
1701 Each elements are regexp of field-name.
1702 This variable overwhelm `wl-message-ignored-field-list' settings."
1703   :type '(repeat (string :tag "Field Regexp"))
1704   :group 'wl-pref
1705   :group 'wl-setting)
1706
1707 (defcustom wl-message-header-button-alist
1708   (` (("^\\(References\\|Message-Id\\|In-Reply-To\\):"
1709        "<[^>]+>"
1710        0 wl-message-button-refer-article  0)
1711       ("^[^:]+:"
1712        "\\(<\\(url: \\)?news:\\([^>\n ]*\\)>\\)"
1713        1 wl-message-button-refer-article 3)))
1714   "Alist of headers and regexps to match buttons in message headers."
1715   :type '(repeat
1716           (list (regexp :tag "Header")
1717                 regexp
1718                 (integer :tag "Button")
1719                 (function :tag "Callback")
1720                 (repeat :tag "Data"
1721                         :inline t
1722                         (integer :tag "Regexp group"))))
1723   :group 'wl-pref)
1724
1725 (defcustom wl-message-body-button-alist
1726   '(("<mailto:[^>]+>" 0 'ignore 0 1024)
1727     ("<[^>]+@[^>]+>" 0 wl-message-button-refer-article 0 1024))
1728   "Alist of regexps to match buttons in message body."
1729   :type '(repeat
1730           (list regexp
1731                 (integer :tag "Button")
1732                 (function :tag "Callback")
1733                 (repeat :tag "Data"
1734                         :inline t
1735                         (integer :tag "Regexp group"))
1736                 (integer :tag "Max Length")))
1737   :group 'wl-pref)
1738
1739 (defcustom wl-folder-window-width 20
1740   "*Width of folder window."
1741   :type 'integer
1742   :group 'wl-folder
1743   :group 'wl-pref)
1744
1745 (defcustom wl-summary-recenter t
1746   "*Recenter on redisplay."
1747   :type 'boolean
1748   :group 'wl-summary
1749   :group 'wl-pref)
1750
1751 (defcustom wl-folder-use-frame nil
1752   "*Use dedicated frame for folder mode if non-nil."
1753   :type 'boolean
1754   :group 'wl-pref)
1755
1756 (defcustom wl-summary-use-frame nil
1757   "*Use dedicated frame for each folder summary if non-nil."
1758   :type 'boolean
1759   :group 'wl-pref)
1760
1761 (defcustom wl-stay-folder-window nil
1762   "*Stay folder window when folder is selected if non-nil."
1763   :type 'boolean
1764   :group 'wl-pref)
1765
1766 (defcustom wl-reply-subject-prefix "Re: "
1767   "*Prefix of the subject of the replied message.
1768 The value is string or string valued function to be evalueted in the target
1769 message buffer."
1770   :type '(choice string function)
1771   :group 'wl-draft
1772   :group 'wl-pref)
1773
1774 (defcustom wl-forward-subject-prefix "Forward: "
1775   "*Prefix of the subject of the forwarded message.
1776 The value is string or string valued function to be evalueted in the target
1777 message buffer."
1778   :type '(choice string function)
1779   :group 'wl-draft
1780   :group 'wl-pref)
1781
1782 (defcustom wl-draft-reply-use-address-with-full-name t
1783   "*Use address with full-name in the draft of replied message."
1784   :type 'boolean
1785   :group 'wl-pref
1786   :group 'wl-draft)
1787
1788 (defcustom wl-subject-re-prefix-regexp "^[ \t]*\\([Rr][Ee][:>][ \t]*\\)*[ \t]*"
1789   "*Regexp matching \"Re: \" in the subject line."
1790   :type 'regexp
1791   :group 'wl-draft
1792   :group 'wl-pref)
1793
1794 (defcustom wl-subject-forward-prefix-regexp "^[ \t]*\\(\\([Ff][Oo][Rr][Ww][Aa][Rr][Dd]\\|[Ff][Ww][Dd]\\|[Ff][Ww]\\)[:>][ \t]*\\)*[ \t]*"
1795   "*Regexp matching \"Forward: \", \"Fwd: \", or \"Fw: \" in the subject line."
1796   :type 'regexp
1797   :group 'wl-draft
1798   :group 'wl-pref)
1799
1800 (defcustom wl-folder-many-unsync-threshold 70
1801   "*Folders which contains messages more than this number are highlighted
1802 with wl-highlight-folder-many-face."
1803   :type 'integer
1804   :group 'wl-folder
1805   :group 'wl-pref)
1806
1807 (defcustom wl-fcc nil
1808   "*Folder Carbon Copy target initially added at creating draft buffer."
1809   :type '(choice (const :tag "disable" nil)
1810                  string function)
1811   :group 'wl-draft
1812   :group 'wl-pref)
1813
1814 (defcustom wl-fcc-force-as-read nil
1815   "*If non-nil, mark copied message as read."
1816   :type 'boolean
1817   :group 'wl-draft
1818   :group 'wl-pref)
1819
1820 (defcustom wl-bcc nil
1821   "*Blind Carbon Copy target initially added at creating draft buffer."
1822   :type '(choice (const :tag "disable" nil)
1823                  string)
1824   :group 'wl-draft
1825   :group 'wl-pref)
1826
1827 (defcustom wl-folder-desktop-name "Desktop"
1828   "*An implicit name of the folder top entity."
1829   :type 'string
1830   :group 'wl-folder
1831   :group 'wl-pref)
1832
1833 (defcustom wl-summary-indent-length-limit 46
1834   "*Limit of indent length for thread. Nil means unlimited"
1835   :type '(choice (const :tag "Unlimited" nil)
1836                  integer)
1837   :group 'wl-summary
1838   :group 'wl-pref)
1839
1840 (defcustom wl-summary-max-thread-depth 30
1841   "*If thread depth of the message is larger than this value, divide it."
1842   :type '(choice (const :tag "Unlimited" nil)
1843                  integer)
1844   :group 'wl-summary
1845   :group 'wl-pref)
1846
1847 (defcustom wl-summary-no-from-message "nobody@nowhere?"
1848   "*A string displayed in summary when no from field exists."
1849   :type 'string
1850   :group 'wl-summary)
1851
1852 (defcustom wl-summary-no-subject-message "(WL:No Subject in original.)"
1853   "*A string displayed in summary when no subject field exists."
1854   :type 'string
1855   :group 'wl-summary)
1856
1857 (defcustom wl-summary-cancel-message "I'd like to cancel my message."
1858   "*The body content of a cancel message."
1859   :type 'string
1860   :group 'wl-summary)
1861
1862 (defcustom wl-summary-width 80
1863   "*Set summary line width if non nil."
1864   :type '(choice (const :tag "Don't truncate" nil)
1865                  integer)
1866   :group 'wl-summary
1867   :group 'wl-pref)
1868
1869 (defcustom wl-summary-print-argument-within-window nil
1870   "*If non-nil, always print argument right side of window."
1871   :type 'boolean
1872   :group 'wl-summary
1873   :group 'wl-pref)
1874
1875 (defcustom wl-summary-pick-field-default "Body"
1876   "*Default field for pick."
1877   :type '(radio (const "From")
1878                 (const "Subject")
1879                 (const "To")
1880                 (const "Cc")
1881                 (const "Body")
1882                 (const "Since")
1883                 (const "Before")
1884                 (const "Last")
1885                 (const "First")
1886                 (string :tag "Other"))
1887   :group 'wl-summary)
1888
1889 (defcustom wl-mime-charset 'x-ctext
1890   "*MIME Charset for summary and message."
1891   :type 'symbol
1892   :group 'wl-summary
1893   :group 'wl-pref)
1894
1895 (defcustom wl-generate-mailer-string-function 'wl-generate-user-agent-string
1896   "A function for creating User-Agent field string."
1897   :type 'function
1898   :group 'wl-draft)
1899
1900 (defcustom wl-highlight-background-mode  (if (boundp 'hilit-background-mode)
1901                                              (or hilit-background-mode 'dark)
1902                                            'dark)
1903   "*Background mode of highlight (for Old Emacsen).  'dark or 'light."
1904   :type '(radio (const dark)
1905                 (const light))
1906   :group 'wl-highlight)
1907
1908 (defcustom wl-highlight-x-face-function nil
1909   "A function to display X-Face."
1910   :type 'function
1911   :group 'wl-highlight)
1912
1913 (defcustom wl-qmail-inject-program "/var/qmail/bin/qmail-inject"
1914   "Location of the qmail-inject program."
1915   :type '(string :tag "Program")
1916   :group 'wl-draft)
1917
1918 (defcustom wl-qmail-inject-args nil
1919   "Arguments passed to qmail-inject programs.
1920 This should be a list of strings, one string for each argument.
1921
1922 For e.g., if you wish to set the envelope sender address so that bounces
1923 go to the right place or to deal with listserv's usage of that address, you
1924 might set this variable to '(\"-f\" \"you@some.where\")."
1925   :type '(repeat (string :tag "Argument"))
1926   :group 'wl-draft)
1927
1928 (defcustom wl-rejected-letter-start
1929   "^[\t ]*-+[\t ]+\\(\\(original\\|\\(\\(the \\)?unsent\\)\\) message\\( follows\\)?[\t ]+-+[\t ]*\\|Below this line is a copy of the message\\..*\\)$"
1930   "Regexp specifying the beginning of the wrapper around a returned letter.
1931 This wrapper is generated by the mail system when rejecting a letter."
1932   :type 'regexp
1933   :group 'wl-draft)
1934
1935 (defcustom wl-ignored-forwarded-headers "\\(received\\|return-path\\|x-uidl\\)"
1936   "*All headers that match this regexp will be deleted when forwarding a message."
1937   :type 'regexp
1938   :group 'wl-draft)
1939
1940 (defcustom wl-ignored-resent-headers "\\(return-receipt\\|[bdf]cc\\)"
1941   "*All headers that match this regexp will be deleted when resending a message."
1942   :type 'regexp
1943   :group 'wl-draft)
1944
1945 (defcustom wl-draft-preview-attributes t
1946   "Non-nil forces to preview the attributes in the `wl-draft-preview-message'.
1947 Attributes specified in the `wl-draft-preview-attributes-list' are displayed."
1948   :type 'boolean
1949   :group 'wl-draft)
1950
1951 (defcustom wl-draft-preview-attributes-list '(recipients
1952                                               envelope-from
1953                                               smtp-posting-server
1954                                               smtp-posting-port)
1955   "*Attribute symbols to display in the draft preview.
1956 Candidates are following:
1957 `recipients'
1958 `envelope-from'
1959 `smtp-posting-server'
1960 `smtp-posting-port'
1961 `nntp-posting-server'
1962 `nntp-posting-port'
1963 Also variables which begin with `wl-' can be specified
1964 \(`wl-' have to be removed\)"
1965   :type '(repeat symbol)
1966   :group 'wl-draft)
1967
1968 (defcustom wl-draft-preview-attributes-buffer-lines 5
1969   "*Buffer height for the draft attribute preview."
1970   :type 'integer
1971   :group 'wl-draft)
1972
1973 (defcustom wl-draft-preview-attributes-buffer-name "*Preview Attributes*"
1974   "*Buffer name for the draft attribute preview."
1975   :type 'string
1976   :group 'wl-draft)
1977
1978 (defcustom wl-refile-default-from-folder "+from"
1979   "*Folder name to refile by `wl-refile-guess-by-from'."
1980   :type '(string :tag "Folder")
1981   :group 'wl-pref)
1982
1983 (defcustom wl-summary-auto-refile-skip-marks
1984   (list wl-summary-new-uncached-mark
1985         wl-summary-new-cached-mark
1986         wl-summary-unread-uncached-mark
1987         wl-summary-unread-cached-mark)
1988   "Persistent marks to skip auto-refiling."
1989   :type '(repeat (string :tag "Mark"))
1990   :group 'wl-summary)
1991
1992 (defcustom wl-summary-reserve-mark-list
1993   (list "o" "O" "D" "d" "i")
1994   "If a message is already marked as temporal marks in this list,
1995 the message is not marked by any mark command."
1996   :type '(repeat (string :tag "Temp-Mark"))
1997   :group 'wl-summary)
1998
1999 (defcustom wl-summary-skip-mark-list
2000   (list "D" "d")
2001   "If a message is already marked as temporal marks in this list,
2002 the message is skipped at cursor move."
2003   :type '(repeat (string :tag "Temp-Mark"))
2004   :group 'wl-summary)
2005
2006 (defcustom wl-summary-incorporate-marks
2007   (list wl-summary-new-uncached-mark
2008         wl-summary-unread-uncached-mark)
2009   "Persistent marks to prefetch at `wl-summary-incorporate'."
2010   :type '(repeat (string :tag "Mark"))
2011   :group 'wl-summary)
2012
2013 (defcustom wl-refile-rule-alist nil
2014   "Refile rule alist.
2015 e.x.
2016 '((\"From\"
2017    (\"teranisi@isl.ntt.co.jp\" . \"+teranisi\"))
2018   (\"x-ml-name\"
2019    (\"^Wanderlust\"    . \"+wl\")
2020    (\"^Elips\" . \"+elips\")))"
2021   :type '(repeat (list (string :tag "Field")
2022                        (repeat :inline t
2023                                (cons (regexp :tag "Value")
2024                                      (string :tag "Folder")))))
2025   :group 'wl-pref)
2026
2027 (defcustom wl-strict-diff-folders nil
2028   "List of regexps matching folders of which Wanderlust seriously counts unsync messages."
2029   :type '(choice (const :tag "Off" nil)
2030                  (repeat (regexp :tag "Folder Regexp")))
2031   :group 'wl-folder)
2032
2033 (defcustom wl-folder-use-server-diff t
2034   "Checked unread message number on IMAP4 server.
2035 Only IMAP4 folders have an effect."
2036   :type 'boolean
2037   :group 'wl-folder)
2038
2039 (defcustom wl-force-fetch-folders nil
2040   "Non-nil forces to fetch subfolders when user opened an 'access' folder."
2041   :type '(choice (const :tag "off" nil)
2042                  (const :menu-tag "on" t)
2043                  (repeat (regexp :tag "Folder Regexp")))
2044   :group 'wl-folder)
2045
2046 (defcustom wl-auto-check-folder-name nil
2047   "*A folder, a group or a list of folders and groups specified which
2048 will be automatically checked at the startup time."
2049   :type '(choice (string :tag "Folder")
2050                  (repeat (string :tag "Folder"))
2051                  (const none))
2052   :group 'wl-folder)
2053
2054 (defcustom wl-auto-uncheck-folder-list '("\\$.*")
2055   "All folders that match this list won't be checked at the startup
2056 time even if they are embedded in some groups specified by
2057 wl-auto-check-folder-name.
2058 Those folders are also skipped when you check on the Desktop.
2059 This value is preceded by wl-auto-check-folder-list.
2060 Each elements are regexp of folder name."
2061   :type '(repeat (regexp :tag "Folder Regexp"))
2062   :group 'wl-folder)
2063
2064 (defcustom wl-auto-check-folder-list nil
2065   "A list of patterns for exceptional folders against
2066 wl-auto-uncheck-folder-list.
2067 Each elements are regexp of folder name."
2068   :type '(repeat (regexp :tag "Folder Regexp"))
2069   :group 'wl-folder)
2070
2071 (defcustom wl-show-plug-status-on-modeline t
2072   "If it is non-nil, show plugged status in modeline."
2073   :type 'boolean
2074   :group 'wl-highlight)
2075
2076 (defcustom wl-plug-state-indicator-on  " [ON] "
2077   "String used to show plugged status ON."
2078   :type 'string
2079   :group 'wl-highlight)
2080
2081 (defcustom wl-plug-state-indicator-off " [--] "
2082   "String used to show plugged status OFF."
2083   :type 'string
2084   :group 'wl-highlight)
2085
2086 (defcustom wl-biff-check-folder-list nil
2087   "All folders that match this list are automatically checked
2088 every intervals specified by wl-biff-check-interval."
2089   :type '(repeat (regexp :tag "Folder"))
2090   :group 'wl-highlight)
2091
2092 (defcustom wl-biff-check-interval 40
2093   "Number of seconds between updates of new mails in the mode line."
2094   :type 'integer
2095   :group 'wl-highlight)
2096
2097 (defcustom wl-biff-use-idle-timer nil
2098   "Non-nil to use idle timer instead of strict timer for wl-biff"
2099   :type 'boolean
2100   :group 'wl-highlight)
2101
2102 (defcustom wl-biff-state-indicator-on (if (and (featurep 'xemacs)
2103                                                (not (featurep 'mule)))
2104                                           "[Mail]"
2105                                         (decode-coding-string
2106                                          ;; Youbin mark
2107                                          (read "\"[\e$B\\\")\e(B]\"")
2108                                          (if (boundp 'MULE)
2109                                              '*iso-2022-jp*
2110                                            'iso-2022-jp)))
2111   "String used to show biff status ON."
2112   :type 'string
2113   :group 'wl-highlight)
2114
2115 (defcustom wl-biff-state-indicator-off (if (and (featurep 'xemacs)
2116                                                 (not (featurep 'mule)))
2117                                            "[--]"
2118                                           ;; Japanese short hyphen
2119                                          "[\e$B!>\e(B]")
2120   "String used to show biff status OFF."
2121   :type 'string
2122   :group 'wl-highlight)
2123
2124 (defcustom wl-mode-line-display-priority-list '(biff plug title)
2125   "Displaying order of items to be shown in modeline.  The first item will
2126 be placed in the leftmost.  The significant items are `biff' and `plug';
2127 otherwise, e.g. `title', corresponds to the things except for the biff
2128 staus nor the plugged status.  The default order is '(biff plug title)
2129 even if the value of this option is set to nil.  Here are some samples:
2130
2131 ;; Plugged status first:
2132 \(setq wl-mode-line-display-priority-list '(plug))
2133
2134 ;; Biff status, Title of Wanderlust, Plugged status:
2135 \(setq wl-mode-line-display-priority-list '(biff title plug))
2136
2137 "
2138   :type '(repeat (radio (const :format "%v " biff)
2139                         (const :format "%v " plug)
2140                         (sexp :tag "Other" :value title)))
2141   :group 'wl-highlight)
2142
2143 (defcustom wl-interactive-send t
2144   "*If non-nil, require your confirmation when sending draft message."
2145   :type 'boolean
2146   :group 'wl-pref
2147   :group 'wl-setting)
2148
2149 (defcustom wl-interactive-exit t
2150   "*If non-nil, require your confirmation when exiting WL."
2151   :type 'boolean
2152   :group 'wl-pref)
2153
2154 (defcustom wl-summary-move-order 'unread
2155   "*The order of priority when move in summary mode.
2156 If this variable is `unread', precede \"U\", \"!\", \"N\" mark.
2157 If this variable is `new', precede \"N\" mark."
2158   :type '(radio (const new)
2159                 (const unread))
2160   :group 'wl-summary
2161   :group 'wl-setting)
2162
2163 (defvar wl-summary-move-direction-downward t)
2164
2165 (defcustom wl-summary-move-direction-toggle t
2166   "*If non-nil, search direction for the next message will be determined
2167 depends on previous search direction.
2168 It uses wl-summary-move-direction-downward as a direction flag."
2169   :type 'boolean
2170   :group 'wl-summary)
2171
2172 (defcustom wl-auto-select-first nil
2173   "*If non-nil, display selected first message when enter summary."
2174   :type 'boolean
2175   :group 'wl-pref
2176   :group 'wl-setting)
2177
2178 (defcustom wl-auto-prefetch-first nil
2179   "*If non-nil, prefetch selected first message when enter summary."
2180   :type 'boolean
2181   :group 'wl-pref
2182   :group 'wl-setting)
2183
2184 (defcustom wl-auto-select-next nil
2185   "*If non-nil, offer to go to the next folder from the end of the previous.
2186 If the value is the symbol `unread', go to the next folder
2187 that no unread message exists.  If the value is the symbol `skip-no-unread',
2188 skip the folder that no unread message exists.
2189
2190 See also variable `wl-summary-next-no-unread-command'."
2191   :type '(radio (const :tag "off" nil)
2192                 (const :tag "on" t)
2193                 (const unread)
2194                 (const skip-no-unread))
2195   :group 'wl-pref
2196   :group 'wl-setting)
2197
2198 (defcustom wl-message-buffer-name " *WL:Message*"
2199   "*Buffer name for message buffers."
2200   :group 'wl-pref
2201   :group 'wl-setting)
2202
2203 (defcustom wl-message-buffer-prefetch-folder-type-list '(imap4 nntp)
2204   "*All folder types that match this list prefetch next message,
2205 and reserved buffer cache."
2206   :type `(choice (const :tag "all" t)
2207                  (const :tag "never" nil)
2208                  (set (const localdir)
2209                       (const localnews)
2210                       (const maildir)
2211                       (const imap4)
2212                       (const nntp)
2213                       (const pop3)
2214                       (const shimbun)
2215                       (const nmz)
2216                       (const archive)
2217                       (const mark)
2218                       (const cache)))
2219   :group 'wl-pref)
2220
2221 (defcustom wl-message-buffer-prefetch-folder-list nil
2222   "*All folders that match this list prefetch next message,
2223 and reserved buffer cache.
2224 e.x.
2225 '(\"^[-%]\")"
2226   :type '(repeat (regexp :tag "Folder Regexp"))
2227   :group 'wl-pref)
2228
2229 (defcustom wl-message-buffer-prefetch-depth 1
2230   "*Depth of buffer prefetch in summary mode."
2231   :type 'integer
2232   :group 'wl-pref)
2233
2234 (defcustom wl-message-buffer-prefetch-idle-time 1
2235   "*Idle time of buffer prefetch."
2236   :type 'number
2237   :group 'wl-pref)
2238
2239 (defcustom wl-message-buffer-prefetch-threshold 30000
2240   "*Quit forward cache prefetching if message size is larger than this value."
2241   :type 'integer
2242   :group 'wl-pref)
2243
2244 (defcustom wl-summary-always-sticky-folder-list nil
2245   "All folders that match this list has sticky summary.
2246 Each elements are regexp of folder name."
2247   :type '(radio (const :tag "none" nil)
2248                 (const :tag "all" t)
2249                 (repeat (regexp :tag "Folder Regexp")))
2250   :group 'wl-pref)
2251
2252 (defcustom wl-summary-force-prefetch-folder-list nil
2253     "All folders that match this list are prefetched.
2254 Each elements are regexp of folder name."
2255     :type '(radio (const :tag "none" nil)
2256                   (const :tag "all" t)
2257                   (repeat (regexp :tag "Folder Regexp")))
2258     :group 'wl-pref)
2259
2260 (defcustom wl-no-save-folder-list '("^/.*$" "^\\[.*$")
2261   "All folders that match this list won't save its msgdb.
2262 Each elements are regexp of folder name."
2263   :type '(repeat (regexp :tag "Folder Regexp"))
2264   :group 'wl-pref)
2265
2266 (defcustom wl-save-folder-list nil
2267   "All folders that match this list save its msgdb.
2268 Each elements are regexp of folder name."
2269   :type '(repeat (regexp :tag "Folder Regexp"))
2270   :group 'wl-pref)
2271
2272 (defcustom wl-folder-mime-charset-alist
2273   '(("^-alt\\.chinese" . big5)
2274     ("^-relcom\\." . koi8-r)
2275     ("^-tw\\." . big5)
2276     ("^-han\\." . euc-kr)
2277     ("@sponichi" . shift_jis)
2278     ("@2ch" . shift_jis))
2279   "Charset alist.  If no match, `wl-mime-charset' is used."
2280   :type '(repeat (cons (regexp :tag "Folder Regexp") (symbol :tag "Charset")))
2281   :group 'wl-summary
2282   :group 'wl-pref)
2283
2284 (defcustom wl-folder-weekday-name-lang-alist
2285   '(("^-alt\\.chinese" . "en")
2286     ("^-relcom\\." . "en")
2287     ("^-tw\\." . "en")
2288     ("^-han\\." . "en"))
2289   "Weekday name lang alist.
2290 If no match, `wl-summary-weekday-name-lang' is used.
2291 e.x.
2292 '((\"xemacs-beta$\" . \"en\")
2293   (\"^-fj\" . \"ja\"))"
2294   :type '(repeat (cons (regexp :tag "Folder Regexp")
2295                        (choice (const "ja")
2296                                (const "en")
2297                                (const "fr")
2298                                (const "de")
2299                                (string :tag "Other"))))
2300   :group 'wl-pref)
2301
2302 (defcustom wl-folder-thread-indent-set-alist
2303   '(("^-alt\\.chinese" . (2 "+" "+" "|" "-" " "))
2304     ("^-relcom\\." . (2 "+" "+" "|" "-" " "))
2305     ("^-tw\\." . (2 "+" "+" "|" "-" " "))
2306     ("^-han\\." . (2 "+" "+" "|" "-" " ")))
2307   "Thread indent set alist.
2308 If no match, following indent set is used.
2309 \(wl-thread-indent-level
2310  wl-thread-have-younger-brother-str
2311  wl-thread-youngest-child-str
2312  wl-thread-vertical-str
2313  wl-thread-horizontal-str
2314  wl-thread-space-str)
2315 e.x.
2316 '((\"xemacs-beta$\" . (2 \"+\" \"+\" \"|\" \"-\" \" \")))"
2317   :type '(repeat (cons (regexp :tag "Folder Regexp")
2318                        (group (integer :tag "Indent")
2319                               (string :tag "Yonger Brother")
2320                               (string :tag "Yonger Child")
2321                               (string :tag "Vertical")
2322                               (string :tag "Horizontal")
2323                               (string :tag "Space"))))
2324   :group 'wl-pref)
2325
2326 (defcustom wl-folder-sync-range-alist
2327   (list (cons 'wl-require-update-all-folder-p "all"))
2328   "*Default sync range alist.  If no matches, `wl-default-sync-range' is used."
2329   :type '(repeat (cons (choice (regexp :tag "Folder Regexp")
2330                                (symbol :tag "A function"))
2331                        (choice (const "update")
2332                                (const "all")
2333                                (const "rescan")
2334                                (const "no-sync")
2335                                (const :tag "none" nil))))
2336   :group 'wl-pref)
2337
2338 (defcustom wl-default-sync-range  "update"
2339   "*Default sync range."
2340   :type '(choice (const "update")
2341                  (const "all")
2342                  (const "rescan")
2343                  (const "no-sync")
2344                  (const :tag "none" nil))
2345   :group 'wl-pref)
2346
2347 (defcustom wl-ask-range t
2348   "*If non-nil, ask for a range for summary synchronization.
2349 If nil, always use default."
2350   :type 'boolean
2351   :group 'wl-pref)
2352
2353 (defcustom wl-folder-process-duplicates-alist nil
2354   "Specify process type of duplicated messages.
2355 It should be a list of cons cell like: (REGEXP . TYPE)
2356 REGEXP is a regular expression string of folder name.
2357 TYPE is one of the symbols `hide' or `read'.
2358 `hide' means hide duplicated messages.
2359 `read' means mark as read duplicated messages.
2360 If TYPE is nil, do nothing for duplicated messages."
2361   :type '(repeat (cons (regexp :tag "Folder regexp")
2362                        (choice (const :tag "Hide" hide)
2363                                (const :tag "Mark as read" read))))
2364   :group 'wl-folder)
2365
2366 (defcustom wl-folder-move-cur-folder nil
2367   "*Non-nil, move cursor to current folder on folder buffer when goto folder."
2368   :type 'boolean
2369   :group 'wl-folder)
2370
2371 (defcustom wl-folder-check-async t
2372   "*Check the folder asynchronous."
2373   :type 'boolean
2374   :group 'wl-folder)
2375
2376 (defcustom wl-folder-notify-deleted nil
2377   "*Non-nil, display negative number on folder-mode when message is deleted
2378 in folder. If the value is 'sync, msgdb would be synchronized."
2379   :type '(choice (const :tag "off" nil)
2380                  (const :tag "on" t)
2381                  (const sync))
2382   :group 'wl-folder)
2383
2384 (defcustom wl-summary-exit-next-move t
2385   "*Non-nil, move to next-unsync or next-entity when exit summary."
2386   :type 'boolean
2387   :group 'wl-summary)
2388
2389 (defcustom wl-summary-next-no-unread-command
2390   '(wl-summary-read wl-summary-down wl-summary-up)
2391   "*Command list available when the value of `wl-auto-select-next' is 'unread
2392 or 'skip-no-unread."
2393   :type '(repeat function)
2394   :group 'wl-summary)
2395
2396 (defcustom wl-summary-search-via-nntp 'confirm
2397   "*Non-nil, search message via nntp after `wl-summary-jump-to-msg-by-message-id'.
2398 If the value is 'confirm, confirm before search, 'force to search via nntp
2399 regardless of current folder type."
2400   :type '(choice (const :tag "confirm" confirm)
2401                  (const :tag "always" force)
2402                  (const :tag "in nntp folder" t)
2403                  (const :tag "never" nil))
2404   :group 'wl-summary)
2405
2406 (defcustom wl-summary-keep-cursor-command
2407   '(wl-summary-goto-folder wl-summary-goto-last-visited-folder)
2408   "*Command list to keep cursor position when folder is changed to
2409 already existing summary."
2410   :type '(repeat function)
2411   :group 'wl-summary)
2412
2413 (defcustom wl-summary-showto-folder-regexp nil
2414   "Regexp specifying the folder that shows the To (or Newsgroups) field as
2415 Sender information in summary mode."
2416   :type '(choice (const :tag "none" nil)
2417                  regexp)
2418   :group 'wl-summary)
2419
2420 (defcustom wl-summary-save-file-suffix ".eml"
2421   "Suffix for the saved file name."
2422   :type 'string
2423   :group 'wl-summary)
2424
2425 (defcustom wl-folder-removed-mark "#<removed>"
2426   "Mark for removed folder."
2427   :type 'string
2428   :group 'wl-folder)
2429
2430 (defcustom wl-folder-unsubscribe-mark "#"
2431   "Mark for unsubscribe folder."
2432   :type 'string
2433   :group 'wl-folder)
2434
2435 (defcustom wl-dispose-folder-alist '(("^-" . remove)
2436                                      ("^@" . remove))
2437   "*Alist of folder and dispose policy.
2438 Each element is (folder-regexp . policy).
2439
2440 The policy is one of the followings:
2441 'remove or
2442 'null     : remove message.
2443 string    : refile to the specified folder.
2444 'trash or
2445 otherwise : refile to the `wl-trash-folder'.
2446 ex.
2447 '((\"^%\" . \"%#mh/trash\")
2448   (\"^-\" . remove)
2449   (\"^\\\\+\" . trash))"
2450   :type '(repeat (cons (regexp :tag "Folder Regexp")
2451                        (choice :tag "Policy"
2452                                (const remove)
2453                                (const :tag "remove(null)" null)
2454                                (const trash)
2455                                (const :tag "trash(other)" trash)
2456                                (string :tag "Folder"))))
2457   :group 'wl-folder)
2458
2459 (defcustom wl-folder-hierarchy-access-folders '("^-[^\\.]*\\(:\\|@\\|$\\)"
2460                                                 "^@$" "^'$")
2461   "*Access group REGEXPs to make hierarchy structure."
2462   :type '(repeat (string :tag "Regexp"))
2463   :group 'wl-folder)
2464
2465 (defcustom wl-folder-init-load-access-folders nil
2466   "*Access group folders to load folder list on `wl-folder-init'.
2467 If this variable is non-nil,
2468 `wl-folder-init-no-load-access-folders' will be ignored."
2469   :type '(repeat (regexp :tag "Folder Regexp"))
2470   :group 'wl-folder)
2471
2472 (defcustom wl-folder-init-no-load-access-folders nil
2473   "*Access group folders to not load folder list on `wl-folder-init'.
2474 If `wl-folder-init-load-access-folders' is non-nil,
2475 this variable will be ignored."
2476   :type '(repeat (regexp :tag "Folder Regexp"))
2477   :group 'wl-folder)
2478
2479 (defcustom wl-folder-access-subscribe-alist nil
2480   "*Subscribe folders to fetching folder entries.
2481 Each element is (group-regexp (subscribe folder-regexp ...)).
2482 If subscribe is non-nil, subscribe when match folder-regexp.
2483 If subscribe is nil, unsubscribe when match folder-regexp.
2484
2485 ex.
2486 '((\"^-fj$\"   . (t   \"^-fj\\\\.\\\\(editor\\\\|mail\\\\|net\\\\|news\\\\)\"))
2487   (\"^-comp$\" . (t   \"^-comp\\\\.unix\" \"^-comp\\\\.sys\"))
2488   (\"^-$\"     . (nil \"^-alt\" \"^-rec\")))"
2489   :type '(repeat (cons (regexp :tag "Folder Regexp")
2490                        (list (boolean :tag "Subscribed")
2491                              (repeat :inline t
2492                                      (regexp :tag "Folder Regexp")))))
2493   :group 'wl-folder)
2494
2495 ;;; For Folder Manager
2496
2497 (defcustom wl-interactive-save-folders t
2498   "*Non-nil require your confirmation when save folders."
2499   :type 'boolean
2500   :group 'wl-folder
2501   :group 'wl-setting)
2502
2503 (defcustom wl-fldmgr-make-backup t
2504   "*Non-nil make backup file when save folders."
2505   :type 'boolean
2506   :group 'wl-folder)
2507
2508 (defcustom wl-fldmgr-folders-indent "\t"
2509   "*Indent string for folders file."
2510   :type 'string
2511   :group 'wl-folder)
2512
2513 (defcustom wl-fldmgr-sort-function 'wl-fldmgr-sort-standard
2514   "*A function to sort folder."
2515   :type 'function
2516   :group 'wl-folder)
2517
2518 (defcustom wl-fldmgr-sort-group-first t
2519   "*Non-nil Group folder is first when sort."
2520   :type 'function
2521   :group 'wl-folder)
2522
2523 (defcustom wl-fldmgr-add-complete-with-current-folder-list nil
2524   "*If non-nil, completion for adding folder refers current folder list."
2525   :type 'boolean
2526   :group 'wl-folder)
2527
2528 (defcustom wl-fldmgr-make-filter-default "Body"
2529   "*Default filter key while making filter on Folder."
2530   :type '(radio (const "From")
2531                 (const "Subject")
2532                 (const "To")
2533                 (const "Cc")
2534                 (const "Body")
2535                 (const "Since")
2536                 (const "Before")
2537                 (const "Last")
2538                 (const "First")
2539                 (string :tag "Other"))
2540   :group 'wl-folder)
2541
2542 (defcustom wl-fldmgr-allow-rename-access-group nil
2543   "*If non-nil, allow to rename folder in access group."
2544   :type 'boolean
2545   :group 'wl-folder)
2546
2547 ;;; For Expire and Archive
2548
2549 (defcustom wl-expire-alist nil
2550   "Alist to decide a policy for expire.
2551 Each element is (folder-regexp (number or date) policy).
2552
2553 The policy is one of the followings:
2554 'remove  : remove messsage.
2555 'trash   : refile `wl-trash-folder'.
2556 string   : refile string folder.
2557 function : call function.
2558
2559 ex.
2560 '((\"^\\\\+ml/wl$\"             (number 500 510) wl-expire-archive-number1 t)
2561   (\"^\\\\+ml/\"                (number 300 305) wl-expire-archive-number2)
2562   (\"^\\\\+outbox$\"            (number 300) \"$outbox;lha\")
2563   (\"^\\\\(\\\\+tmp\\\\|\\\\+trash\\\\)$\"      (date 7) remove)
2564   (\"^\\\\+misc$\"              (date 14) trash))"
2565   :type '(repeat (choice (list :tag "No-match"
2566                                (regexp :tag "Folder Regexp")
2567                                (const nil))
2568                          (list :tag "Match"
2569                                (regexp :tag "Folder Regexp")
2570                                (list (radio :value number
2571                                             (const number)
2572                                             (const date))
2573                                      (list :inline t
2574                                            integer
2575                                            (repeat :inline t integer)))
2576                                (choice :tag "Policy"
2577                                        :value remove
2578                                        (const remove)
2579                                        (const trash)
2580                                        (string :tag "folder")
2581                                        function)
2582                                (repeat :inline t
2583                                        :tag "Arg for function"
2584                                        sexp))))
2585   :group 'wl-expire)
2586
2587 (defcustom wl-archive-alist '((".*" wl-archive-number1))
2588   "Alist to decide a policy for archive.
2589 Each element is (folder-regexp policy(function)).
2590
2591 ex.
2592 '((\"\\\\+work$\" wl-archive-date)
2593   (\"\\\\+ml/\"   wl-archive-number1)
2594   (\".*\"       wl-archive-number2))"
2595   :type '(repeat (list (regexp :tag "Folder Regexp")
2596                        function
2597                        (repeat :inline t
2598                                (sexp :tag "Argument"))))
2599   :group 'wl-expire)
2600
2601 (defcustom wl-summary-expire-reserve-marks
2602   (list wl-summary-flag-mark
2603         wl-summary-new-uncached-mark
2604         wl-summary-new-cached-mark
2605         wl-summary-unread-uncached-mark
2606         wl-summary-unread-cached-mark)
2607   "Permanent marks of reserved message when expire.
2608 Don't reserve temporary mark message.
2609
2610 ex.
2611 'all  : reserved all permanent marks.
2612 'none : not reserve permanent marks.
2613 list  : reserved specified permanent marks."
2614   :type '(repeat (string :tag "Mark"))
2615   :group 'wl-expire)
2616
2617 (defcustom wl-expire-number-with-reserve-marks nil
2618   "If non-nil, include reserve message when expire by number."
2619   :type 'boolean
2620   :group 'wl-expire)
2621
2622 (defcustom wl-expire-add-seen-list t
2623   "*If non-nil, add seen message list when refile message at expire."
2624   :type 'boolean
2625   :group 'wl-expire)
2626
2627 (defcustom wl-expire-use-log nil
2628   "*If non-nil, write a log when expired."
2629   :type 'boolean
2630   :group 'wl-expire)
2631
2632 (defcustom wl-expire-folder-update-msgdb t
2633   "*Non-nil update summary msgdb when expire on folder mode."
2634   :type 'boolean
2635   :group 'wl-expire)
2636
2637 ;; for wl-expire-archive-{number1|number2}
2638 (defcustom wl-expire-archive-files 100
2639   "*The number of one archive folder."
2640   :type 'integer
2641   :group 'wl-expire)
2642
2643 ;; for wl-expire-archive-{number1|number2|date}
2644 (defcustom wl-expire-archive-get-folder-function
2645   'wl-expire-archive-get-folder
2646   "*A function to get archive folder name."
2647   :type 'function
2648   :group 'wl-expire)
2649
2650 (defcustom wl-expire-delete-oldmsg-confirm t
2651   "*If non-nil, require your confirmation when delete old message."
2652   :type 'boolean
2653   :group 'wl-expire)
2654
2655 ;; for wl-expire-archive-get-folder
2656 (defcustom wl-expire-archive-folder-type 'zip
2657   "*Archiver type of archive folder."
2658   :type '(radio (const zip)
2659                 (const lha)
2660                 (const zoo)
2661                 (const rar)
2662                 (const tar)
2663                 (const tgz)
2664                 (symbol :tag "Other"))
2665   :group 'wl-expire)
2666
2667 (defcustom wl-expire-archive-folder-name-fmt "%s-%%05d;%s" ;; $folder-00100;zip
2668   "*A format string for archive folder name."
2669   :type 'string
2670   :group 'wl-expire)
2671
2672 (defcustom wl-expire-archive-folder-num-regexp "-\\([0-9]+\\);"
2673   "*A regexp string for archive folder name."
2674   :type 'string
2675   :group 'wl-expire)
2676
2677 (defcustom wl-expire-archive-date-folder-name-fmt "%s-%%04d%%02d;%s"
2678                                                 ;; $folder-199812;zip
2679   "*A format string for archive date folder name."
2680   :type 'string
2681   :group 'wl-expire)
2682
2683 (defcustom wl-expire-archive-date-folder-num-regexp "-\\([0-9]+\\);"
2684   "*A regexp string for archive date folder name."
2685   :type 'string
2686   :group 'wl-expire)
2687
2688 (defcustom wl-expire-archive-folder-prefix nil
2689   "*Prefix for archive folder."
2690   :type '(radio (const :tag "nothing" nil)
2691                 (const :tag "full" t)
2692                 (const short))
2693   :group 'wl-expire)
2694
2695 ;;;; Highlights.
2696
2697 ;; highilght about summary
2698 (defcustom wl-highlight-max-summary-lines 10000
2699   "*If the summary is larger than this lines, don't highlight it."
2700   :type 'integer
2701   :group 'wl-highlight)
2702
2703 ;; highilght about draft and message
2704 (defcustom wl-highlight-body-too t
2705   "*In addition to header, highlight the body too.  if non nil."
2706   :type 'boolean
2707   :group 'wl-highlight)
2708
2709 (defcustom wl-highlight-message-header-alist
2710   '(("Subject[ \t]*:" . wl-highlight-message-important-header-contents)
2711     ("From[ \t]*:\\|To[ \t]*:" . wl-highlight-message-important-header-contents2)
2712     ("X-[^ \t]*:\\|User-Agent[ \t]*:" . wl-highlight-message-unimportant-header-contents))
2713   ""
2714   :type '(repeat (cons regexp face))
2715   :group 'wl-highlight)
2716
2717 (defcustom wl-highlight-citation-prefix-regexp
2718   "^[>|:} ]*[>|:}]\\([^ \n>]*>\\)?\\|^[^ <\n>]*>"
2719   "All lines that match this regexp will be highlighted with
2720  `wl-highlight-message-cited-text-*' face."
2721   :type 'regexp
2722   :group 'wl-highlight)
2723
2724 (defcustom wl-highlight-highlight-citation-too nil
2725   "*Whether the whole citation line should go in the
2726 `wl-highlight-citation-face' face.
2727 If nil, the text matched by `wl-highlight-citation-prefix-regexp' is in the
2728 default face, and the remainder of the line is in the
2729 wl-highlight-message-cited-text face."
2730   :type 'boolean
2731   :group 'wl-highlight)
2732
2733 (defcustom wl-highlight-force-citation-header-regexp
2734   "^>>>.*$\\|^[ \t]*<[^>]*>[ \t]*$"
2735   "*The pattern to match the prolog of a cited block.
2736 Text in the body of a message which matches this will be displayed in
2737 the `wl-highlight-message-headers' face."
2738   :type 'regexp
2739   :group 'wl-highlight)
2740
2741 (defcustom wl-highlight-citation-header-regexp
2742   (concat "In article.*$\\|In message.*$\\|In the message.*$\\|"
2743           "^At[^\n]+\n[^\n]+wrote:\n\\|"
2744           "^.*\\(writes\\|wrote\\|said\\):\n")
2745   "*The pattern to match the prolog of a cited block.
2746 Text in the body of a message which matches this will be displayed in
2747 the `wl-highlight-message-headers' face."
2748   :type 'regexp
2749   :group 'wl-highlight)
2750
2751 (defcustom wl-highlight-max-header-size nil
2752   "*If the message header is larger than this many chars, don't highlight it.
2753 If this is nil, all headers will be highlighted."
2754   :type 'integer
2755   :group 'wl-highlight)
2756
2757 (defcustom wl-highlight-max-message-size 10000
2758   "*If the message body is larger than this many chars, don't highlight it.
2759 This is to prevent us from wasting time trying to fontify things like
2760 uuencoded files and large digests.  If this is nil, all messages will
2761 be highlighted."
2762   :type 'integer
2763   :group 'wl-highlight)
2764
2765 ;; highilght about signature (of draft and message)
2766 (defcustom wl-highlight-signature-separator
2767   '("\n--+\n" "\n\n--+.*\n*\\'")
2768   "List of regexps matching signature separator.
2769 It will be verified from head to tail looking for a separator.
2770 Verification will be done from the end of the buffer.
2771 No need to specify \"^-- $\" in this list,
2772 because it is verified by default.
2773 This variable can also be a regex."
2774   :type '(repeat regexp)
2775   :group 'wl-highlight)
2776
2777 (defcustom wl-max-signature-size 400
2778   "*If the signature is larger than this chars, don't treat it as a signature."
2779   :type 'integer
2780   :group 'wl-highlight)
2781
2782 ;; highilght about mouse
2783 (defcustom wl-use-highlight-mouse-line (and window-system
2784                                             (>= emacs-major-version 19))
2785   "*Highlight mouse line, if non-nil."
2786   :type 'boolean
2787   :group 'wl-highlight)
2788
2789 (defcustom wl-highlight-summary-line-help-echo-alist
2790   '((flag wl-highlight-flag-folder-help-echo)
2791     (nmz elmo-message-file-name))
2792   "*Alist to display help-echo in summary buffer.
2793 Each element is (folder-type handler(function)).
2794 Handler take two arguments elmo-folder and message number and return string."
2795   :type 'boolean
2796   :group 'wl-highlight)
2797
2798 ;; highilght about folder
2799 (defcustom wl-highlight-folder-with-icon
2800   (or (and (featurep 'xemacs)
2801            (featurep 'xpm))
2802       wl-on-emacs21)
2803   "*Highlight folder with icon(XEmacs or Emacs 21)."
2804   :type 'boolean
2805   :group 'wl-highlight)
2806
2807 (defcustom wl-highlight-folder-by-numbers t
2808   "Highlight folder lines by numbers.
2809 If it is a number, only numbers will be highlighted."
2810   :type '(choice (const :tag "whole line" t)
2811                  (const :tag "only numbers" 1)
2812                  (const :tag "don't highlight" nil))
2813   :group 'wl-highlight)
2814
2815 (defcustom wl-highlight-signature-search-function 'wl-highlight-signature-search
2816   "Function to search signature area in the message body."
2817   :type 'function
2818   :group 'wl-highlight)
2819
2820 (defcustom wl-use-dnd (and wl-on-xemacs
2821                            (featurep 'dragdrop))
2822   "If Non-nil, support dragdrop feature in XEmacs."
2823   :type 'boolean
2824   :group 'wl-pref)
2825
2826 (defcustom wl-reset-plugged-alist t
2827   "*If non-nil, reset `elmo-plugged-alist' when startup."
2828   :type 'boolean
2829   :group 'wl-pref)
2830
2831 (defcustom wl-demo-display-logo (if (or (featurep 'xemacs)
2832                                         (module-installed-p 'image)
2833                                         (module-installed-p 'bitmap))
2834                                     t)
2835   "If it is T, show graphic logo in the startup screen.  You can set it to
2836 a symbol `bitmap', `xbm' or `xpm' in order to force the image format."
2837   :type '(radio (const :tag "Off" nil)
2838                 (const :tag "On (any format)" t)
2839                 (const xpm)
2840                 (const xbm)
2841                 (const :tag "bitmap (using BITMAP-MULE)" bitmap))
2842   :group 'wl-pref)
2843
2844 (defcustom wl-invalid-character-message "(WL:Invalid characters.)"
2845   "*A string displayed when invalid character exists."
2846   :type 'string
2847   :group 'wl-pref)
2848
2849 ;;; Internal variables
2850 (defvar wl-init nil)
2851
2852 ;; For disconnected operations.
2853 (defvar wl-plugged-hook nil)
2854 (defvar wl-unplugged-hook nil)
2855 (defcustom wl-plugged t
2856   "*Plugged state at the startup.  Nil means off-line."
2857   :type 'boolean
2858   :group 'wl
2859   :group 'wl-setting)
2860
2861 ;; Internal variables used to modeline identifiers.
2862 (defvar wl-modeline-plug-status nil)
2863 (defvar wl-modeline-plug-state-on wl-plug-state-indicator-on)
2864 (defvar wl-modeline-plug-state-off wl-plug-state-indicator-off)
2865 (defvar wl-modeline-biff-status nil)
2866 (defvar wl-modeline-biff-state-on wl-biff-state-indicator-on)
2867 (defvar wl-modeline-biff-state-off wl-biff-state-indicator-off)
2868
2869 ;; Advanced thread view.
2870 (defvar wl-thread-indent-level (if wl-on-mule 1 2)
2871   "*Indent level for thread.")
2872 (defvar wl-thread-have-younger-brother-str (if wl-on-mule "\e$B(2\e(B" "+")
2873   "*A string for thread branch line.  It should contain one character.")
2874 (defvar wl-thread-youngest-child-str       (if wl-on-mule "\e$B(1\e(B" "+")
2875   "*A string for thread branch line.  It should contain one character.")
2876 (defvar wl-thread-vertical-str             (if wl-on-mule "\e$B(-\e(B" "|")
2877   "*A string for thread branch line.  It should contain one character.")
2878 (defvar wl-thread-horizontal-str           (if wl-on-mule "\e$B(,\e(B" "-")
2879   "*A string for thread branch line.  It should contain one character.")
2880 (defvar wl-thread-space-str                (if wl-on-mule "\e$B!!\e(B" " ")
2881   "*A string for thread branch line.  It should contain one character.")
2882
2883 ;; folder icons. filename relative to wl-icon-directory
2884 (defvar wl-opened-group-folder-icon "opened.xpm"
2885   "*Icon file for opened group folder.")
2886 (defvar wl-closed-group-folder-icon "closed.xpm"
2887   "*Icon file for closed group folder.")
2888 (defvar wl-nntp-folder-icon "news.xpm"
2889   "*Icon file for nntp folder.")
2890 (defvar wl-imap-folder-icon "imap.xpm"
2891   "*Icon file for imap folder.")
2892 (defvar wl-pop-folder-icon  "pop.xpm"
2893   "*Icon file for pop folder.")
2894 (defvar wl-localdir-folder-icon "local.xpm"
2895   "*Icon file for localdir folder.")
2896 (defvar wl-localnews-folder-icon "localnews.xpm"
2897   "*Icon file for localnews folder.")
2898 (defvar wl-internal-folder-icon "internal.xpm"
2899   "*Icon file for internal folder.")
2900 (defvar wl-multi-folder-icon "multi.xpm"
2901   "*Icon file for multi folder.")
2902 (defvar wl-filter-folder-icon "filter.xpm"
2903   "*Icon file for filter folder.")
2904 (defvar wl-archive-folder-icon "archive.xpm"
2905   "*Icon file for archive folder.")
2906 (defvar wl-pipe-folder-icon "pipe.xpm"
2907   "*Icon file for pipe folder.")
2908 (defvar wl-nmz-folder-icon "nmz.xpm"
2909   "*Icon file for namazu folder.")
2910 (defvar wl-shimbun-folder-icon "shimbun.xpm"
2911   "*Icon file for shimbun folder.")
2912 (defvar wl-file-folder-icon "file.xpm"
2913   "*Icon file for file folder.")
2914 (defvar wl-maildir-folder-icon "maildir.xpm"
2915   "*Icon file for maildir folder.")
2916 (defvar wl-empty-trash-folder-icon "trash-e.xpm"
2917   "*Icon file for emptied trash folder.")
2918 (defvar wl-trash-folder-icon "trash.xpm"
2919   "*Icon file for trash folder.")
2920 (defvar wl-draft-folder-icon "draft.xpm"
2921   "*Icon file for draft folder.")
2922 (defvar wl-queue-folder-icon "queue.xpm"
2923   "*Icon file for queue folder.")
2924 (defvar wl-plugged-icon "plugged.xpm"
2925   "*Icon file for plugged state.")
2926 (defvar wl-unplugged-icon "unplugged.xpm"
2927   "*Icon file for unplugged state.")
2928 (defvar wl-biff-mail-icon "letter.xpm"
2929   "*Icon file for mail existed state.")
2930 (defvar wl-biff-nomail-icon "no-letter.xpm"
2931   "*Icon file for no mail existed state.")
2932 (defvar wl-prog-uudecode "uudecode"
2933   "*uudecode program name.")
2934 (defvar wl-prog-uudecode-arg nil
2935   "*Arguments for uudecode program.")
2936 (defvar wl-prog-uudecode-no-stdout-option t
2937   "*If non-nil, uudecode program don't have option for output to stdout.")
2938
2939 ;; plug
2940 (defvar wl-plugged-plug-on "ON")
2941 (defvar wl-plugged-plug-off "--")
2942 (defvar wl-plugged-auto-off "**")
2943 (defvar wl-plugged-server-indent 2)
2944 (defvar wl-plugged-port-indent 4)
2945 (defvar wl-plugged-queue-status-column 25)
2946
2947 ;;;; Obsolete variables.
2948
2949 ;; 2003-11-05
2950 (elmo-define-obsolete-variable 'wl-summary-new-mark
2951                                'wl-summary-new-uncached-mark)
2952
2953 ;; 2003-07-15 delete -> dispose
2954 (elmo-define-obsolete-variable 'wl-delete-folder-alist
2955                                'wl-dispose-folder-alist)
2956
2957 ;; 2002-12-25
2958 (elmo-define-obsolete-variable 'wl-draft-reply-myself-with-argument-list
2959                                'wl-draft-reply-with-argument-list)
2960 (elmo-define-obsolete-variable 'wl-draft-reply-myself-without-argument-list
2961                                'wl-draft-reply-without-argument-list)
2962
2963 ;; 2001-12-11: *-dir -> *-directory
2964 (elmo-define-obsolete-variable 'wl-icon-dir
2965                                'wl-icon-directory)
2966 (elmo-define-obsolete-variable 'wl-mime-save-dir
2967                                'wl-mime-save-directory)
2968 (elmo-define-obsolete-variable 'wl-score-files-dir
2969                                'wl-score-files-directory)
2970 (elmo-define-obsolete-variable 'wl-tmp-dir
2971                                'wl-temporary-file-directory)
2972
2973 ;; 2001-12-10
2974 (elmo-define-obsolete-variable 'wl-summary-update-confirm-threshold
2975                                'elmo-folder-update-threshold)
2976 (elmo-define-obsolete-variable 'wl-fetch-confirm-threshold
2977                                'elmo-message-fetch-threshold)
2978
2979 (elmo-define-obsolete-variable 'wl-cache-prefetch-folder-type-list
2980                                'wl-message-buffer-prefetch-folder-type-list)
2981 (elmo-define-obsolete-variable 'wl-cache-prefetch-folder-list
2982                                'wl-message-buffer-prefetch-folder-list)
2983
2984 ;; 2001-02-27: *-func -> *-function
2985 (elmo-define-obsolete-variable 'wl-summary-from-func
2986                                'wl-summary-from-function)
2987 (elmo-define-obsolete-variable 'wl-summary-subject-func
2988                                'wl-summary-subject-function)
2989 (elmo-define-obsolete-variable 'wl-summary-subject-filter-func
2990                                'wl-summary-subject-filter-function)
2991 (elmo-define-obsolete-variable 'wl-draft-send-func
2992                                'wl-draft-send-function)
2993 (elmo-define-obsolete-variable 'wl-draft-send-news-func
2994                                'wl-draft-send-news-function)
2995 (elmo-define-obsolete-variable 'wl-draft-send-mail-func
2996                                'wl-draft-send-mail-function)
2997 (elmo-define-obsolete-variable 'wl-print-buffer-func
2998                                'wl-print-buffer-function)
2999 (elmo-define-obsolete-variable 'wl-ps-print-buffer-func
3000                                'wl-ps-print-buffer-function)
3001 (elmo-define-obsolete-variable 'wl-generate-mailer-string-func
3002                                'wl-generate-mailer-string-function)
3003 (elmo-define-obsolete-variable 'wl-highlight-x-face-func
3004                                'wl-highlight-x-face-function)
3005 (elmo-define-obsolete-variable 'wl-fldmgr-sort-func
3006                                'wl-fldmgr-sort-function)
3007 (elmo-define-obsolete-variable 'wl-expire-archive-get-folder-func
3008                                'wl-expire-archive-get-folder-function)
3009 (elmo-define-obsolete-variable 'wl-highlight-signature-search-func
3010                                'wl-highlight-signature-search-function)
3011
3012 ;; 2000-01-25: temp mark -> target mark
3013 (elmo-define-obsolete-variable 'wl-summary-temp-above
3014                                'wl-summary-target-above)
3015
3016 ;; 1999-11-07: Unified with `wl-draft-config-alist'.
3017 (defvar wl-draft-prepared-config-alist nil)
3018 (make-obsolete-variable 'wl-draft-prepared-config-alist
3019                         'wl-draft-config-alist)
3020
3021 ;; 1999-10-10
3022 (elmo-define-obsolete-variable 'wl-address-filename
3023                                'wl-address-file)
3024 (elmo-define-obsolete-variable 'wl-score-default-file-name
3025                                'wl-score-default-file)
3026
3027
3028 (require 'product)
3029 (product-provide (provide 'wl-vars) (require 'wl-version))
3030
3031 ;;; wl-vars.el ends here