init-wanderlust.el 691 B

12345678910111213141516171819202122
  1. (autoload 'wl "wl" "Wanderlust" t)
  2. (require 'init-wanderlust-secret)
  3. (setq wl-from "Joshua Branson <jbranson@setyourwaypoint.com>"
  4. ;;all system folders (draft, trash, spam, etc) are placed in the
  5. ;;[Gmail]-folder, except inbox. "%" means it's an IMAP-folder
  6. wl-default-folder "%inbox"
  7. wl-draft-folder "%[Gmail]/Drafts"
  8. wl-trash-folder "%[Gmail]/Trash"
  9. wl-fcc "%[Gmail]/Sent"
  10. ;; mark sent messages as read (sent messages get sent back to you and
  11. ;; placed in the folder specified by wl-fcc)
  12. wl-fcc-force-as-read t
  13. ;;for when auto-compleating foldernames
  14. wl-default-spec "%")
  15. (provide 'init-wanderlust)