;;; wl-vars.el -- Variable definitions for Wanderlust. ;; Copyright (C) 1998,1999,2000,2001 Yuuichi Teranishi ;; Copyright (C) 1998,1999,2000,2001 Masahiro MURATA ;; Author: Yuuichi Teranishi ;; Masahiro MURATA ;; Keywords: mail, net news ;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen). ;; This program is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any later version. ;; ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License ;; along with GNU Emacs; see the file COPYING. If not, write to the ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, ;; Boston, MA 02111-1307, USA. ;; ;;; Commentary: ;; ;;; Code: ;; (require 'elmo-vars) (if (module-installed-p 'custom) (require 'custom)) ;;; Customizable Variables (defgroup wl nil "Wanderlust, a news and mail reading software." :tag "Wanderlust" :link (` (custom-manual (, (if (and (boundp 'current-language-environment) (string-equal "Japanese" (symbol-value 'current-language-environment))) "(wl-ja)Top" "(wl)Top")))) :group 'news :group 'mail) (defgroup wl-pref nil "Wanderlust, Preferences." :prefix "wl-" :group 'wl) (defgroup wl-folder nil "Wanderlust, folder buffer." :prefix "wl-" :group 'wl) (defgroup wl-summary nil "Wanderlust, summary buffer." :prefix "wl-" :group 'wl) (defgroup wl-summary-marks nil "Wanderlust, marks used in summary buffers." :prefix "wl-summary-" :group 'wl-summary) (defgroup wl-expire nil "Wanderlust, Expiring and archiving." :prefix "wl-" :group 'wl) (defgroup wl-score nil "Wanderlust, Score file handling." :prefix "wl-" :group 'wl) (defgroup wl-highlight nil "Wanderlust, Highlights." :prefix "wl-" :group 'wl) (defgroup wl-draft nil "Wanderlust, draft mode." :prefix "wl-" :group 'wl) ;;; Emacsen (defconst wl-on-xemacs (featurep 'xemacs)) (defconst wl-on-emacs21 (and (not wl-on-xemacs) (>= emacs-major-version 21))) (defconst wl-on-nemacs (fboundp 'nemacs-version)) (defconst wl-on-mule (featurep 'mule)) (defconst wl-on-mule3 (and wl-on-mule (or wl-on-xemacs (> emacs-major-version 19)))) (eval-when-compile (defun-maybe locate-data-directory (a))) (defvar wl-cs-noconv (cond (wl-on-mule3 'binary) (wl-on-mule '*noconv*) (wl-on-nemacs 0) (t nil))) (defvar wl-cs-autoconv (cond (wl-on-mule3 'undecided) (wl-on-mule '*autoconv*) (wl-on-nemacs 2) ; junet... (t nil))) (defvar wl-cs-local (cond (wl-on-mule3 'junet) (wl-on-mule '*junet*) (wl-on-nemacs 2) (t nil))) (defvar wl-cs-cache wl-cs-local) (defvar wl-use-semi (module-installed-p 'mime-view) ; If nil, use tm. "*Use SEMI or not.") (defcustom wl-from (if (boundp 'user-mail-address) user-mail-address) "*From string used in draft." :type 'string :group 'wl) (defcustom wl-user-mail-address-list nil "*A list of user's mail addresses. This list is used to judge whether an address is user's or not. You should set this variable if you use multiple e-mail addresses. If you don't have multiple e-mail addresses, you don't have to set this." :type '(repeat string) :group 'wl) (defcustom wl-organization nil "Organization name." :type '(choice (const :tag "none" nil) string) :group 'wl) (defcustom wl-tmp-dir "~/tmp/" "*Default temporary directory to save message, part." :type 'directory :group 'wl) (defcustom wl-icon-dir (if (fboundp 'locate-data-directory) (locate-data-directory "wl") (let ((icons (expand-file-name "wl/icons/" data-directory))) (if (file-directory-p icons) icons))) "*Icon directory (XEmacs or Emacs 21)." :type '(choice (const :tag "none" nil) string) :group 'wl) (defcustom wl-summary-from-func 'wl-summary-default-from "*A function for displaying sender (From: field) information." :type 'function :group 'wl-summary) (defcustom wl-summary-subject-func 'wl-summary-default-subject "*A function for displaying subject." :type 'function :group 'wl-summary) (defcustom wl-summary-subject-filter-func 'wl-summary-default-subject-filter "*A filter function for comparing subjects." :type 'function :group 'wl-summary) (defcustom wl-summary-search-parent-by-subject-regexp "^[ \t]*\\(\\[[^:]+[,: ][0-9]+\\]\\)?[ \t]*re[\\^[:> ]" "*If message does not have in-reply-to field nor references field and subject matches this regexp, search parent message by subject matching." :type 'string :group 'wl-summary) (defcustom wl-summary-update-confirm-threshold 500 "*Confirm updating summary if message number is larger than this value." :type 'integer :group 'wl-summary) ;; Important folders (defcustom wl-default-folder "%inbox" "*Default folder used in `wl-summary-goto-folder'." :type 'string :group 'wl) (defcustom wl-draft-folder "+draft" "*Draft folder" :type 'string :group 'wl) (defcustom wl-trash-folder "+trash" "*Trash folder" :type 'string :group 'wl) (defcustom wl-queue-folder "+queue" "*Queue folder" :type 'string :group 'wl) (defcustom wl-default-spec "%" "*Default spec" :type 'string :group 'wl) (defcustom wl-insert-mail-followup-to nil "*Insert Mail-Followup-To: field if non-nil." :type 'boolean :group 'wl-draft) (defcustom wl-insert-mail-reply-to nil "*Insert Mail-Reply-To: field if non-nil." :type 'boolean :group 'wl-draft) (defcustom wl-insert-message-id t "*Insert Message-ID: field if non-nil." :type 'boolean :group 'wl-draft) (defcustom wl-auto-insert-x-face t "*Insert X-Face: field automatically." :type 'boolean :group 'wl-draft) (defcustom wl-x-face-file "~/.xface" "*X-Face field is inserted using its contents. If file exists and `wl-auto-insert-x-face' is non-nil." :type 'file :group 'wl-draft) (defcustom wl-subscribed-mailing-list nil "*Subscribed mailing list. You had better set this variable if you set 'wl-insert-mail-followup-to' as t." :type '(repeat string) :group 'wl-pref) (defcustom wl-demo t "*Display demo at start time." :type 'boolean :group 'wl-pref) (defcustom wl-envelope-from nil "*Envelope From used in SMTP. If nil, `wl-from' is used." :type '(choice (const :tag "Same as 'From' field." nil) string) :group 'wl) (defcustom wl-draft-add-references t "*If non-nil, message-id of the cited message is inserted to the references field of the current draft." :type 'boolean :group 'wl) (defcustom wl-smtp-connection-type nil "*SMTP connection type. If nil, default smtp connection type is used." :type '(choice (const :tag "default" nil) (const :tag "Use STARTTLS" starttls) symbol) :group 'wl) (defcustom wl-smtp-posting-user nil "*SMTP authentication user." :type '(choice (const :tag "none" nil) string) :group 'wl) (defcustom wl-smtp-posting-server nil "*SMTP server name to send mail (wl-draft-send-mail-with-smtp)." :type '(choice (const :tag "none" nil) string) :group 'wl) (defcustom wl-smtp-posting-port nil "*SMTP port number in `wl-smtp-posting-server'. If nil, default SMTP port number(25) is used." :type '(choice (const :tag "Default (25)" nil) integer) :group 'wl) (defcustom wl-smtp-authenticate-type nil "*SMTP Authentication type. If nil, don't authenticate." :type '(choice (const :tag "none" nil) (const :tag "PLAIN" "plain") (const :tag "CRAM-MD5" "cram-md5") (const :tag "LOGIN" "login") (string :tag "Other")) :group 'wl) (defcustom wl-pop-before-smtp-user nil "*POP3 user name to send mail using POP-before-SMTP. If nil, `elmo-default-pop3-user' is used. To use POP-before-SMTP, (setq wl-draft-send-mail-func 'wl-draft-send-mail-with-pop-before-smtp)" :type '(choice (const :tag "none" nil) string) :group 'wl) (defcustom wl-pop-before-smtp-server nil "*POP3 server for POP-before-SMTP. If nil, `elmo-default-pop3-server' is used." :type '(choice (const :tag "none" nil) string) :group 'wl) (defcustom wl-pop-before-smtp-port nil "*POP3 port for POP-before-SMTP. If nil, `elmo-default-pop3-port' is used." :type '(choice (const :tag "none" nil) integer string) :group 'wl) (defcustom wl-pop-before-smtp-stream-type nil "*Stream type for POP-before-SMTP. If nil, `elmo-default-pop3-stream-type' is used." :type 'boolean :group 'wl) (defcustom wl-pop-before-smtp-authenticate-type nil "*Default Authentication type for POP-before-SMTP. If nil, `elmo-default-pop3-authenticate-type' is used." :type '(choice (const :tag "none" nil) (const :tag "APOP" "apop") (const :tag "POP3" "user")) :group 'wl) (defcustom wl-nntp-posting-server nil "*NNTP server name to post news. If nil, `elmo-default-nntp-server' is used." :type '(choice (const :tag "none" nil) string) :group 'wl) (defcustom wl-nntp-posting-user nil "*NNTP user name to post news for authinfo. If nil, `elmo-default-nntp-user' is used. If nil, don't authenticate." :type '(choice (const :tag "none" nil) string) :group 'wl) (defcustom wl-nntp-posting-port nil "*NNTP port to post news. If nil, `elmo-default-nntp-port' is used." :type '(choice (const :tag "none" nil) integer string) :group 'wl) (defcustom wl-nntp-posting-stream-type nil "*Stream type for posting Netnews. If nil, `elmo-default-nntp-stream-type' is used." :type 'boolean :group 'wl) (defcustom wl-fetch-confirm-threshold 30000 "*Confirm fetching if message size is larger than this value." :type 'integer :group 'wl-pref) (defcustom wl-prefetch-confirm t "*Confirm prefetching if message size is larger than `wl-prefetch-threshold'." :type 'boolean :group 'wl-pref) (defcustom wl-prefetch-threshold 30000 "*Maximum size of message prefetched without confirmation. If nil, all messages prefetched regardless of its size. If message size is larger than this value, confirm prefetching when `wl-prefetch-confirm' is non-nil." :type '(choice (integer :tag "Threshold (bytes)") (const :tag "No limitation" nil)) :group 'wl-pref) (defcustom wl-cache-prefetch-threshold 30000 "*Quit forward cache prefetching if message size is larger than this value." :type 'integer :group 'wl-pref) (defcustom wl-thread-insert-opened nil "*Non-nil forces to insert thread as opened in updating." :type 'boolean :group 'wl-summary) (defcustom wl-thread-open-reading-thread t "*Non-nil forces to open reading thread." :type 'boolean :group 'wl-summary) ;;;; Hooks (defvar wl-folder-mode-hook nil "A hook called when wanderlust folder mode is started. This hook may contain the functions `wl-folder-init-icons' and `wl-setup-folder' for reasons of system internal to accord facilities for the Emacs variants.") (defvar wl-summary-toggle-disp-on-hook nil "A hook called when message is toggled.") (defvar wl-summary-toggle-disp-off-hook nil "A hook called when message is disappeared.") (defvar wl-summary-toggle-disp-folder-on-hook nil "A hook called when folder is toggled.") (defvar wl-summary-toggle-disp-folder-off-hook nil "A hook called when folder is disappeared.") (defvar wl-summary-toggle-disp-folder-message-resumed-hook nil "A hook called when message window is resumed when folder is toggled.") (defvar wl-summary-mode-hook nil "A hook called when summary mode is started. This hook may contain the function `wl-setup-summary' for reasons of system internal to accord facilities for the Emacs variants.") (defvar wl-summary-prepared-pre-hook nil "A hook called before the summary buffer has been generated.") (defvar wl-summary-prepared-hook nil "A hook called after the summary buffer has been generated.") (defvar wl-summary-sync-updated-hook nil "A hook called when update summary buffer.") (defvar wl-summary-unread-message-hook nil "A hook called when unread message is displayed.") (defvar wl-summary-edit-addresses-hook nil "A hook called when address book is edited.") (defvar wl-summary-buffer-message-saved-hook nil "A hook called when msgdb is saved.") (defvar wl-summary-buffer-mark-saved-hook nil "A hook called when mark is saved.") (defvar wl-summary-divide-thread-when-subject-changed nil "Divide thread when subject is changed.") (defvar wl-init-hook nil "A hook called when initialization is finished. This hook may contain the functions `wl-plugged-init-icons' and `wl-biff-init-icons' for reasons of system internal to accord facilities for the Emacs variants.") (defvar wl-hook nil "A hook called when Wanderlust is invoked.") (defvar wl-reply-hook nil "A hook called when replied.") (defvar wl-mail-setup-hook nil "A hook called when Draft is prepared.") (defvar wl-draft-reedit-hook nil "A hook called when Draft is re-edited.") (defvar wl-draft-send-hook '(wl-draft-config-exec) "A hook called on the draft editing buffer before sending process starts.") (defvar wl-mail-send-pre-hook nil "A hook called just before the mail sending process starts.") (defvar wl-news-send-pre-hook nil "A hook called just before the news sending process starts.") (defvar wl-message-buffer-created-hook nil "A hook called when Message buffer is prepared.") (defvar wl-message-redisplay-hook nil "A hook called when Message is displayed.") (defvar wl-message-exit-hook nil "A hook called when quit message.") (defvar wl-summary-exit-hook nil "A hook called when exit summary mode.") (defvar wl-highlight-headers-hook nil "A hook called when header is highlighted.") (defvar wl-highlight-message-hook nil "A hook called when message is highlighted.") (defvar wl-save-hook nil "A hook called when save summary and folder status.") (defvar wl-exit-hook nil "A hook called when exit wanderlust.") (defvar wl-folder-suspend-hook nil "A hook called when suspend wanderlust.") (defvar wl-biff-notify-hook nil "A hook called when a biff-notification is invoked.") (defvar wl-biff-unnotify-hook nil "A hook called when a biff-notification is removed.") (defvar wl-auto-check-folder-pre-hook nil "A hook called before auto check folders.") (defvar wl-auto-check-folder-hook nil "A hook called when auto check folders.") (defvar wl-folder-check-entity-pre-hook nil "A hook called before check entity.") (defvar wl-folder-check-entity-hook nil "A hook called when check entity.") (defvar wl-draft-config-exec-hook nil "A hook called when execute header-config on draft.") (defvar wl-summary-expire-pre-hook nil "A hook called before expire.") (defvar wl-summary-expire-hook nil "A hook called when expired.") (defvar wl-summary-archive-pre-hook nil "A hook called before archive.") (defvar wl-summary-archive-hook nil "A hook called when archived.") (defvar wl-summary-line-inserted-hook nil "A hook called when summary line is inserted.") (defvar wl-summary-insert-headers-hook nil "A hook called when insert header for search header.") (defvar wl-thread-update-children-number-hook nil "A hook called when children number is updated.") (defvar wl-folder-update-access-group-hook nil "A hook called when update access group folder.") (defvar wl-draft-cited-hook nil "A hook called after a message is cited.") (defvar wl-draft-insert-x-face-field-hook nil "A hook called after a x-face field is inserted.") (defvar wl-template-mode-hook nil "A hook called when template mode is started.") (defvar wl-score-mode-hook nil "A hook called when score mode is started.") (defvar wl-make-plugged-hook nil "A hook called when make plugged alist.") (defvar wl-plugged-exit-hook nil "A hook called when exit plugged mode.") ;;;; functions for draft (defcustom wl-draft-send-func 'wl-draft-normal-send-func "A function to send message." :type 'function :group 'wl-draft) (defcustom wl-draft-send-news-func 'wl-draft-elmo-nntp-send "A function to send news." :type 'function :group 'wl-draft) (defcustom wl-draft-send-mail-func 'wl-draft-send-mail-with-smtp "A function to send mail. Prepared candidates are 'wl-draft-send-mail-with-smtp, 'wl-draft-send-mail-with-qmail and 'wl-draft-send-mail-with-pop-before-smtp." :type '(radio (function-item wl-draft-send-mail-with-smtp) (function-item wl-draft-send-mail-with-qmail) (function-item wl-draft-send-mail-with-pop-before-smtp) (function :tag "Other")) :group 'wl-draft) (defcustom wl-draft-reply-with-argument-list '(("Reply-To" . (("Reply-To") nil nil)) ("Mail-Reply-To" . (("Mail-Reply-To") nil nil)) ("From" . (("From") nil nil))) "Alist of cons cell of ('field-name' . ('fields for To' 'fields for Cc' 'fields for Newsgroups')) 'field-name' is a string. 'fields for ***' is a list of strings. If car of each cons cell exists in original message, cdr of each cons cell is used for draft message. Default is for 'reply-to-author'." :type '(repeat (cons (choice (string :tag "Field Name") (repeat (string :tag "Field Name"))) (list (repeat :tag "Fields For To" string) (repeat :tag "Fields For Cc" string) (repeat :tag "Fields For Newsgroups" string)))) :group 'wl-draft) (defcustom wl-draft-reply-without-argument-list '(("Followup-To" . (nil nil ("Followup-To"))) ("Mail-Followup-To" . (("Mail-Followup-To") nil ("Newsgroups"))) ("Reply-To" . (("Reply-To") ("To" "Cc" "From") ("Newsgroups"))) ("From" . (("From") ("To" "Cc") ("Newsgroups")))) "Alist of cons cell of ('field-name' . ('fields for To' 'fields for Cc' 'fields for Newsgroups')) 'field-name' is a string. 'fields for ***' is a list of strings. If car of each cons cell exists in original message, cdr of each cons cell is used for draft message. Default is for 'reply-to-all'." :type '(repeat (cons (choice (string :tag "Field Name") (repeat (string :tag "Field Name"))) (list (repeat :tag "Fields For To" string) (repeat :tag "Fields For Cc" string) (repeat :tag "Fields For Newsgroups" string)))) :group 'wl-draft) (defcustom wl-draft-reply-myself-with-argument-list '(("Followup-To" . (("To") ("Cc") ("Followup-To"))) ("Newsgroups" . (("To") ("Cc") ("Newsgroups"))) ("From" . (("To") ("Cc") nil))) "Alist of cons cell of ('field-name' . ('fields for To' 'fields for Cc' 'fields for Newsgroups')) 'field-name' is a string. 'fields for ***' is a list of strings. If car of each cons cell exists in original message, cdr of each cons cell is used for draft message. Default is for 'reply-to-me'." :type '(repeat (cons (choice (string :tag "Field Name") (repeat (string :tag "Field Name"))) (list (repeat :tag "Fields For To" string) (repeat :tag "Fields For Cc" string) (repeat :tag "Fields For Newsgroups" string)))) :group 'wl-draft) (defcustom wl-draft-reply-myself-without-argument-list '(("Followup-To" . (("To") ("Cc") ("Followup-To"))) ("Newsgroups" . (("To") ("Cc") ("Newsgroups"))) ("From" . (("To") ("Cc") nil))) "Alist of cons cell of ('field-name' . ('fields for To' 'fields for Cc' 'fields for Newsgroups')) 'field-name' is a string. 'fields for ***' is a list of strings. If car of each cons cell exists in original message, cdr of each cons cell is used for draft message. Default is for 'followup-to-me'." :type '(repeat (cons (choice (string :tag "Field Name") (repeat (string :tag "Field Name"))) (list (repeat :tag "Fields For To" string) (repeat :tag "Fields For Cc" string) (repeat :tag "Fields For Newsgroups" string)))) :group 'wl-draft) (defcustom wl-draft-always-delete-myself nil "*Always delete myself from reciepient if non-nil." :type 'boolean :group 'wl-draft) (defcustom wl-draft-delete-myself-from-bcc-fcc nil "*Do not insert bcc or fcc if To and Cc fields is a member of `wl-subscribed-mailing-list'" :type 'boolean :group 'wl-draft) (defcustom wl-draft-resume-folder-window t "*Resume folder window in `wl-draft-hide'." :type 'boolean :group 'wl-draft) (defcustom wl-draft-use-frame nil "*Raise new frame when composing draft." :type 'boolean :group 'wl-draft) (defcustom wl-draft-qmail-send-plugged nil "*Send mail when plugged is on, in the `wl-draft-send-mail-with-qmail'." :type 'boolean :group 'wl-draft) (defcustom wl-draft-remove-group-list-contents t "*If non-nil, remove group list contents in `wl-draft-send-mail-with-smtp'." :type 'boolean :group 'wl-draft) ;;;; (defcustom wl-init-file "~/.wl" "*User customization setting file." :type 'file :group 'wl) (defcustom wl-folders-file "~/.folders" "*Folders file." :type 'file :group 'wl) (defcustom wl-address-file "~/.addresses" "*Addresses file." :type 'file :group 'wl) (defcustom wl-alias-file "~/.im/Aliases" "*Alias file for completion." :type 'file :group 'wl) (defcustom wl-ldap-server "localhost" "*LDAP server." :type '(string :tag "Server") :group 'wl) (defcustom wl-ldap-port nil "*LDAP port." :type '(choice (const :tag "Default port" nil) integer) :group 'wl) (defcustom wl-ldap-base "c=US" "*LDAP base." :type '(string :tag "Base") :group 'wl) (defcustom wl-use-ldap nil "*If non-nil, use LDAP for address completion." :type 'boolean :group 'wl) (defcustom wl-folder-info-save t "If non-nil, save elmo-folder-info-alist." :type 'boolean :group 'wl-folder) (defcustom wl-summary-unread-mark "!" "Mark for unread message." :type '(string :tag "Mark") :group 'wl-summary-marks) (defcustom wl-summary-important-mark "$" "Mark for important message." :type '(string :tag "Mark") :group 'wl-summary-marks) (defcustom wl-summary-new-mark "N" "Mark for new message." :type '(string :tag "Mark") :group 'wl-summary-marks) (defcustom wl-summary-unread-uncached-mark "U" "Mark for unread and uncached message." :type '(string :tag "Mark") :group 'wl-summary-marks) (defcustom wl-summary-unread-cached-mark "!" "Mark for unread but already cached message." :type '(string :tag "Mark") :group 'wl-summary-marks) (defcustom wl-summary-read-uncached-mark "u" "Mark for read but uncached message." :type '(string :tag "Mark") :group 'wl-summary-marks) (defcustom wl-summary-score-over-mark "+" "Score mark used for messages with high scores." :type '(string :tag "Mark") :group 'wl-summary-marks) (defcustom wl-summary-score-below-mark "-" "Score mark used for messages with low scores." :type '(string :tag "Mark") :group 'wl-summary-marks) (defcustom wl-summary-no-mime-folder-list (list (concat "^" (regexp-quote wl-draft-folder) "$")) "*All folders that match this list don't analysis mime." :type '(repeat string) :group 'wl-summary) (defcustom wl-summary-fix-timezone nil "*Time zone of the date string in summary mode. If nil, it is adjust to the default time zone information \(system's default time zone or environment variable TZ\)." :type '(choice (const :tag "Default time zone" nil) string) :group 'wl-summary) (defcustom wl-summary-default-score 0 "*Default message score level. All scores generated by the score files will be added to this score. If this variable is nil, scoring will be disabled." :type '(choice (const :tag "disable" nil) integer) :group 'wl-score) (defcustom wl-summary-important-above nil "*Mark all messages with a score above this variable as important. This variable is local to the summary buffers." :type '(choice (const :tag "off" nil) integer) :group 'wl-score) (defcustom wl-summary-target-above nil "*Mark all messages with a score above this variable as target. This variable is local to the summary buffers." :type '(choice (const :tag "off" nil) integer) :group 'wl-score) (defcustom wl-summary-mark-below 0 "*Mark all messages with a score below this variable as read. This variable is local to each summary buffer and usually set by the score file." :type 'integer :group 'wl-score) (defcustom wl-summary-expunge-below nil "All messages that have a score less than this variable will be expunged. This variable is local to the summary buffers." :type '(choice (const :tag "off" nil) integer) :group 'wl-score) (defcustom wl-summary-score-marks (list wl-summary-new-mark) "Persistent marks to scoring." :type '(repeat (string :tag "Mark")) :group 'wl-score) (defcustom wl-use-scoring (not wl-on-nemacs) "*If non-nil, enable scoring." :type 'boolean :group 'wl-pref) (defcustom wl-summary-rescore-partial-threshold 200 "*Summary is not scored entirely if there are messages more than this value. In sync-all or rescan." :type 'integer :group 'wl-score) (defcustom wl-score-files-dir (concat elmo-msgdb-dir elmo-path-sep) "*Name of the directory where score files will be stored. (default \"~/.elmo\")." :type 'directory :group 'wl) (defcustom wl-score-interactive-default-score 1000 "*Scoring commands will raise/lower the score with this number as the default." :type 'integer :group 'wl-score) (defcustom wl-score-expiry-days 7 "*Number of days before unused score file entries are expired. If this variable is nil, no score file entries will be expired." :type '(choice (const :tag "never" nil) number) :group 'wl-score) (defcustom wl-score-update-entry-dates t "*In non-nil, update matching score entry dates. If this variable is nil, then score entries that provide matches will be expired along with non-matching score entries." :type 'boolean :group 'wl-score) (defcustom wl-score-folder-alist nil "*Alist of folder regexp and score file." :type '(repeat (list (regexp :tag "Folder Regexp") (repeat :inline t (choice file (symbol :tag "Variable"))))) :group 'wl-score) (defcustom wl-score-folder-alist-matchone t "*If non-nil, getting only one element of `wl-score-folder-alist'." :type 'boolean :group 'wl-score) (defcustom wl-score-default-file "all.SCORE" "*Default score file name." :type 'file :group 'wl-score) (defcustom wl-score-simplify-fuzzy-regexp '("^[ \t]*\\[[^:]+[,: ][0-9]+\\][ \t]*") "*Strings to be removed when doing fuzzy matches. This can either be a regular expression or list of regular expressions." :type '(repeat regexp) :group 'wl-score) (defcustom wl-score-header-default-entry '(("number" -1000 perm =) ("subject" -1000 nil nil) ("from" -1000 perm s) ("message-id" -1000 temp e) ("references" -1000 perm e) ("to" -1000 perm s) ("cc" -1000 perm s) ("date" -1000 temp nil) ("xref" -1000 perm s) ("extra" -1000 perm s) ("chars" -1000 perm >) ("lines" -1000 perm >) ("followup" -1000 perm s) ("thread" -1000 temp s)) "*Default entry when insert score entry." :type '(repeat (list (string :tag "Header") (choice (integer :tag "Score") (const :tag "Ask" nil)) (choice (const :tag "Permanent" perm) (const :tag "Temporary" temp) (const :tag "Ask" nil)) (choice (const :tag "Regexp string" r) (const :tag "Substring" s) (const :tag "fuzzy string" f) (const :tag "Exact string" e) (const :tag "REGEXP STRING" R) (const :tag "SUBSTRING" S) (const :tag "FUZZY STRING" F) (const :tag "EXACT STRING" E) (const :tag "less than" <) (const :tag "less equal" <=) (const :tag "greater than" >) (const :tag "greater equal" >=) (const :tag "equal" =) (const :tag "Ask" nil)))) :group 'wl-score) (defcustom wl-score-mode-mime-charset 'x-ctext "*MIME Charset for score file." :type 'symbol :group 'wl-score) (defcustom wl-draft-fields '("To:" "Cc:" "Bcc:" "FCC:" "Distribution:" "Organization:" "Newsgroups:" "Followup-To:" "Mail-Followup-To:" "From:" "Reply-To:") "Fields used in draft mode." :type '(repeat (string :tag "Field")) :group 'wl-draft) (defcustom wl-draft-config-alist nil "Alist of configuration field on draft. ex. '((\"^To: .*wl@lists.airs.net\" (\"From\" . wl-from2) (\"Organization\" . wl-organization2)) (\"^To: .*hogehoge@\" (\"From\" . \"Anonymous \") wl-my-draft-config-func-hoge))" :type '(repeat (list (sexp :tag "Match") (repeat :inline t (choice (cons (sexp :tag "Field(Variable)") (sexp :tag "Value")) (sexp :tag "Function"))))) :group 'wl-draft) (defcustom wl-draft-config-matchone nil "*If non-nil, applied only one element of `wl-draft-config-alist'." :type 'boolean :group 'wl-draft) (defcustom wl-template-alist nil "Alist of template." :type '(repeat (list (string :tag "Name") (repeat :inline t (choice (cons (sexp :tag "Field(Variable)") (sexp :tag "Value")) (sexp :tag "Function"))))) :group 'wl-draft) (defcustom wl-template-visible-select t "*If non-nil, select template with visible." :type 'boolean :group 'wl-draft) (defcustom wl-template-confirm nil "*If non-nil, require your confirmation when selected template." :type 'boolean :group 'wl-draft) (defcustom wl-template-buffer-lines 7 "*Lines of template buffer." :type 'integer :group 'wl-draft) ;; queued sending. (defcustom wl-draft-enable-queuing t "*Non-nil enables queued sending." :type 'boolean :group 'wl-draft :group 'wl-pref) (defcustom wl-draft-use-cache nil "*If non-nil, sending message is cached." :type 'boolean :group 'wl-draft :group 'wl-pref) (defcustom wl-auto-flush-queue t "*If non-nil, sending queue is flushed when network status is toggled." :type 'boolean :group 'wl-draft :group 'wl-pref) (defcustom wl-draft-reply-buffer-style 'split "'split or 'full." :type '(radio (const split) (const full)) :group 'wl-draft) (defcustom wl-draft-queue-save-variables '(wl-envelope-from wl-from wl-smtp-posting-server wl-smtp-posting-user wl-smtp-posting-port wl-smtp-authenticate-type wl-smtp-connection-type wl-pop-before-smtp-server wl-pop-before-smtp-user wl-pop-before-smtp-port wl-pop-before-smtp-stream-type wl-pop-before-smtp-authenticate-type wl-nntp-posting-server wl-nntp-posting-server wl-nntp-posting-user wl-nntp-posting-port wl-nntp-posting-stream-type) "*Saving variables in queue info." :type '(repeat (sexp :tag "Variable")) :group 'wl-draft) (defcustom wl-draft-sendlog t "*Keep send state in log if non-nil." :type 'boolean :group 'wl-draft) (defcustom wl-draft-sendlog-max-size 20000 "*Max file size of sendlog." :type 'integer :group 'wl-draft) (defcustom wl-summary-default-number-column 5 "Number of columns in summary buffer." :type 'integer :group 'wl-summary) (defcustom wl-summary-number-column-alist '(("\\*.*" . 6)) "Alist of folder and its number column. If no matches, 'wl-summary-default-number-column' is used. ex. '((\"^%inbox@qmail-maildir\" . 9) (\"^-.*@news-server\" . 6))" :type '(repeat (cons (regexp :tag "Folder Regexp") integer)) :group 'wl-summary) (defcustom wl-summary-highlight t "Non-nil forces Summary buffer to be highlighted." :type 'boolean :group 'wl-summary :group 'wl-highlight) (defcustom wl-summary-lazy-highlight (and (boundp 'window-scroll-functions) (not wl-on-xemacs)) "Non-nil forces lazy summary highlighting using `window-scroll-functions'." :type 'boolean :group 'wl-summary :group 'wl-highlight) (defcustom wl-summary-highlight-partial-threshold 1000 "Summary is not highlighted entirely if there are lines more than this value. Available if only `wl-summary-lazy-highlight' is nil." :type 'integer :group 'wl-summary :group 'wl-highlight) (defcustom wl-summary-partial-highlight-above-lines 30 "If Summary has lines more than `wl-summary-highlight-partial-threshold', Summary lines are highlighted partialy above current position. Available if only `wl-summary-lazy-highlight' is nil." :type 'integer :group 'wl-summary :group 'wl-highlight) (defcustom wl-summary-cache-use t "Non-nil forces wl-summary to use cache file." :type 'boolean :group 'wl-summary) (defcustom wl-summary-auto-sync-marks t "Non-nil forces to synchronize unread/important marks." :type 'boolean :group 'wl-summary) (defcustom wl-summary-cache-file ".wl-summary-cache" "*Cache file for summary mode contents." :type 'file :group 'wl-summary) (defcustom wl-summary-view-file ".wl-summary-view" "*Current summary view." :type 'file :group 'wl-summary) (defcustom wl-thread-top-file ".wl-thread-top" "*Current thread top entity... obsolete." :type 'file :group 'wl-summary) (defcustom wl-thread-entity-file ".wl-thread-entity" "*Thread entities." :type 'file :group 'wl-summary) (defcustom wl-thread-entity-list-file ".wl-thread-entity-list" "*Thread top entity list." :type 'file :group 'wl-summary) (defcustom wl-print-buffer-func 'lpr-buffer "A function to print current buffer." :type 'function :group 'wl-pref) (defcustom wl-ps-print-buffer-func (if window-system 'ps-print-buffer-with-faces 'ps-print-buffer) "A function to print current buffer with ps-print." :type 'function :group 'wl-pref) ;;;; Preferences (defcustom wl-use-petname t "*Display petname in summary and default citation title." :type 'boolean :group 'wl-pref) (defcustom wl-use-folder-petname '(modeline) "*List of situation using folder petname. Allowed situations are: modeline : displayed on modeline. ask-folder : displayed on minibuffer when ask folder. read-folder : can used for completion at `wl-summary-read-folder'." :type '(set (const modeline) (const ask-folder) (const read-folder)) :group 'wl-summary :group 'wl-pref) (defcustom wl-folder-petname-alist nil "A list of (realname . petname)." :type '(repeat (cons (string :tag "Realname") (string :tag "Petname"))) :group 'wl-folder) (defcustom wl-summary-weekday-name-lang "ja" "*Language to display week day." :type '(choice (const "ja") (const "en") (const "fr") (const "de") (string :tag "Other")) :group 'wl-summary :group 'wl-pref) (defcustom wl-local-domain nil "*Domain part of this client (without hostname). Set this if (system-name) does not return FQDN." :type '(choice (const :tag "Use System Name" nil) string) :group 'wl-pref) (defcustom wl-message-id-domain nil "*Specific domain part of Message-ID." :type '(choice (const :tag "Use System Name" nil) string) :group 'wl-pref) (defcustom wl-break-pages t "*Break Pages at ^L." :type 'boolean :group 'wl-pref) (defcustom wl-message-scroll-amount 5 "*Scroll amount by SPC key." :type 'integer :group 'wl-pref) (defcustom wl-message-window-size '(1 . 4) "*Size of summary and message window. cons cell of (Summary : Message)." :type '(cons integer integer) :group 'wl-pref) (defcustom wl-message-sort-field-list '("Return-Path" "Received" "^To" "^Cc" "Newsgroups" "Subject" "^From") "*Sort order of header fields. Each elements are regexp of field name. (Not valid on tm.)" :type '(repeat (string :tag "Field Regexp")) :group 'wl-pref) (defcustom wl-message-ignored-field-list nil "All fields that match this list will be hidden in message buffer. Each elements are regexp of field-name." :type '(repeat (string :tag "Field Regexp")) :group 'wl-pref) (defcustom wl-message-visible-field-list nil "All fields that match this list will be displayed in message buffer. Each elements are regexp of field-name." :type '(repeat (string :tag "Field Regexp")) :group 'wl-pref) (defcustom wl-folder-window-width 20 "*Width of folder window." :type 'integer :group 'wl-folder :group 'wl-pref) (defcustom wl-summary-recenter t "*Recenter on redisplay." :type 'boolean :group 'wl-summary :group 'wl-pref) (defcustom wl-folder-use-frame nil "*Use dedicated frame for folder mode if non-nil." :type 'boolean :group 'wl-pref) (defcustom wl-summary-use-frame nil "*Use dedicated frame for each folder summary if non-nil." :type 'boolean :group 'wl-pref) (defcustom wl-stay-folder-window nil "*Stay folder window when folder is selected if non-nil." :type 'boolean :group 'wl-pref) (defcustom wl-reply-subject-prefix "Re: " "*Prefix of the subject of the replied message." :type 'string :group 'wl-draft :group 'wl-pref) (defcustom wl-draft-reply-use-address-with-full-name t "*Use address with full-name in the draft of replied message." :type 'boolean :group 'wl-pref :group 'wl-draft) (defcustom wl-subject-prefix-regexp "^[ \t]*\\([Rr][Ee][:>][ \t]*\\)*[ \t]*" "*Regexp matching \"Re: \" in the subject line." :type 'regexp :group 'wl-draft :group 'wl-pref) (defcustom wl-folder-many-unsync-threshold 70 "*Folders which contains messages more than this number are highlighted with wl-highlight-folder-many-face." :type 'integer :group 'wl-folder :group 'wl-pref) (defcustom wl-fcc nil "*Folder Carbon Copy." :type '(choice (const :tag "disable" nil) string) :group 'wl-draft :group 'wl-pref) (defcustom wl-bcc nil "*Blind Carbon Copy." :type '(choice (const :tag "disable" nil) string) :group 'wl-draft :group 'wl-pref) (defcustom wl-folder-desktop-name "Desktop" "*An implicit name of the folder top entity." :type 'string :group 'wl-folder :group 'wl-pref) (defcustom wl-summary-indent-length-limit 46 "*Limit of indent length for thread." :type 'integer :group 'wl-summary :group 'wl-pref) (defcustom wl-summary-no-from-message "nobody@nowhere?" "*A string displayed in summary when no from field exists." :type 'string :group 'wl-summary) (defcustom wl-summary-no-subject-message "(WL:No Subject in original.)" "*A string displayed in summary when no subject field exists." :type 'string :group 'wl-summary) (defcustom wl-summary-cancel-message "I'd like to cancel my message." "*The body content of a cancel message." :type 'string :group 'wl-summary) (defcustom wl-summary-width 80 "*Set summary line width if non nil." :type 'integer :group 'wl-summary :group 'wl-pref) (defcustom wl-summary-pick-field-default "Body" "*Default field for pick." :type '(radio (const "From") (const "Subject") (const "To") (const "Cc") (const "Body") (const "Since") (const "Before") (const "Last") (const "First") (string :tag "Other")) :group 'wl-summary) (defcustom wl-from-width 17 "*From width in summary." :type 'integer :group 'wl-summary :group 'wl-pref) (defcustom wl-subject-length-limit 35 "*Subject width in summary." :type 'integer :group 'wl-summary :group 'wl-pref) (defcustom wl-mime-charset (if wl-on-nemacs 'iso-2022-jp 'x-ctext) "*MIME Charset for summary and message." :type 'symbol :group 'wl-summary :group 'wl-pref) (defcustom wl-generate-mailer-string-func 'wl-generate-user-agent-string "A function to create X-Mailer field string ." :type 'function :group 'wl-draft) (defcustom wl-highlight-background-mode (if (boundp 'hilit-background-mode) (or hilit-background-mode 'dark) 'dark) "*Background mode of highlight (for Old Emacsen). 'dark or 'light." :type '(radio (const dark) (const light)) :group 'wl-highlight) (defcustom wl-highlight-x-face-func nil "A function to display X-Face." :type 'function :group 'wl-highlight) (defcustom wl-qmail-inject-program "/var/qmail/bin/qmail-inject" "Location of the qmail-inject program." :type '(string :tag "Program") :group 'wl-draft) (defcustom wl-qmail-inject-args nil "Arguments passed to qmail-inject programs. This should be a list of strings, one string for each argument. For e.g., if you wish to set the envelope sender address so that bounces go to the right place or to deal with listserv's usage of that address, you might set this variable to '(\"-f\" \"you@some.where\")." :type '(repeat (string :tag "Argument")) :group 'wl-draft) (defcustom wl-rejected-letter-start "^[\t ]*-+[\t ]+\\(original\\|\\(\\(the \\)?unsent\\)\\) message\\( follows\\)?[\t ]+-+[\t ]*$" "Regexp specifying the beginning of the wrapper around a returned letter. This wrapper is generated by the mail system when rejecting a letter." :type 'regexp :group 'wl-draft) (defcustom wl-ignored-forwarded-headers "\\(received\\|return-path\\|x-uidl\\)" "*All headers that match this regexp will be deleted when forwarding a message." :type 'regexp :group 'wl-draft) (defcustom wl-ignored-resent-headers "\\(return-receipt\\|[bdf]cc\\)" "*All headers that match this regexp will be deleted when resending a message." :type 'regexp :group 'wl-draft) (defcustom wl-refile-default-from-folder "+from" "*Folder name to refile by `wl-refile-guess-by-from'." :type '(string :tag "Folder") :group 'wl-pref) (defcustom wl-summary-auto-refile-skip-marks (list wl-summary-new-mark wl-summary-unread-uncached-mark wl-summary-unread-cached-mark) "Persistent marks to skip auto-refiling." :type '(repeat (string :tag "Mark")) :group 'wl-summary) (defcustom wl-summary-reserve-mark-list (list "o" "O" "D") "If a message is already marked as temporal marks in this list, the message is not marked by any mark command." :type '(repeat (string :tag "Temp-Mark")) :group 'wl-summary) (defcustom wl-summary-skip-mark-list (list "D") "If a message is already marked as temporal marks in this list, the message is skipped at cursor move." :type '(repeat (string :tag "Temp-Mark")) :group 'wl-summary) (defcustom wl-summary-incorporate-marks (list wl-summary-new-mark wl-summary-unread-uncached-mark) "Persistent marks to prefetch at `wl-summary-incorporate'." :type '(repeat (string :tag "Mark")) :group 'wl-summary) (defcustom wl-refile-rule-alist nil "Refile rule alist. e.x. '( (\"From\" (\"teranisi@isl.ntt.co.jp\" . \"+teranisi\")) (\"x-ml-name\" (\"^Wanderlust\" . \"+wl\") (\"^Elips\" . \"+elips\")))" :type '(repeat (list (string :tag "Field") (repeat :inline t (cons (regexp :tag "Value") (string :tag "Folder"))))) :group 'wl-pref) (defcustom wl-strict-diff-folders nil "List of regexps matching folders of which Wanderlust seriously counts unsync messages." :type '(choice (const :tag "Off" nil) (repeat (regexp :tag "Folder Regexp"))) :group 'wl-folder) (defcustom wl-folder-use-server-diff t "Checked unread message number on IMAP4 server. Only IMAP4 folders have an effect." :type 'boolean :group 'wl-folder) (defcustom wl-force-fetch-folders nil "Non-nil forces to fetch subfolders when user opened an 'access' folder." :type '(choice (const :tag "off" nil) (const :menu-tag "on" t) (repeat (regexp :tag "Folder Regexp"))) :group 'wl-folder) (defcustom wl-auto-check-folder-name nil "*The folder specified by this variable will be automatically checked at start time." :type '(choice (string :tag "Folder") (repeat (string :tag "Folder")) (const none)) :group 'wl-folder) (defcustom wl-auto-uncheck-folder-list '("\\$.*") "All folders that match this list won't be checked when group is automatically checked (or desktop is checked). This value is preceded by wl-auto-check-folder-list. Each elements are regexp of folder name." :type '(repeat (regexp :tag "Folder Regexp")) :group 'wl-folder) (defcustom wl-auto-check-folder-list nil "All folders that match this list are checked when group is automatically checked (or desktop is checked). This value precedes wl-auto-uncheck-folder-list. Each elements are regexp of folder name." :type '(repeat (regexp :tag "Folder Regexp")) :group 'wl-folder) (defcustom wl-show-plug-status-on-modeline t "If it is non-nil, show plugged status in modeline." :type 'boolean :group 'wl-highlight) (defcustom wl-plug-state-indicator-on " [ON] " "String used to show plugged status ON." :type 'string :group 'wl-highlight) (defcustom wl-plug-state-indicator-off " [--] " "String used to show plugged status OFF." :type 'string :group 'wl-highlight) (defcustom wl-biff-check-folder-list nil "All folders that match this list are automatically checked every intervals specified by wl-biff-check-interval." :type '(repeat (regexp :tag "Folder Regexp")) :group 'wl-highlight) (defcustom wl-biff-check-interval 40 "Number of seconds between updates of new mails in the mode line." :type 'integer :group 'wl-highlight) (defcustom wl-biff-state-indicator-on (if (and (featurep 'xemacs) (not (featurep 'mule))) "[Mail]" (decode-coding-string (read "\"[\e$B\\\")\e(B]\"") 'iso-2022-jp)) ; Youbin mark "String used to show biff status ON." :type 'string :group 'wl-highlight) (defcustom wl-biff-state-indicator-off "[‐]" "String used to show biff status OFF." :type 'string :group 'wl-highlight) (defcustom wl-mode-line-display-priority-list '(biff plug title) "Displaying order of items to be shown in modeline. The first item will be placed in the leftmost. The significant items are `biff' and `plug'; otherwise, e.g. `title', corresponds to the things except for the biff staus nor the plugged status. The default order is '(biff plug title) even if the value of this option is set to nil. Here are some samples: ;; Plugged status first: \(setq wl-mode-line-display-priority-list '(plug)) ;; Biff status, Title of Wanderlust, Plugged status: \(setq wl-mode-line-display-priority-list '(biff title plug)) " :type '(repeat (radio (const :format "%v " biff) (const :format "%v " plug) (sexp :tag "Other" :value title))) :group 'wl-highlight) (defcustom wl-interactive-send nil "*If non-nil, require your confirmation when sending draft message." :type 'boolean :group 'wl-pref) (defcustom wl-interactive-exit t "*If non-nil, require your confirmation when exiting WL." :type 'boolean :group 'wl-pref) (defcustom wl-summary-move-order 'unread "*The order of priority when move in summary mode. If this variable is `unread', precede \"U\", \"!\", \"N\" mark. If this variable is `new', precede \"N\" mark." :type '(radio (const new) (const unread)) :group 'wl-summary) (defvar wl-summary-move-direction-downward t) (defcustom wl-summary-move-direction-toggle t "*If non-nil, search direction for the next message will be determined depends on previous search direction. It uses wl-summary-move-direction-downward as a direction flag." :type 'boolean :group 'wl-summary) (defcustom wl-auto-select-first nil "*If non-nil, display selected first message when enter summary." :type 'boolean :group 'wl-pref) (defcustom wl-auto-select-next nil "*If non-nil, offer to go to the next folder from the end of the previous. If the value is the symbol `unread', go to the next folder that no unread message exists. If the value is the symbol `skip-no-unread', skip the folder that no unread message exists. See also variable `wl-summary-next-no-unread-command'." :type '(radio (const :tag "off" nil) (const :tag "on" t) (const unread) (const skip-no-unread)) :group 'wl-pref) (defcustom wl-cache-prefetch-folder-type-list '(imap4 nntp) "*All folder types that match this list prefetch next message, and reserved buffer cache." :type '(set (const localdir) (const localnews) (const imap4) (const nntp) (const pop3) (const archive) (const internal)) :group 'wl-pref) (defcustom wl-cache-prefetch-folder-list nil "*All folders that match this list prefetch next message, and reserved buffer cache. e.x. '(\"^[-%]\")" :type '(repeat (regexp :tag "Folder Regexp")) :group 'wl-pref) (defcustom wl-cache-prefetch-get-next-func 'wl-summary-default-get-next-msg "*A function to get message number when prefetch next message." :type 'function :group 'wl-pref) ;; obsolete ;(defvar wl-no-cache-folder-list '("^\\$.*") ; "All folders that match this list won't be cached when reading messages. ;Each elements are regexp of folder name.") (defcustom wl-summary-always-sticky-folder-list nil "All folders that match this list has sticky summary. Each elements are regexp of folder name." :type '(radio (const :tag "none" nil) (const :tag "all" t) (repeat (regexp :tag "Folder Regexp"))) :group 'wl-pref) (defcustom wl-no-save-folder-list '("^/.*$") "All folders that match this list won't save its msgdb. Each elements are regexp of folder name." :type '(repeat (regexp :tag "Folder Regexp")) :group 'wl-pref) (defcustom wl-save-folder-list nil "All folders that match this list save its msgdb. Each elements are regexp of folder name." :type '(repeat (regexp :tag "Folder Regexp")) :group 'wl-pref) (defcustom wl-folder-mime-charset-alist '(("^-alt\\.chinese" . big5) ("^-relcom\\." . koi8-r) ("^-tw\\." . big5) ("^-han\\." . euc-kr)) "Charset alist. If no match, `wl-mime-charset' is used." :type '(repeat (cons (regexp :tag "Folder Regexp") (symbol :tag "Charset"))) :group 'wl-summary :group 'wl-pref) (defcustom wl-folder-weekday-name-lang-alist '(("^-alt\\.chinese" . "en") ("^-relcom\\." . "en") ("^-tw\\." . "en") ("^-han\\." . "en")) "Weekday name lang alist. If no match, `wl-summary-weekday-name-lang' is used. e.x. '((\"xemacs-beta$\" . \"en\") (\"^-fj\" . \"ja\"))" :type '(repeat (cons (regexp :tag "Folder Regexp") (choice (const "ja") (const "en") (const "fr") (const "de") (string :tag "Other")))) :group 'wl-pref) (defcustom wl-folder-thread-indent-set-alist '(("^-alt\\.chinese" . (2 "+" "+" "|" "-" " ")) ("^-relcom\\." . (2 "+" "+" "|" "-" " ")) ("^-tw\\." . (2 "+" "+" "|" "-" " ")) ("^-han\\." . (2 "+" "+" "|" "-" " "))) "Thread indent set alist. If no match, following indent set is used. (wl-thread-indent-level wl-thread-have-younger-brother-str wl-thread-youngest-child-str wl-thread-vertical-str wl-thread-horizontal-str wl-thread-space-str) e.x. '((\"xemacs-beta$\" . (2 \"+\" \"+\" \"|\" \"-\" \" \")))" :type '(repeat (cons (regexp :tag "Folder Regexp") (group (integer :tag "Indent") (string :tag "Yonger Brother") (string :tag "Yonger Child") (string :tag "Vertical") (string :tag "Horizontal") (string :tag "Space")))) :group 'wl-pref) (defcustom wl-folder-sync-range-alist (list (cons (concat "^" (regexp-quote wl-draft-folder) "$\\|^" (regexp-quote wl-queue-folder) "$") "all")) "*Default sync range alist. If no matches, `wl-default-sync-range' is used." :type '(repeat (cons (regexp :tag "Folder Regexp") (choice (const "update") (const "all") (const "rescan") (const "first:") (const "last:") (const "no-sync") (const :tag "none" nil)))) :group 'wl-pref) (defcustom wl-default-sync-range "update" "*Default sync range." :type '(choice (const "update") (const "all") (const "rescan") (const "first:") (const "last:") (const "no-sync") (const :tag "none" nil)) :group 'wl-pref) (defcustom wl-ask-range t "*If non-nil, ask for a range for summary synchronization. If nil, always use default." :type 'boolean :group 'wl-pref) (defcustom wl-folder-move-cur-folder nil "*Non-nil, move to current folder on folder-mode when goto folder." :type 'boolean :group 'wl-folder) (defcustom wl-folder-check-async (not wl-on-nemacs) "*Check the folder asynchronous." :type 'boolean :group 'wl-folder) (defcustom wl-folder-notify-deleted nil "*Non-nil, display negative number on folder-mode when message is deleted in folder. If the value is 'sync, msgdb would be synchronized." :type '(choice (const :tag "off" nil) (const :tag "on" t) (const sync)) :group 'wl-folder) (defcustom wl-summary-exit-next-move t "*Non-nil, move to next-unsync or next-entity when exit summary." :type 'boolean :group 'wl-summary) (defcustom wl-summary-next-no-unread-command '(wl-summary-read wl-summary-down wl-summary-up) "*Command list available when the value of `wl-auto-select-next' is 'unread or 'skip-no-unread." :type '(repeat function) :group 'wl-summary) (defcustom wl-summary-search-via-nntp 'confirm "*Non-nil, search message via nntp after `wl-summary-jump-to-msg-by-message-id'. If the value is 'confirm, confirm before search." :type 'boolean :group 'wl-summary) (defcustom wl-summary-keep-cursor-command '(wl-summary-goto-folder wl-summary-goto-last-visited-folder) "*Command list to keep cursor position when folder is changed to already existing summary." :type '(repeat function) :group 'wl-summary) (defcustom wl-summary-showto-folder-regexp nil "Regexp specifying the folder that shows the To (or Newsgroups) field as Sender information in summary mode." :type '(choice (const :tag "none" nil) regexp) :group 'wl-summary) (defcustom wl-folder-removed-mark "#" "Mark for removed folder." :type 'string :group 'wl-folder) (defcustom wl-folder-unsubscribe-mark "#" "Mark for unsubscribe folder." :type 'string :group 'wl-folder) (defcustom wl-delete-folder-alist '(("^-" . remove)) "*Alist of folder and delete policy. Each element is (folder-regexp . policy). The policy is one of the followings: 'remove or 'null : remove message. string : refile to the specified folder. 'trash or otherwise : refile to the `wl-trash-folder'. ex. '((\"^%\" . \"%#mh/trash\") (\"^-\" . remove) (\"^\\\\+\" . trash))" :type '(repeat (cons (regexp :tag "Folder Regexp") (choice :tag "Policy" (const remove) (const :tag "remove(null)" null) (const trash) (const :tag "trash(other)" trash) (string :tag "Folder")))) :group 'wl-folder) (defcustom wl-refile-policy-alist '(("^[-=']" . copy) (".*" . move)) "*List of refile policy. Each element is (FOLDER-REGEXP . POLICY). POLICY is copy or move." :type '(repeat (cons (regexp :tag "Folder Regexp") (choice (const copy) (const move)))) :group 'wl-summary :group 'wl-pref) (defcustom wl-folder-hierarchy-access-folders '("-" "-alt") "*Access group folders to make hierarchy structure." :type '(repeat (string :tag "Folder")) :group 'wl-folder) (defcustom wl-folder-init-load-access-folders nil "*Access group folders to load folder list on `wl-folder-init'. If this variable is non-nil, `wl-folder-init-no-load-access-folders' will be ignored." :type '(repeat (regexp :tag "Folder Regexp")) :group 'wl-folder) (defcustom wl-folder-init-no-load-access-folders nil "*Access group folders to not load folder list on `wl-folder-init'. If `wl-folder-init-load-access-folders' is non-nil, this variable will be ignored." :type '(repeat (regexp :tag "Folder Regexp")) :group 'wl-folder) (defcustom wl-folder-access-subscribe-alist nil "*Subscribe folders to fetching folder entries. Each element is (group-regexp (subscribe folder-regexp ...)). If subscribe is non-nil, subscribe when match folder-regexp. If subscribe is nil, unsubscribe when match folder-regexp. ex. '((\"^-fj$\" . (t \"^-fj\\\\.\\\\(editor\\\\|mail\\\\|net\\\\|news\\\\)\")) (\"^-comp$\" . (t \"^-comp\\\\.unix\" \"^-comp\\\\.sys\")) (\"^-$\" . (nil \"^-alt\" \"^-rec\")))" :type '(repeat (cons (regexp :tag "Folder Regexp") (list (boolean :tag "Subscribed") (repeat :inline t (regexp :tag "Folder Regexp"))))) :group 'wl-folder) ;;; For Folder Manager (defcustom wl-interactive-save-folders t "*Non-nil require your confirmation when save folders." :type 'boolean :group 'wl-folder) (defcustom wl-fldmgr-make-backup t "*Non-nil make backup file when save folders." :type 'boolean :group 'wl-folder) (defcustom wl-fldmgr-folders-indent "\t" "*Indent string for folders file." :type 'string :group 'wl-folder) (defcustom wl-fldmgr-sort-func 'wl-fldmgr-sort-standard "*A function to sort folder." :type 'function :group 'wl-folder) (defcustom wl-fldmgr-sort-group-first t "*Non-nil Group folder is first when sort." :type 'function :group 'wl-folder) (defcustom wl-fldmgr-add-complete-with-current-folder-list nil "*If non-nil, completion for adding folder refers current folder list." :type 'boolean :group 'wl-folder) (defcustom wl-fldmgr-make-filter-default "Body" "*Default filter key while making filter on Folder." :type '(radio (const "From") (const "Subject") (const "To") (const "Cc") (const "Body") (const "Since") (const "Before") (const "Last") (const "First") (string :tag "Other")) :group 'wl-folder) ;;; For Expire and Archive (defcustom wl-expire-alist nil "Alist to decide a policy for expire. Each element is (folder-regexp (number or date) policy). The policy is one of the followings: 'remove : remove messsage. 'trash : refile `wl-trash-folder'. string : refile string folder. function : call function. ex. '((\"^\\\\+ml/wl$\" (number 500 510) wl-expire-archive-number1 t) (\"^\\\\+ml/\" (number 300 305) wl-expire-archive-number2) (\"^\\\\+outbox$\" (number 300) \"$outbox;lha\") (\"^\\\\(\\\\+tmp\\\\|\\\\+trash\\\\)$\" (date 7) remove) (\"^\\\\+misc$\" (date 14) trash))" :type '(repeat (choice (list :tag "No-match" (regexp :tag "Folder Regexp") (const nil)) (list :tag "Match" (regexp :tag "Folder Regexp") (list (radio :value number (const number) (const date)) (list :inline t integer (repeat :inline t integer))) (choice :tag "Policy" :value remove (const remove) (const trash) (string :tag "folder") function) (repeat :inline t :tag "Arg for function" sexp)))) :group 'wl-expire) (defcustom wl-archive-alist '((".*" wl-archive-number1)) "Alist to decide a policy for archive. Each element is (folder-regexp policy(function)). ex. '((\"\\\\+work$\" wl-archive-date) (\"\\\\+ml/\" wl-archive-number1) (\".*\" wl-archive-number2))" :type '(repeat (list (regexp :tag "Folder Regexp") function (repeat :inline t (sexp :tag "Argument")))) :group 'wl-expire) (defcustom wl-summary-expire-reserve-marks (list wl-summary-important-mark wl-summary-new-mark wl-summary-unread-mark wl-summary-unread-uncached-mark wl-summary-unread-cached-mark) "Permanent marks of reserved message when expire. Don't reserve temporary mark message. ex. 'all : reserved all permanent marks. 'none : not reserve permanent marks. list : reserved specified permanent marks." :type '(repeat (string :tag "Mark")) :group 'wl-expire) (defcustom wl-expire-number-with-reserve-marks nil "If non-nil, include reserve message when expire by number." :type 'boolean :group 'wl-expire) (defcustom wl-expire-add-seen-list t "*If non-nil, add seen message list when refile message at expire." :type 'boolean :group 'wl-expire) (defcustom wl-expire-use-log nil "*If non-nil, write a log when expired." :type 'boolean :group 'wl-expire) (defcustom wl-expire-folder-update-msgdb t "*Non-nil update summary msgdb when expire on folder mode." :type 'boolean :group 'wl-expire) ;; for wl-expire-archive-{number1|number2} (defcustom wl-expire-archive-files 100 "*The number of one archive folder." :type 'integer :group 'wl-expire) ;; for wl-expire-archive-{number1|number2|date} (defcustom wl-expire-archive-get-folder-func 'wl-expire-archive-get-folder "*A function to get archive folder name." :type 'function :group 'wl-expire) (defcustom wl-expire-delete-oldmsg-confirm t "*If non-nil, require your confirmation when delete old message." :type 'boolean :group 'wl-expire) ;; for wl-expire-archive-get-folder (defcustom wl-expire-archive-folder-type 'zip "*Archiver type of archive folder." :type '(radio (const zip) (const lha) (const zoo) (const rar) (const tar) (const tgz) (symbol :tag "Other")) :group 'wl-expire) (defcustom wl-expire-archive-folder-name-fmt "%s-%%05d;%s" ;; $folder-00100;zip "*A format string for archive folder name." :type 'string :group 'wl-expire) (defcustom wl-expire-archive-folder-num-regexp "-\\([0-9]+\\);" "*A regexp string for archive folder name." :type 'string :group 'wl-expire) (defcustom wl-expire-archive-date-folder-name-fmt "%s-%%04d%%02d;%s" ;; $folder-199812;zip "*A format string for archive date folder name." :type 'string :group 'wl-expire) (defcustom wl-expire-archive-date-folder-num-regexp "-\\([0-9]+\\);" "*A regexp string for archive date folder name." :type 'string :group 'wl-expire) (defcustom wl-expire-archive-folder-prefix nil "*Prefix for archive folder." :type '(radio (const :tag "nothing" nil) (const :tag "full" t) (const short)) :group 'wl-expire) ;;;; Highlights. ;; highilght about summary (defcustom wl-highlight-max-summary-lines 10000 "*If the summary is larger than this lines, don't highlight it." :type 'integer :group 'wl-highlight) ;; highilght about draft and message (defcustom wl-highlight-body-too t "*In addition to header, highlight the body too. if non nil." :type 'boolean :group 'wl-highlight) (defcustom wl-highlight-message-header-alist '(("Subject[ \t]*:" . wl-highlight-message-important-header-contents) ("From[ \t]*:\\|To[ \t]*:" . wl-highlight-message-important-header-contents2) ("X-[^ \t]*:\\|User-Agent[ \t]*:" . wl-highlight-message-unimportant-header-contents)) "" :type '(repeat (cons regexp face)) :group 'wl-highlight) (defcustom wl-highlight-message-header-button-alist (` (("^\\(References\\|Message-Id\\|In-Reply-To\\):" "<[^>]+>" 0 wl-message-button-refer-article 0) ("^[^:]+:" "\\(<\\(url: \\)?news:\\([^>\n ]*\\)>\\)" 1 wl-message-button-refer-article 3))) "Alist of headers and regexps to match buttons in message headers." :type '(repeat (list (regexp :tag "Header") regexp (integer :tag "Button") (function :tag "Callback") (repeat :tag "Data" :inline t (integer :tag "Regexp group")))) :group 'wl-highlight) (defcustom wl-highlight-citation-prefix-regexp "^[>|:} ]*[>|:}]\\([^ \n>]*>\\)?\\|^[^ <\n>]*>" "All lines that match this regexp will be highlighted with `wl-highlight-message-cited-text-*' face." :type 'regexp :group 'wl-highlight) (defcustom wl-highlight-highlight-citation-too nil "*Whether the whole citation line should go in the `wl-highlight-citation-face' face. If nil, the text matched by `wl-highlight-citation-prefix-regexp' is in the default face, and the remainder of the line is in the wl-highlight-message-cited-text face." :type 'boolean :group 'wl-highlight) (defcustom wl-highlight-force-citation-header-regexp "^>>>.*$\\|^[ \t]*<[^>]*>[ \t]*$" "*The pattern to match the prolog of a cited block. Text in the body of a message which matches this will be displayed in the `wl-highlight-message-headers' face." :type 'regexp :group 'wl-highlight) (defcustom wl-highlight-citation-header-regexp (concat "In article.*$\\|In message.*$\\|In the message.*$\\|" "^At[^\n]+\n[^\n]+wrote:\n\\|" "^.*\\(writes\\|wrote\\|said\\):\n") "*The pattern to match the prolog of a cited block. Text in the body of a message which matches this will be displayed in the `wl-highlight-message-headers' face." :type 'regexp :group 'wl-highlight) (defcustom wl-highlight-max-header-size nil "*If the message header is larger than this many chars, don't highlight it. If this is nil, all headers will be highlighted." :type 'integer :group 'wl-highlight) (defcustom wl-highlight-max-message-size 10000 "*If the message body is larger than this many chars, don't highlight it. This is to prevent us from wasting time trying to fontify things like uuencoded files and large digests. If this is nil, all messages will be highlighted." :type 'integer :group 'wl-highlight) ;; highilght about signature (of draft and message) (defcustom wl-highlight-signature-separator '("\n--+\n" "\n\n--+.*\n*\\'") "List of regexps matching signature separator. It will be verified from head to tail looking for a separator. Verification will be done from the end of the buffer. No need to specify \"^-- $\" in this list, because it is verified by default. This variable can also be a regex." :type '(repeat regexp) :group 'wl-highlight) (defcustom wl-max-signature-size 400 "*If the signature is larger than this chars, don't treat it as a signature." :type 'integer :group 'wl-highlight) ;; highilght about mouse (defcustom wl-use-highlight-mouse-line (and window-system (>= emacs-major-version 19)) "*Highlight mouse line, if non nil." :type 'boolean :group 'wl-highlight) ;; highilght about folder (defcustom wl-highlight-folder-with-icon (or (and (featurep 'xemacs) (featurep 'xpm)) wl-on-emacs21) "*Highlight folder with icon(XEmacs or Emacs 21)." :type 'boolean :group 'wl-highlight) (defcustom wl-highlight-folder-by-numbers t "Highlight folder lines by numbers. If it is a number, only numbers will be highlighted." :type '(choice (const :tag "whole line" t) (const :tag "only numbers" 1) (const :tag "don't highlight" nil)) :group 'wl-highlight) (defcustom wl-highlight-signature-search-func 'wl-highlight-signature-search "Function to search signature area in the message body." :type 'function :group 'wl-highlight) (defcustom wl-use-dnd (and wl-on-xemacs (featurep 'dragdrop)) "If Non-nil, support dragdrop feature in XEmacs." :type 'boolean :group 'wl-pref) (defcustom wl-reset-plugged-alist t "*If non-nil, reset `elmo-plugged-alist' when startup." :type 'boolean :group 'wl-pref) (defcustom wl-demo-display-logo (if (or (featurep 'xemacs) (module-installed-p 'image) (module-installed-p 'bitmap)) t) "If it is T, show graphic logo in the startup screen. You can set it to a symbol `bitmap', `xbm' or `xpm' in order to force the image format." :type '(radio (const :tag "Off" nil) (const :tag "On (any format)" t) (const xpm) (const xbm) (const :tag "bitmap (using BITMAP-MULE)" bitmap)) :group 'wl-pref) ;;; Internal variables (defvar wl-init nil) ;; For disconnected operations. (defvar wl-plugged-hook nil) (defvar wl-unplugged-hook nil) (defvar wl-plugged t) ;; Internal variables used to modeline identifiers. (defvar wl-modeline-plug-status nil) (defvar wl-modeline-plug-state-on wl-plug-state-indicator-on) (defvar wl-modeline-plug-state-off wl-plug-state-indicator-off) (defvar wl-modeline-biff-status nil) (defvar wl-modeline-biff-state-on wl-biff-state-indicator-on) (defvar wl-modeline-biff-state-off wl-biff-state-indicator-off) ;; Advanced thread view. (defvar wl-thread-indent-level 1 "*Indent level for thread.") (defvar wl-thread-have-younger-brother-str "┣" "*A string for thread branch line. It should contain one character.") (defvar wl-thread-youngest-child-str "┗" "*A string for thread branch line. It should contain one character.") (defvar wl-thread-vertical-str "┃" "*A string for thread branch line. It should contain one character.") (defvar wl-thread-horizontal-str "━" "*A string for thread branch line. It should contain one character.") (defvar wl-thread-space-str " " "*A string for thread branch line. It should contain one character.") (defvar wl-highlight-thread-indent-string-regexp "[^[<]*" "* A regexp string for thread indent...for highlight.") ;; folder icons. filename relative to wl-icon-dir (defvar wl-opened-group-folder-icon "opened.xpm" "*Icon file for opened group folder.") (defvar wl-closed-group-folder-icon "closed.xpm" "*Icon file for closed group folder.") (defvar wl-nntp-folder-icon "news.xpm" "*Icon file for nntp folder.") (defvar wl-imap-folder-icon "imap.xpm" "*Icon file for imap folder.") (defvar wl-pop-folder-icon "pop.xpm" "*Icon file for pop folder.") (defvar wl-localdir-folder-icon "local.xpm" "*Icon file for localdir folder.") (defvar wl-localnews-folder-icon "localnews.xpm" "*Icon file for localnews folder.") (defvar wl-internal-folder-icon "internal.xpm" "*Icon file for internal folder.") (defvar wl-multi-folder-icon "multi.xpm" "*Icon file for multi folder.") (defvar wl-filter-folder-icon "filter.xpm" "*Icon file for filter folder.") (defvar wl-archive-folder-icon "archive.xpm" "*Icon file for archive folder.") (defvar wl-pipe-folder-icon "pipe.xpm" "*Icon file for pipe folder.") (defvar wl-maildir-folder-icon "maildir.xpm" "*Icon file for maildir folder.") (defvar wl-empty-trash-folder-icon "trash-e.xpm" "*Icon file for emptied trash folder.") (defvar wl-trash-folder-icon "trash.xpm" "*Icon file for trash folder.") (defvar wl-draft-folder-icon "draft.xpm" "*Icon file for draft folder.") (defvar wl-queue-folder-icon "queue.xpm" "*Icon file for queue folder.") (defvar wl-plugged-icon "plugged.xpm" "*Icon file for plugged state.") (defvar wl-unplugged-icon "unplugged.xpm" "*Icon file for unplugged state.") (defvar wl-biff-mail-icon "letter.xpm" "*Icon file for mail existed state.") (defvar wl-biff-nomail-icon "no-letter.xpm" "*Icon file for no mail existed state.") (defvar wl-prog-uudecode "uudecode" "*uudecode program name.") (defvar wl-prog-uudecode-arg nil "*Arguments for uudecode program.") (defvar wl-prog-uudecode-no-stdout-option t "*If non-nil, uudecode program don't have option for output to stdout.") ;; Obsolete variables. for compatibility. (defvar wl-address-filename wl-address-file) (make-obsolete-variable 'wl-address-filename 'wl-address-file) (defvar wl-score-default-file-name wl-score-default-file) (make-obsolete-variable 'wl-score-default-file-name 'wl-score-default-file) (defvar wl-draft-prepared-config-alist nil) (make-obsolete-variable 'wl-draft-prepared-config-alist 'wl-draft-config-alist) (defvar wl-score-files-directory wl-score-files-dir) (make-obsolete-variable 'wl-score-files-directory 'wl-score-files-dir) (defvar wl-summary-temp-above wl-summary-target-above) (make-obsolete-variable 'wl-summary-temp-above 'wl-summary-target-above) ;; plug (defvar wl-plugged-plug-on "ON") (defvar wl-plugged-plug-off "--") (defvar wl-plugged-auto-off "**") (defvar wl-plugged-server-indent 2) (defvar wl-plugged-port-indent 4) (defvar wl-plugged-queue-status-column 25) (require 'product) (product-provide (provide 'wl-vars) (require 'wl-version)) ;;; wl-vars.el ends here