summaryrefslogtreecommitdiff
path: root/.wl
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2011-07-02 16:04:11 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2011-07-02 16:04:11 -0400
commitf8d7528a5a6ee83536ad397bbad8c46f5984d61f (patch)
tree2af66ef2f73442300066ec3b3a708740857afa8c /.wl
parent8d5dd1b09ca02e869c89ac87f89bc790bc7c29ee (diff)
parentd383205ac60fdcf39bf2b0f813d63f91cf6e9dd5 (diff)
Merge branch 'master' of gitorious.org:lukeshu-dotfiles/lukeshu-dotfiles
Conflicts: .emacs
Diffstat (limited to '.wl')
-rw-r--r--.wl55
1 files changed, 55 insertions, 0 deletions
diff --git a/.wl b/.wl
new file mode 100644
index 0000000..c6bf63c
--- /dev/null
+++ b/.wl
@@ -0,0 +1,55 @@
+;; 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'
+
+ 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"))