diff options
Diffstat (limited to '.config/emacs')
-rw-r--r-- | .config/emacs/wl.el | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/.config/emacs/wl.el b/.config/emacs/wl.el index e9e61bd..c27c87e 100644 --- a/.config/emacs/wl.el +++ b/.config/emacs/wl.el @@ -1,24 +1,17 @@ ;; mode:-*-emacs-lisp-*- -(setq user-mail-address "lukeshu@sbcglobal.net") +(setq user-mail-address "lukeshu@lukeshu.com") ;; wanderlust (setq ;; Misc ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - wl-local-domain "lukeshu.ath.cx" + wl-local-domain "lan.lukeshu.com" wl-icon-directory "~/.emacs.d/el-get/wanderlust/icons" + wl-message-id-domain user-mail-address ;; Network ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; This only deals with sending--I use offlineimap to fetch - wl-draft-send-mail-function 'wl-draft-send-mail-with-smtp - ;; The following settings are Yahoo!'s SMTP servers: - wl-smtp-connection-type (quote ssl) - wl-smtp-authenticate-type "login" - wl-smtp-posting-server "plus.smtp.mail.yahoo.com" - ;wl-smtp-posting-server "outbound.att.net" - wl-smtp-posting-port 465 - wl-smtp-posting-user user-mail-address - wl-message-id-domain user-mail-address + wl-draft-send-mail-function 'wl-draft-send-mail-with-sendmail ;; Folders/File system ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; elmo-maildir-folder-path "~/Maildir" ;; where I store my mail @@ -45,7 +38,6 @@ ;; Writing wl-from (concat user-full-name " <" user-mail-address ">") ;; From: line - ;;wl-organization "Foo Corp" wl-fcc-force-as-read t ;; mark sent messages as read mime-edit-split-message nil ;; don't split long messages |