-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit-mu4e.el
142 lines (125 loc) · 5.77 KB
/
init-mu4e.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
;;; init-mu4e --- initialize mu4e to receive and send email.
;;;
;;; Commentary:
;;;
;;; Code:
(defvar-local my/mu4e-sys-path "/opt/homebrew/opt/mu/share/emacs/site-lisp/mu/mu4e")
(if (file-exists-p my/mu4e-sys-path)
(progn
(eval-when-compile
(add-to-list 'load-path my/mu4e-sys-path))
;; happy flycheck
(eval-when-compile
(add-to-list 'load-path (expand-file-name "straight/repos/use-package" user-emacs-directory))
(require 'use-package))
(defun my-make-mu4e-context (name address signature)
"Return a mu4e context named NAME with :match-func matching
its ADDRESS in From or CC fields of the parent message. The
context's `user-mail-address' is set to ADDRESS and its
`mu4e-compose-signature' to SIGNATURE."
(lexical-let ((addr-lex address))
(make-mu4e-context :name name
:vars `((user-mail-address . ,address)
(mu4e-compose-signature . ,signature)
(mu4e-sent-folder . "/gmail/[Gmail]/Sent Mail")
(mu4e-drafts-folder . "/gmail/Drafts")
(mu4e-trash-folder . "/gmail/Trash")
(mu4e-refile-folder . "/gmail/[Gmail]/All Mail"))
:match-func
(lambda (msg)
(when msg
(or (mu4e-message-contact-field-matches msg :to addr-lex)
(mu4e-message-contact-field-matches msg :cc addr-lex)))))))
;; Most of the time, I merely want mu4e to re-index my local maildir (because
;; I'm running mbsync as a cron job). However, sometimes I want to fetch mails
;; immediately. Do this by changing the meaning of a prefix for
;; mu4e-update-mail-and-index (bound to "U").
;;
;; A prefix usually means run in the background, but I don't think I ever want
;; that. Change things so a prefix means to call mbsync.
(defun rjs/mu4e-update-mail-and-index (orig-fun prefix &rest args)
(interactive "P")
(if prefix (funcall orig-fun nil) (mu4e-update-index)))
(setq my/mu4e-unread-messages-count "Mail: -")
(defcustom my/inbox-count-command "echo -n ( mu find date:1w..now maildir:/gmail/INBOX flag:unread 2>/dev/null | wc -l )"
"Command to retrieve count of emails in Inbox."
:type 'string
:group 'inbox)
;; I want to show unread messages count in awesome-tray, so add an advice
;; function to set get it and set it to a global variable.
(defun my/count-mu4e-set-unread-messages ()
(let ((unread (shell-command-to-string my/inbox-count-command)))
(setq my/mu4e-unread-messages-count (format "Mail: %s" (string-trim unread)))))
(use-package mu4e
:straight (:type built-in)
:bind
("C-c c" . mu4e-org-store-and-capture) ;; org-agenda
("C-c c" . mu4e-org-store-and-capture) ;; org-agenda
:commands mu4e
:hook
(mu4e-index-updated . my/count-mu4e-set-unread-messages)
:custom
;; http://pragmaticemacs.com/emacs/fixing-duplicate-uid-errors-when-using-mbsync-and-mu4e/
(mu4e-change-filenames-when-moving t)
;; Update mails every 10 minutes.
(mu4e-update-interval 600)
;; Don't save message to Sent Messages, Gmail/IMAP takes care of this
;; Override in context switching for other type of mailboxes
(mu4e-sent-messages-behavior 'delete)
(message-kill-buffer-on-exit t)
(mu4e-get-mail-command "/opt/homebrew/bin/mbsync gmail")
(mu4e-contexts
`( ,(my-make-mu4e-context "main" "[email protected]" nil)))
(message-send-mail-function 'smtpmail-send-it)
(smtpmail-stream-type 'starttls)
(advice-add 'mu4e-update-mail-and-index
:around #'rjs/mu4e-update-mail-and-index)
(starttls-use-gnutls t)
;; Personal info
(user-full-name "Gary Wang")
(user-mail-address "[email protected]")
;; gmail setup
(smtpmail-smtp-server "smtp.gmail.com")
(smtpmail-smtp-service 587)
(smtpmail-smtp-user "[email protected]"))
(use-package org-msg
:straight t
:custom
(mail-user-agent 'mu4e-user-agent)
(org-msg-options "html-postamble:nil H:5 num:nil ^:{} toc:nil author:nil email:nil \\n:t")
(org-msg-startup "hidestars indent inlineimages")
(org-msg-greeting-fmt "\nHi *%s*,\n\n")
(org-msg-recipient-names '(("[email protected]" . "Gary Wang")))
(org-msg-greeting-name-limit 3)
(org-msg-default-alternatives '((new . (text html)))
(reply-to-html . (text html))
(reply-to-text . (text)))
(org-msg-convert-citation t)
(org-msg-signature "
Regards,
#+begin_signature
--
*Gary*
/One Emacs to rule them all/
#+end_signature")
:init
(org-msg-mode))
(defun my/mu4e-dashboard()
"Open mu4e dashboard."
(interactive)
(find-file (expand-file-name "mu4e.org" user-emacs-directory))
(org-mode)
(mu4e-dashboard-mode))
(use-package mu4e-dashboard
:straight (mu4e-dashboard :host github :repo "rougier/mu4e-dashboard")
:bind
("C-c m e" . my/mu4e-dashboard))
(use-package mu4e-alert
:straight t
:after mu4e
:hook
(after-init . mu4e-alert-enable-notifications)
:config
(mu4e-alert-set-default-style 'notifier))))
(provide 'init-mu4e)
;;; init-mu4e.el ends here