diff options
author | JSDurand <mmemmew@gmail.com> | 2023-06-18 00:17:10 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2023-06-18 00:17:10 +0800 |
commit | ce5dc4f9a84efc73fccce6d40c494e1deb4baa69 (patch) | |
tree | d18c4f26cfa2cc912a05c7c398f4e0dc3057cffd /mail.el | |
parent | b8e849ed238573fc0943efdf394cb8fb55164ce8 (diff) |
mail: update gmail as well
* mail.el (durand-mail-update-command): Also update the gmail account.
(durand-mail-update): Remove an outdated hello string.
Diffstat (limited to 'mail.el')
-rw-r--r-- | mail.el | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -281,7 +281,9 @@ PROCESS is finished." (quit-window nil (get-buffer-window buffer)))))))) (defvar durand-mail-update-command - (list "mbsync" "mymail-inbox" "mymail-sent") + (list "mbsync" + "mymail-inbox" "mymail-sent" + "gmail-inbox" "gmail-sent") "Command to update mails.") (defvar durand-mail-update-buffer "*mail*" @@ -305,7 +307,6 @@ If FOREGROUND-P is `0', do not fetch mails, but just run (cond ((and (numberp foreground-p) (= foreground-p 0)) - (message "hi") (run-hooks 'durand-mail-update-hook)) ((make-process :name "durand-mail-update" |