summaryrefslogtreecommitdiff
path: root/.wl
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-06-02 23:19:42 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-06-02 23:19:42 -0400
commit7e842cfd399c0bea9d480d5fa7a18dfa06bb6a60 (patch)
tree3d42b1ca90cb3bd3a551ab209e8f38912a10bbec /.wl
parent9347fcfe000dcafd353b63ccab0f3dc2b8de2271 (diff)
This is what happens when I use Parabola for a day.
Diffstat (limited to '.wl')
-rw-r--r--.wl49
1 files changed, 49 insertions, 0 deletions
diff --git a/.wl b/.wl
new file mode 100644
index 0000000..ae95926
--- /dev/null
+++ b/.wl
@@ -0,0 +1,49 @@
+;; 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 25 ;; toggle on/off with 'i'
+
+ wl-smtp-posting-server "plus.smtp.mail.yahoo.com"
+ 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 "..Drafts" ;; 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"))