* elmo-imap4.el (elmo-imap4-folder-list-flagged)
[elisp/wanderlust.git] / samples / en / dot.wl
1 ;;; dot.wl -- sample setting file for Wanderlust        -*- emacs-lisp -*-
2
3 ;; [[ Requirement Setting ]]
4
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)
10
11 ;; Icon directory
12 ;; (No need if installed as XEmacs package.)
13 ;(setq wl-icon-directory "/usr/local/lib/emacs/etc")
14
15
16 ;; [[ SEMI Setting ]]
17
18 ;; Disable inline display of HTML part.
19 ;; Put before load `mime-setup'
20 (setq mime-setup-enable-inline-html nil)
21
22 ;; Don't split large message.
23 (setq mime-edit-split-message nil)
24
25 ;; If lines of message are larger than this value, treat it as `large'.
26 ;(setq mime-edit-message-default-max-lines 1000)
27
28
29 ;;; [[ Private Setting ]]
30
31 ;; Header From:
32 ;(setq wl-from "Your Name <e-mail@example.com>")
33
34 ;; If (system-name) does not return FQDN,
35 ;; set following as a local domain name without hostname.
36 ;(setq wl-local-domain "example.com")
37
38 ;; User's mail addresses.
39 (setq wl-user-mail-address-list
40       (list (wl-address-header-extract-address wl-from)
41             ;; "e-mail2@example.com"
42             ;; "e-mail3@example.net" ...
43             ))
44
45 ;; Subscribed mailing list.
46 (setq wl-subscribed-mailing-list
47       '("wl@lists.airs.net"
48         "apel-ja@m17n.org"
49         "emacs-mime-ja@m17n.org"
50         ;; "ml@example.com" ...
51         ))
52
53 ;;; [[ Server Setting ]]
54
55 ;; Default IMAP4 server
56 (setq elmo-imap4-default-server "localhost")
57 ;; Default POP server
58 (setq elmo-pop3-default-server "localhost")
59 ;; SMTP server
60 (setq wl-smtp-posting-server "localhost")
61 ;; Default NNTP server
62 (setq elmo-nntp-default-server "localhost")
63 ;; NNTP server name for posting
64 (setq wl-nntp-posting-server elmo-nntp-default-server)
65
66 ;; IMAP authenticate type setting
67 (setq elmo-imap4-default-authenticate-type 'clear) ; raw
68 ;(setq elmo-imap4-default-authenticate-type 'cram-md5) ; CRAM-MD5
69
70 ;; POP-before-SMTP
71 ;(setq wl-draft-send-mail-function 'wl-draft-send-mail-with-pop-before-smtp)
72
73
74 ;;; [[ Basic Setting ]]
75
76 ;; Default folder for `wl-summary-goto-folder'.
77 ;(setq wl-default-folder "+inbox")
78
79 ;; Default string for folder name completion.
80 ;(setq wl-default-spec "+")
81
82 ;; Folder Carbon Copy
83 ;(setq wl-fcc "+outbox")
84
85 ;; Confirm before exitting Wanderlust.
86 (setq wl-interactive-exit t)
87
88 ;; Confirm before sending message.
89 (setq wl-interactive-send t)
90
91 ;; Create opened thread.
92 ;(setq wl-thread-insert-opened t)
93
94 ;; Keep folder window beside summary. (3 pane)
95 ;(setq wl-stay-folder-window t)
96
97 ;; Truncate long lines.
98 ;(setq wl-message-truncate-lines t)
99 ;(setq wl-draft-truncate-lines t)
100 ;; Following line is needed for XEmacs older than 21.4.6.
101 ;(setq truncate-partial-width-windows nil)
102
103 ;; Open new frame for draft buffer.
104 ;(setq wl-draft-use-frame t)
105
106 ;; Don't limit indent for thread view
107 ;(setq wl-summary-indent-length-limit nil)
108 ;(setq wl-summary-width nil)
109
110 ;; Divide thread by change of subject.
111 ;(setq wl-summary-divide-thread-when-subject-changed t)
112
113 ;; Change format of thread view
114 ;(setq wl-thread-indent-level 2)
115 ;(setq wl-thread-have-younger-brother-str "+"
116 ;      wl-thread-youngest-child-str      "+"
117 ;      wl-thread-vertical-str            "|"
118 ;      wl-thread-horizontal-str          "-"
119 ;      wl-thread-space-str               " ")
120
121 ;; display first message automatically.
122 ;(setq wl-auto-select-first t)
123
124 ;; goto next folder when exit from summary.
125 ;(setq wl-auto-select-next t)
126
127 ;; skip folder if there is no unread message.
128 ;(setq wl-auto-select-next 'skip-no-unread)
129
130 ;; jump to unread message in 'N' or 'P'.
131 ;(setq wl-summary-move-order 'unread)
132
133 ;; notify mail arrival
134 ;(setq wl-biff-check-folder-list '("%inbox"))
135 ;(setq wl-biff-notify-hook '(ding))
136
137
138 ;;; [[ Network ]]
139
140 ;; cache setting.
141 ;; (messages in localdir, localnews, maildir are not cached.)
142 ;(setq elmo-archive-use-cache nil)
143 ;(setq elmo-nntp-use-cache t)
144 ;(setq elmo-imap4-use-cache t)
145 ;(setq elmo-pop3-use-cache t)
146
147 ;; Enable disconnected operation in IMAP folder.
148 (setq elmo-enable-disconnected-operation t)
149
150 ;; Store draft message in queue folder if message is sent in unplugged status.
151 (setq wl-draft-enable-queuing t)
152 ;; when plug status is changed from unplugged to plugged,
153 ;; queued message is flushed automatically.
154 (setq wl-auto-flush-queue t)
155
156 ;; offline at startup.
157 ;(setq wl-plugged nil)
158 ;; change plug status by server or port at startup.
159 ;(add-hook 'wl-make-plugged-hook
160 ;         '(lambda ()
161 ;            ;; Add or Change plug status for SERVER and PORT.
162 ;            (elmo-set-plugged plugged(t/nil) server port)
163 ;            ;; When omit port, SEVERS all port was changes.
164 ;            ;; (Can't add plug status without PORT)
165 ;            (elmo-set-plugged plugged(t/nil) server)
166 ;            ))
167
168
169 ;;; [[ Special Setting ]]
170
171 ;; open unread group folder after checking.
172 ;(add-hook 'wl-folder-check-entity-hook
173 ;         '(lambda ()
174 ;            (wl-folder-open-unread-folder entity)
175 ;            ))
176
177 ;; Jump to unfiltered folder by `wl-summary-exit'. It is useful for people who
178 ;; use filtered folder as a temporary folder created by `wl-summary-virtual'.
179 ;(add-hook 'wl-summary-prepared-hook
180 ;         '(lambda ()
181 ;            (setq wl-summary-buffer-exit-function
182 ;                  (when (eq 'filter
183 ;                            (elmo-folder-type-internal wl-summary-buffer-elmo-folder))
184 ;                    'wl-summary-unvirtual))))
185
186 ;; Change summary display function.
187
188 ;; Set extra field use with `elmo-message-entity-field'.
189 ;; And use with auto-refile.
190 (setq elmo-msgdb-extra-fields
191       '(;; Use with elsp-header in elmo-spam.
192         "x-spam-flag"
193         ;; Virtual field defined by `modb-entity-field-extractor-alist'
194         "ml-info"))
195
196 ;; ML message displays ML name and ML sequence number in subject.
197 (setq wl-summary-line-format "%n%T%P%M/%D(%W)%h:%m %t%[%17(%c %f%) %] %#%~%s")
198 ;; Set summary line format according to folder name.
199 ;(setq wl-folder-summary-line-format-alist
200 ;      '(("^%inbox\\.emacs\\.wl$" .
201 ;        "%-5l%T%P%M/%D %h:%m %-4S %[ %17f %] %t%C%s")
202 ;       ("^%" . "%T%P%M/%D %h:%m %-4S %[ %17f %] %t%C%s")
203 ;       ("^+" . "%n%T%P%M/%D %h:%m %-4S %[ %17f %] %t%C%s")))
204
205 ;; imput asynchronously.
206 ;; (utils/im-wl.el is needed to be installed.
207 ;;  Don't forget setting ~/.im/Config (Smtpservers).
208 ;;  note that wl-draft-enable-queuing is not valid.)
209 ;(autoload 'wl-draft-send-with-imput-async "im-wl")
210 ;(setq wl-draft-send-function 'wl-draft-send-with-imput-async)
211
212
213 ;; non-verbose User-Agent: field
214 ;(setq wl-generate-mailer-string-function
215 ;      'wl-generate-user-agent-string-1)
216
217
218 ;; When you encrypt message by PGP, include your public key.
219 ;; (to make the message visible from yourself)
220 ;(setq pgg-encrypt-for-me t)
221
222
223 ;;; [[ Template ]]
224
225 ;; template
226 ;(setq wl-template-alist
227 ;      '(("default"
228 ;        ("From" . wl-from)
229 ;        ("Organization" . "organization for default")
230 ;        (body . "Hello, this is XXX \n")) ; body
231 ;       ("report"
232 ;        ("To" . "boss@example.com")
233 ;        ("Subject" . "Report")
234 ;        (top . "Sir, here is my report\n") ; insert in top.
235 ;        (bottom-file . "~/work/report.txt") ; insert file in bottom
236 ;        )
237 ;       ))
238
239 ;; Change headers in draft sending time.
240 ;(setq wl-draft-config-alist
241 ;      '((reply                         ; see reply buffer
242 ;        "^To: .*test-notsend-wl@lists\\.airs\\.net"
243 ;        (template . "default"))        ; template
244 ;       ("^To: .*test-notsend-wl@lists\\.airs\\.net"
245 ;        ding                           ; function
246 ;        ("From" . wl-from)             ; variable
247 ;        ("Organization" . "organization")) ; string
248 ;       ("^Newsgroups: test.*"
249 ;        ("Organization" . "organization for nntp."))
250 ;       ))
251
252 ;; Change headers in draft preparation time.
253 ;(add-hook 'wl-mail-setup-hook
254 ;         '(lambda ()
255 ;            (unless wl-draft-reedit;   ; don't apply when reedit.
256 ;              (wl-draft-config-exec wl-draft-config-alist))))
257
258
259 ;; [[ Reply ]]
260 ;; header value setting for mail reply.
261
262 ;; Wide window for draft buffer.
263 ;(setq wl-draft-reply-buffer-style 'full)
264
265 ;; Remove fullname in reply message header.
266 ;(setq wl-draft-reply-use-address-with-full-name nil)
267
268 ;; "a" (without-argument) reply to author (Reply-To or From).
269 ;; if 'X-ML-Name' and 'Reply-To' exists, reply to 'Reply-To'.
270 ;(setq wl-draft-reply-without-argument-list
271 ;      '((("X-ML-Name" "Reply-To") . (("Reply-To") nil nil))
272 ;       ("X-ML-Name" . (("To" "Cc") nil nil))
273 ;       ("Followup-To" . (nil nil ("Followup-To")))
274 ;       ("Newsgroups" . (nil nil ("Newsgroups")))
275 ;       ("Reply-To" . (("Reply-To") nil nil))
276 ;       ("Mail-Reply-To" . (("Mail-Reply-To") nil nil))
277 ;       (wl-draft-self-reply-p . (("To") ("Cc") nil))
278 ;       ("From" . (("From") nil nil))))
279
280 ;; old defaults < 2.11.0
281 ;(setq wl-draft-reply-without-argument-list
282 ;      '(((wl-draft-self-reply-p
283 ;         "Followup-To") . (("To") ("Cc") ("Followup-To")))
284 ;       ((wl-draft-self-reply-p
285 ;         "Newsgroups") . (("To") ("Cc") ("Newsgroups")))
286 ;       ((wl-draft-self-reply-p
287 ;         "From") . (("To") ("Cc") nil))
288 ;       ("Followup-To" . (nil nil ("Followup-To")))
289 ;       ("Mail-Followup-To" . (("Mail-Followup-To") nil ("Newsgroups")))
290 ;       ("Reply-To" . (("Reply-To") ("To" "Cc" "From") ("Newsgroups")))
291 ;       ("From" . (("From") ("To" "Cc") ("Newsgroups")))))
292 ;(setq wl-draft-reply-with-argument-list
293 ;      '(((wl-draft-self-reply-p
294 ;         "Followup-To") . (("To") ("Cc") ("Followup-To")))
295 ;       ((wl-draft-self-reply-p
296 ;         "Newsgroups") . (("To") ("Cc") ("Newsgroups")))
297 ;       ((wl-draft-self-reply-p
298 ;         "From") . (("To") ("Cc") nil))
299 ;       ("Reply-To" . (("Reply-To") nil nil))
300 ;       ("Mail-Reply-To" . (("Mail-Reply-To") nil nil))
301 ;       ("From" . (("From") nil nil))))
302
303
304 ;;; [[ Message Display Settings ]]
305
306 ;; Hidden header field in message buffer.
307 (setq wl-message-ignored-field-list
308       '(".*Received:" ".*Path:" ".*Id:" "^References:"
309         "^Replied:" "^Errors-To:"
310         "^Lines:" "^Sender:" ".*Host:" "^Xref:"
311         "^Content-Type:" "^Precedence:"
312         "^Status:" "^X-VM-.*:"))
313
314 ;; Displayed header field in message buffer.
315 ;; This value precedes `wl-message-ignored-field-list'
316 (setq wl-message-visible-field-list '("^Message-Id:"))
317
318 ;; Reassemble partial messages automatically in displaying.
319 ;(setq wl-message-auto-reassemble-message/partial t)
320
321 ;; X-Face
322 (when window-system
323   (cond ((and (featurep 'xemacs)        ; for XEmacs
324               (module-installed-p 'x-face))
325          (autoload 'x-face-xmas-wl-display-x-face "x-face")
326          (setq wl-highlight-x-face-function 'x-face-xmas-wl-display-x-face))
327
328         ;; for Emacs21
329         ((and (not (featurep 'xemacs))
330               (= emacs-major-version 21)
331               (module-installed-p 'x-face-e21))
332          (autoload 'x-face-decode-message-header "x-face-e21")
333          (setq wl-highlight-x-face-function 'x-face-decode-message-header))
334
335         ;; for Emacs 19.34, Emacs 20.x
336         ((module-installed-p 'x-face-mule)
337          ;; x-face-mule distributed with bitmap-mule 8.0 or later
338          (autoload 'x-face-decode-message-header "x-face-mule")
339          (setq wl-highlight-x-face-function 'x-face-decode-message-header))
340         ))
341
342 ;; Scoring.
343 ;; "all.SCORE" file is used regardless of wl-score-folder-alist.
344 ;(setq wl-score-folder-alist
345 ;      '(("^-comp\\."
346 ;        "news.comp.SCORE"
347 ;        "news.SCORE")
348 ;       ("^-"
349 ;        "news.SCORE")))
350
351 ;; rule for auto refile.
352 ;(setq wl-refile-rule-alist
353 ;      '(
354 ;       ("x-ml-name"
355 ;        ("^Wanderlust" . "+wl")
356 ;        ("^Elisp" . "+elisp"))
357 ;       ("From"
358 ;        ("foo@example\\.com" . "+foo"))))
359
360 ;; Marks to skip auto-refile (default is "N" "U" "!").
361 ;; nil means all message is auto-refiled.
362 ;(setq wl-summary-auto-refile-skip-marks nil)
363
364 ;;; [[ Spam Filter Settings ]]
365
366 ;; Use bogofilter as a back end.
367 ;(setq elmo-spam-scheme 'bogofilter)
368
369 ;(require 'wl-spam)
370
371 ;; In moving to summary, judge whether a message is a spam.
372 ;(setq wl-spam-auto-check-folder-regexp-list '("\\+inbox"))
373
374 ;; Judge *first* whether a message is a spam
375 ;; when `o' (wl-summary-refile) is performed in a summary buffer.
376 ;(unless (memq 'wl-refile-guess-by-spam wl-refile-guess-functions)
377 ;  (setq wl-refile-guess-functions
378 ;       (cons #'wl-refile-guess-by-spam
379 ;             wl-refile-guess-functions)))
380
381 ;; Judge *first* whether a message is a spam
382 ;; when `C-o' (wl-summary-auto-refile) is performed in a summary buffer.
383 ;(unless (memq 'wl-refile-guess-by-spam wl-auto-refile-guess-functions)
384 ;  (setq wl-auto-refile-guess-functions
385 ;       (cons #'wl-refile-guess-by-spam
386 ;             wl-auto-refile-guess-functions)))
387
388 ;; When you want to give priority to refile-rule (same as spamfilter-wl.el
389 ;; or bogofilter-wl.el), please confirm the setup here.
390 ;(unless (memq 'wl-refile-guess-by-spam wl-auto-refile-guess-functions)
391 ;  (setq wl-auto-refile-guess-functions
392 ;       (append wl-auto-refile-guess-functions
393 ;               '(wl-refile-guess-by-spam))))
394
395 ;;; dot.wl ends here