summaryrefslogtreecommitdiff
path: root/.wl
blob: 8a4a47ebaae8a247d6a93b24f5956e2cea18080e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
;; mode:-*-emacs-lisp-*-

;; wanderlust 
(setq 
  elmo-maildir-folder-path "~/Maildir"          ;; where I store my mail

  wl-stay-folder-window t                       ;; show the folder pane (left)
  wl-folder-window-width 35                     ;; toggle on/off with 'i'

  mime-edit-split-message nil
  wl-local-domain "lukeshu.ath.cx"
  
  wl-draft-send-mail-function 'wl-draft-send-mail-with-smtp
  wl-smtp-connection-type (quote ssl)
  wl-smtp-authenticate-type "login"
  wl-smtp-posting-server "plus.smtp.mail.yahoo.com"
  wl-smtp-posting-port   465
  wl-smtp-posting-user   "lukeshu@sbcglobal.net"
  wl-message-id-domain   "lukeshu@sbcglobal.net"    ;; put a unique identifier here
  wl-from "Luke Shumaker <lukeshu@sbcglobal.net>"   ;; my From:

  wl-fcc-force-as-read t               ;; mark sent messages as read 

  ;; note: all below are dirs (Maildirs) under elmo-maildir-folder-path 
  ;; the '.'-prefix is for marking them as maildirs
  wl-fcc            "..Sent"       ;; sent msgs go to the "sent"-folder
  wl-default-folder "..Inbox"      ;; my main inbox 
  wl-draft-folder   "..Draft"      ;; store drafts in 'postponed'
  wl-trash-folder   "..Trash"      ;; put trash in 'trash'
  wl-spam-folder    "..Bulk Mail"  ;; put spam in 'Bulk Mail'
  wl-queue-folder   "..queue"      ;; we don't use this

  ;; check this folder periodically, and update modeline
  ;wl-biff-check-folder-list '(".todo") ;; check every 180 seconds
                                       ;; (default: wl-biff-check-interval)

  wl-folder-hierarchy-access-folders '(".*")

  ;; hide many fields from message buffers
  wl-message-ignored-field-list '("^.*:")
  wl-message-visible-field-list
  '("^\\(To\\|Cc\\):"
    "^Subject:"
    "^\\(From\\|Reply-To\\):"
    "^Organization:"
    "^Message-Id:"
    "^\\(Posted\\|Date\\):"
    )
  wl-message-sort-field-list
  '("^From"
    "^Organization:"
    "^X-Attribution:"
     "^Subject"
     "^Date"
     "^To"
     "^Cc"))