aboutsummaryrefslogtreecommitdiff
path: root/Doom/.config/doom/modules/private/mail/autoload.el
diff options
context:
space:
mode:
authordx <aryadevchavali1@gmail.com>2020-07-20 21:15:35 +0100
committerdx <aryadevchavali1@gmail.com>2020-07-20 21:15:35 +0100
commit9e9435c00c06ea4bf989da9fa362060d401df648 (patch)
tree1360fba1c222541eceea80f42017e54b3fdab909 /Doom/.config/doom/modules/private/mail/autoload.el
parent9930e9ef4f40859e47c770ff4146d53883140de4 (diff)
downloaddotfiles-9e9435c00c06ea4bf989da9fa362060d401df648.tar.gz
dotfiles-9e9435c00c06ea4bf989da9fa362060d401df648.tar.bz2
dotfiles-9e9435c00c06ea4bf989da9fa362060d401df648.zip
+my own mail config
Using authinfo.gpg, notmuch and offlineimap to manage my mail. I now have my own server @ aryadevchavali.com, so I setup a mail server hosted on mail.aryadevchavali.com. This config manages the emacs side of things, I'll add my offlineimaprc later
Diffstat (limited to 'Doom/.config/doom/modules/private/mail/autoload.el')
-rw-r--r--Doom/.config/doom/modules/private/mail/autoload.el19
1 files changed, 19 insertions, 0 deletions
diff --git a/Doom/.config/doom/modules/private/mail/autoload.el b/Doom/.config/doom/modules/private/mail/autoload.el
new file mode 100644
index 0000000..13a79f9
--- /dev/null
+++ b/Doom/.config/doom/modules/private/mail/autoload.el
@@ -0,0 +1,19 @@
+;;; private/mail/autoload.el -*- lexical-binding: t; -*-
+
+;;;###autoload
+(defun +mail/open-mail ()
+ "Activate (or switch to) `notmuch' in its workspace."
+ (interactive)
+ (unless (featurep! :ui workspaces)
+ (user-error ":ui workspaces is required, but disabled"))
+ (condition-case-unless-debug e
+ (progn
+ (+workspace-switch "*MAIL*" t)
+ (if-let* ((buf (cl-find-if (lambda (it) (string-match-p "^\\*notmuch" (buffer-name (window-buffer it))))
+ (doom-visible-windows))))
+ (select-window (get-buffer-window buf))
+ (notmuch-search "tag:inbox"))
+ (+workspace/display))
+ ('error
+ (+notmuch/quit)
+ (signal (car e) (cdr e)))))