diff options
Diffstat (limited to '.wl')
-rw-r--r-- | .wl | 55 |
1 files changed, 55 insertions, 0 deletions
@@ -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")) |