diff options
author | Luke Shumaker <lukeshu@datawire.io> | 2022-11-18 18:36:53 -0700 |
---|---|---|
committer | Luke Shumaker <lukeshu@datawire.io> | 2022-11-18 18:36:53 -0700 |
commit | 9a62b4a64933f116b08e9e3cb06e013319610e4c (patch) | |
tree | 27bb1b131d5a0d35d34fa31e73f72b2446576dc8 /.config/emacs/wl.el | |
parent | 9adc8a2aeaf034f5172b32c9bd000c686465ab21 (diff) |
stuff
Diffstat (limited to '.config/emacs/wl.el')
-rw-r--r-- | .config/emacs/wl.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.config/emacs/wl.el b/.config/emacs/wl.el index deefef9..fce75c1 100644 --- a/.config/emacs/wl.el +++ b/.config/emacs/wl.el @@ -6,8 +6,7 @@ (setq ;; Misc ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; wl-local-domain "lan.lukeshu.com" - wl-icon-directory "~/.emacs.d/el-get/wanderlust/icons" - wl-message-id-domain user-mail-address + wl-message-id-domain user-mail-address ;; Network ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; This only deals with sending--I use offlineimap to fetch @@ -15,6 +14,10 @@ ;; Folders/File system ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; elmo-maildir-folder-path "~/Maildir" ;; where I store my mail + elmo-localdir-folder-path "~/Maildir.MH" ;; I don't use MH, but ELMO needs to use it internally? + wl-temporary-file-directory (file-name-as-directory (or (getenv "XDG_RUNTIME_DIR") + (getenv "TMPDIR") + ("/tmp"))) ;; note: all below are dirs (Maildirs) under elmo-maildir-folder-path ;; the '.'-prefix is for marking them as maildirs @@ -50,7 +53,7 @@ wl-message-visible-field-list (mapcar (lambda (str) ;; but then display these (apply 'concat (mapcar (lambda (c) (if (and (<= ?a c) (<= c ?z)) - (list ?[ c (upcase c) ?]) + (list ?\[ c (upcase c) ?\]) (list c))) str))) '( |