commit fa41dac3f2dcb0900a23fda94074d5c6eda4d3c7 parent b09154531f3c10026848afd057aafb0f2c959c52 Author: Hugo Soucy <hugo.soucy@equisoft.com> Date: Wed, 20 Mar 2019 09:00:48 -0400 Comment unused code. Diffstat:
M | partials/email.el | | | 66 | +++++++++++++++++++++++++++++++++--------------------------------- |
1 file changed, 33 insertions(+), 33 deletions(-)
diff --git a/partials/email.el b/partials/email.el @@ -2,39 +2,39 @@ (setq user-full-name "Hugo Soucy") (setq user-mail-address "hugo@soucy.cc") -(use-package mu4e - ;; Mail client for Emacs. - :ensure t - :config - (if (not (eq system-type 'darwin)) - ;; Using Maildir if not on Mac OS X - (setq mu4e-maildir (expand-file-name "~/Maildir")) - ;; else use .Mail - (setq mu4e-maildir (expand-file-name "~/.Mail"))) +;; (use-package mu4e +;; ;; Mail client for Emacs. +;; :ensure t +;; :config +;; (if (not (eq system-type 'darwin)) +;; ;; Using Maildir if not on Mac OS X +;; (setq mu4e-maildir (expand-file-name "~/Maildir")) +;; ;; else use .Mail +;; (setq mu4e-maildir (expand-file-name "~/.Mail"))) - (setq mu4e-sent-folder "/Sent") - (setq mu4e-drafts-folder "/Drafts") - (setq mu4e-trash-folder "/Trash") +;; (setq mu4e-sent-folder "/Sent") +;; (setq mu4e-drafts-folder "/Drafts") +;; (setq mu4e-trash-folder "/Trash") - (if (not (eq system-type 'darwin)) - ;; command used to get mail - ;; use this to sync with mbsync - (setq mu4e-get-mail-command "mbsync hscc") - ;; else offlineimap - (setq mu4e-get-mail-command "offlineimap hscc") - ) - ;; use this for testing - ;; (setq mu4e-get-mail-command "true") +;; (if (not (eq system-type 'darwin)) +;; ;; command used to get mail +;; ;; use this to sync with mbsync +;; (setq mu4e-get-mail-command "mbsync hscc") +;; ;; else offlineimap +;; (setq mu4e-get-mail-command "offlineimap hscc") +;; ) +;; ;; use this for testing +;; ;; (setq mu4e-get-mail-command "true") - ;; rename files when moving - ;; NEEDED FOR MBSYNC - (setq mu4e-change-filenames-when-moving t) - ;; Send mail - ;; tell message-mode how to send mail - (setq message-send-mail-function 'smtpmail-send-it) - ;; if our mail server lives at smtp.example.org; if you have a local - ;; mail-server, simply use 'localhost' here. - (setq smtpmail-smtp-server "mail.gandi.net") - (setq smtpmail-smtp-user "hugo@soucy.cc") - (setq smtpmail-debug-info t) - ) +;; ;; rename files when moving +;; ;; NEEDED FOR MBSYNC +;; (setq mu4e-change-filenames-when-moving t) +;; ;; Send mail +;; ;; tell message-mode how to send mail +;; (setq message-send-mail-function 'smtpmail-send-it) +;; ;; if our mail server lives at smtp.example.org; if you have a local +;; ;; mail-server, simply use 'localhost' here. +;; (setq smtpmail-smtp-server "mail.gandi.net") +;; (setq smtpmail-smtp-user "hugo@soucy.cc") +;; (setq smtpmail-debug-info t) +;; )