1 ;;; dot.wl -- sample setting file for Wanderlust -*- emacs-lisp -*-
3 ;; [[ Requirement Setting ]]
5 ;; Following must be included in ~/.emacs
6 ;; (No need if installed as XEmacs package.)
7 (autoload 'wl "wl" "Wanderlust" t)
8 (autoload 'wl-other-frame "wl" "Wanderlust on new frame." t)
9 (autoload 'wl-draft "wl-draft" "Write draft with Wanderlust." t)
12 ;; (No need if installed as XEmacs package.)
13 ;(setq wl-icon-directory "/usr/local/lib/emacs/etc")
18 ;; Disable inline display of HTML part.
19 ;; Put before load `mime-setup'
20 (setq mime-setup-enable-inline-html nil)
22 ;; Don't split large message.
23 (setq mime-edit-split-message nil)
25 ;; If lines of message are larger than this value, treat it as `large'.
26 ;(setq mime-edit-message-default-max-lines 1000)
29 ;;; [[ Private Setting ]]
32 ;(setq wl-from "Your Name <e-mail@example.com>")
34 ;; User's mail addresses.
35 (setq wl-user-mail-address-list
36 (list (wl-address-header-extract-address wl-from)
37 ;; "e-mail2@example.com"
38 ;; "e-mail3@example.net" ...
41 ;; Subscribed mailing list.
42 (setq wl-subscribed-mailing-list
45 "emacs-mime-ja@m17n.org"
46 ;; "ml@example.com" ...
49 ;; If (system-name) does not return FQDN,
50 ;; set following as a local domain name without hostname.
51 ;; ((system-name) "." wl-local-domain is used as domain part of Message-ID
52 ;; and an argument of HELO in SMTP.
53 ;(setq wl-local-domain "example.com")
55 ;; Specific domain part for message-id.
56 ;(setq wl-message-id-domain "hostname.example.com")
58 ;; Use wl-from for generating message-id.
59 ;; wl-message-id-use-wl-from precedes wl-local-domain and wl-message-id-domain.
60 ;(setq wl-message-id-use-wl-from t)
62 ;;; [[ Server Setting ]]
64 ;; Default IMAP4 server
65 (setq elmo-imap4-default-server "localhost")
67 (setq elmo-pop3-default-server "localhost")
69 (setq wl-smtp-posting-server "localhost")
70 ;; Default NNTP server
71 (setq elmo-nntp-default-server "localhost")
72 ;; NNTP server name for posting
73 (setq wl-nntp-posting-server elmo-nntp-default-server)
75 ;; IMAP authenticate type setting
76 (setq elmo-imap4-default-authenticate-type 'clear) ; raw
77 ;(setq elmo-imap4-default-authenticate-type 'cram-md5) ; CRAM-MD5
80 ;(setq wl-draft-send-mail-function 'wl-draft-send-mail-with-pop-before-smtp)
83 ;;; [[ Basic Setting ]]
85 ;; Default folder for `wl-summary-goto-folder'.
86 ;(setq wl-default-folder "+inbox")
88 ;; Default string for folder name completion.
89 ;(setq wl-default-spec "+")
92 ;(setq wl-fcc "+outbox")
94 ;; Confirm before exitting Wanderlust.
95 (setq wl-interactive-exit t)
97 ;; Confirm before sending message.
98 (setq wl-interactive-send t)
100 ;; Create opened thread.
101 ;(setq wl-thread-insert-opened t)
103 ;; Keep folder window beside summary. (3 pane)
104 ;(setq wl-stay-folder-window t)
106 ;; Truncate long lines.
107 ;(setq wl-message-truncate-lines t)
108 ;(setq wl-draft-truncate-lines t)
109 ;; Following line is needed for XEmacs older than 21.4.6.
110 ;(setq truncate-partial-width-windows nil)
112 ;; Open new frame for draft buffer.
113 ;(setq wl-draft-use-frame t)
115 ;; Don't limit indent for thread view
116 ;(setq wl-summary-indent-length-limit nil)
117 ;(setq wl-summary-width nil)
119 ;; Divide thread by change of subject.
120 ;(setq wl-summary-divide-thread-when-subject-changed t)
122 ;; Change format of thread view
123 ;(setq wl-thread-indent-level 2)
124 ;(setq wl-thread-have-younger-brother-str "+"
125 ; wl-thread-youngest-child-str "+"
126 ; wl-thread-vertical-str "|"
127 ; wl-thread-horizontal-str "-"
128 ; wl-thread-space-str " ")
130 ;; display first message automatically.
131 ;(setq wl-auto-select-first t)
133 ;; goto next folder when exit from summary.
134 ;(setq wl-auto-select-next t)
136 ;; skip folder if there is no unread message.
137 ;(setq wl-auto-select-next 'skip-no-unread)
139 ;; jump to unread message in 'N' or 'P'.
140 ;(setq wl-summary-move-order 'unread)
142 ;; notify mail arrival
143 ;(setq wl-biff-check-folder-list '("%inbox"))
144 ;(setq wl-biff-notify-hook '(ding))
150 ;; (messages in localdir, localnews, maildir are not cached.)
151 ;(setq elmo-archive-use-cache nil)
152 ;(setq elmo-nntp-use-cache t)
153 ;(setq elmo-imap4-use-cache t)
154 ;(setq elmo-pop3-use-cache t)
156 ;; Enable disconnected operation in IMAP folder.
157 (setq elmo-enable-disconnected-operation t)
159 ;; Store draft message in queue folder if message is sent in unplugged status.
160 (setq wl-draft-enable-queuing t)
161 ;; when plug status is changed from unplugged to plugged,
162 ;; queued message is flushed automatically.
163 (setq wl-auto-flush-queue t)
165 ;; offline at startup.
166 ;(setq wl-plugged nil)
167 ;; change plug status by server or port at startup.
168 ;(add-hook 'wl-make-plugged-hook
170 ; ;; Add or Change plug status for SERVER and PORT.
171 ; (elmo-set-plugged plugged(t/nil) server port)
172 ; ;; When omit port, SEVERS all port was changes.
173 ; ;; (Can't add plug status without PORT)
174 ; (elmo-set-plugged plugged(t/nil) server)
178 ;;; [[ Special Setting ]]
180 ;; bind "b" in Summary to resend-message (ala mutt's "b"ounce)
181 ;(add-hook 'wl-summary-mode-hook
183 ; (define-key wl-summary-mode-map "b" 'wl-summary-resend-message)
186 ;; open unread group folder after checking.
187 ;(add-hook 'wl-folder-check-entity-hook
189 ; (wl-folder-open-unread-folder entity)
192 ;; Change summary display function.
194 ;; Set extra field use with `elmo-msgdb-overview-entity-get-extra-field'.
195 ;; And use with auto-refile.
196 (setq elmo-msgdb-extra-fields
198 "list-id" "x-ml-name" "mailing-list"
199 "x-mail-count" "x-ml-count" "x-sequence"))
201 ;; ML message displays ML name and ML sequence number in subject.
202 (setq wl-summary-line-format "%n%T%P%M/%D(%W)%h:%m %t%[%17(%c %f%) %] %#%~%s")
203 ;; Set summary line format according to folder name.
204 ;(setq wl-folder-summary-line-format-alist
205 ; '(("^%inbox\\.emacs\\.wl$" .
206 ; "%-5l%T%P%M/%D %h:%m %-4S %[ %17f %] %t%C%s")
207 ; ("^%" . "%T%P%M/%D %h:%m %-4S %[ %17f %] %t%C%s")
208 ; ("^+" . "%n%T%P%M/%D %h:%m %-4S %[ %17f %] %t%C%s")))
210 ;; imput asynchronously.
211 ;; (utils/im-wl.el is needed to be installed.
212 ;; Don't forget setting ~/.im/Config (Smtpservers).
213 ;; note that wl-draft-enable-queuing is not valid.)
214 ;(autoload 'wl-draft-send-with-imput-async "im-wl")
215 ;(setq wl-draft-send-function 'wl-draft-send-with-imput-async)
218 ;; non-verbose User-Agent: field
219 ;(setq wl-generate-mailer-string-function
220 ; 'wl-generate-user-agent-string-1)
223 ;; Automatically save modified draft buffers in every 20 seconds.
224 ;(defun my-wl-auto-save-draft-buffers ()
225 ; (let ((buffers (wl-collect-draft)))
228 ; (set-buffer (car buffers))
229 ; (if (buffer-modified-p) (wl-draft-save))
230 ; (setq buffers (cdr buffers))))))
231 ;(run-with-idle-timer 20 t 'my-wl-auto-save-draft-buffers)
237 ;(setq wl-template-alist
240 ; ("Organization" . "organization for default")
241 ; (body . "Hello, this is XXX \n")) ; body
243 ; ("To" . "boss@example.com")
244 ; ("Subject" . "Report")
245 ; (top . "Sir, here is my report\n") ; insert in top.
246 ; (bottom-file . "~/work/report.txt") ; insert file in bottom
250 ;; Change headers in draft sending time.
251 ;(setq wl-draft-config-alist
252 ; '((reply ; see reply buffer
253 ; "^To: .*test-notsend-wl@lists\\.airs\\.net"
254 ; (template . "default")) ; template
255 ; ("^To: .*test-notsend-wl@lists\\.airs\\.net"
257 ; ("From" . wl-from) ; variable
258 ; ("Organization" . "organization")) ; string
259 ; ("^Newsgroups: test.*"
260 ; ("Organization" . "organization for nntp."))
263 ;; Change headers in draft preparation time.
264 ;(add-hook 'wl-mail-setup-hook
266 ; (unless wl-draft-reedit; ; don't apply when reedit.
267 ; (wl-draft-config-exec wl-draft-config-alist))))
271 ;; header value setting for mail reply.
273 ;; Wide window for draft buffer.
274 ;(setq wl-draft-reply-buffer-style 'full)
276 ;; Remove fullname in reply message header.
277 ;(setq wl-draft-reply-use-address-with-full-name nil)
279 ;; "a" (without-argument) reply to author (Reply-To or From).
280 ;; if 'X-ML-Name' and 'Reply-To' exists, reply to 'Reply-To'.
281 ;(setq wl-draft-reply-without-argument-list
282 ; '((("X-ML-Name" "Reply-To") . (("Reply-To") nil nil))
283 ; ("X-ML-Name" . (("To" "Cc") nil nil))
284 ; ("Followup-To" . (nil nil ("Followup-To")))
285 ; ("Newsgroups" . (nil nil ("Newsgroups")))
286 ; ("Reply-To" . (("Reply-To") nil nil))
287 ; ("Mail-Reply-To" . (("Mail-Reply-To") nil nil))
288 ; ("From" . (("From") nil nil))))
290 ;; "C-u a" (with-argument) reply to all.
291 ;(setq wl-draft-reply-with-argument-list
292 ; '(("Followup-To" . (("From") nil ("Followup-To")))
293 ; ("Newsgroups" . (("From") nil ("Newsgroups")))
294 ; ("Mail-Followup-To" . (("Mail-Followup-To") nil ("Newsgroups")))
295 ; ("From" . (("From") ("To" "Cc") ("Newsgroups")))))
297 ;; old defaults < 2.11.0
298 ;(setq wl-draft-reply-with-argument-list
299 ; '(("Reply-To" . (("Reply-To") nil nil))
300 ; ("Mail-Reply-To" . (("Mail-Reply-To") nil nil))
301 ; ("From" . (("From") nil nil))))
302 ;(setq wl-draft-reply-without-argument-list
303 ; '(("Followup-To" . (nil nil ("Followup-To")))
304 ; ("Mail-Followup-To" . (("Mail-Followup-To") nil ("Newsgroups")))
305 ; ("Reply-To" . (("Reply-To") ("To" "Cc" "From") ("Newsgroups")))
306 ; ("From" . (("From") ("To" "Cc") ("Newsgroups")))))
308 ;;; [[ Message Display Settings ]]
310 ;; Hidden header field in message buffer.
311 (setq wl-message-ignored-field-list
312 '(".*Received:" ".*Path:" ".*Id:" "^References:"
313 "^Replied:" "^Errors-To:"
314 "^Lines:" "^Sender:" ".*Host:" "^Xref:"
315 "^Content-Type:" "^Precedence:"
316 "^Status:" "^X-VM-.*:"))
318 ;; Displayed header field in message buffer.
319 ;; This value precedes `wl-message-ignored-field-list'
320 (setq wl-message-visible-field-list '("^Message-Id:"))
324 (cond ((and (featurep 'xemacs) ; for XEmacs
325 (module-installed-p 'x-face))
326 (autoload 'x-face-xmas-wl-display-x-face "x-face")
327 (setq wl-highlight-x-face-function 'x-face-xmas-wl-display-x-face))
330 ((and (not (featurep 'xemacs))
331 (= emacs-major-version 21)
332 (module-installed-p 'x-face-e21))
333 (autoload 'x-face-decode-message-header "x-face-e21")
334 (setq wl-highlight-x-face-function 'x-face-decode-message-header))
336 ;; for Emacs 19.34, Emacs 20.x
337 ((module-installed-p 'x-face-mule)
338 ;; x-face-mule distributed with bitmap-mule 8.0 or later
339 (autoload 'x-face-decode-message-header "x-face-mule")
340 (setq wl-highlight-x-face-function 'x-face-decode-message-header))
344 ;; "all.SCORE" file is used regardless of wl-score-folder-alist.
345 ;(setq wl-score-folder-alist
352 ;; rule for auto refile.
353 ;(setq wl-refile-rule-alist
356 ; ("^Wanderlust" . "+wl")
357 ; ("^Elisp" . "+elisp"))
359 ; ("foo@example\\.com" . "+foo"))))
361 ;; Marks to skip auto-refile (default is "N" "U" "!").
362 ;; nil means all message is auto-refiled.
363 ;(setq wl-summary-auto-refile-skip-marks nil)