("#CC9393" "#DFAF8F" "#F0DFAF" "#7F9F7F" "#BFEBBF" "#93E0E3" "#94BFF3" "#DC8CC3")))
'(package-selected-packages
(quote
- (evil-magit evil-leader evil-org molokai-theme org-evil flycheck-mypy jinja2 jinja2-mode highlight-indent-guides projectile helm-projectile zenburn-theme helm helm-config use-package flycheck company-jedi company org evil)))
+ (wanderlust evil-magit evil-leader evil-org molokai-theme org-evil flycheck-mypy jinja2 jinja2-mode highlight-indent-guides projectile helm-projectile zenburn-theme helm helm-config use-package flycheck company-jedi company org evil)))
'(pdf-view-midnight-colors (quote ("#DCDCCC" . "#383838")))
'(vc-annotate-background "#2B2B2B")
'(vc-annotate-color-map
(add-hook 'after-init-hook 'global-company-mode)
+(use-package wanderlust
+ :ensure t)
+
+
+
(add-hook 'prog-mode-hook 'electric-pair-mode)
--- /dev/null
+PERSONAL{
+ %INBOX:max/clear@mail.friedersdorff.com:993! "INBOX"
+ %slackware:max/clear@mail.friedersdorff.com:993! "slackware"
+ %todo:max/clear@mail.friedersdorff.com:993! "todo"
+ %quicknote:max/clear@mail.friedersdorff.com:993! "quicknote"
+ %Sent:max/clear@mail.friedersdorff.com:993! "Sent"
+ %Trash:max/clear@mail.friedersdorff.com:993! "Trash"
+ %Spam:max/clear@mail.friedersdorff.com:993! "Spam"
+}
\ No newline at end of file
--- /dev/null
+(setq wl-from "Maximilian Friedersdorff <max@friedersdorff.com>")
+
+;; Mail Addresses
+(setq wl-user-mail-address-list (quote ("max@friedersdorff.com")))
+
+;; Match parent folder
+(setq wl-draft-config-alist
+ '(((string-match "friedersdorff.com" wl-draft-parent-folder)
+ (template . "personal"))
+ (reply "\\(To\\|Cc\\|Delivered-To\\): .*friedersdorff.com.*"
+ (template . "personal"))))
+
+;; Templates
+(setq wl-template-alist
+ '(("personal"
+ (wl-from . "Maximilian Friedersdorff <max@friedersdorff.com>")
+ (wl-smtp-posting-user . "max")
+ (wl-smtp-posting-server . "mail.friedersdorff.com")
+ (wl-smtp-authenticate-type . "plain")
+ (wl-smtp-connection-type . 'starttls)
+ (wl-smtp-posting-port . 587)
+ (wl-local-domain . "friedersdorff.com")
+ (wl-message-id-domain . "mail.friedersdorff.com"))
+ ))