From 9e9435c00c06ea4bf989da9fa362060d401df648 Mon Sep 17 00:00:00 2001 From: dx Date: Mon, 20 Jul 2020 21:15:35 +0100 Subject: +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 --- Doom/.config/doom/modules/private/mail/autoload.el | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Doom/.config/doom/modules/private/mail/autoload.el (limited to 'Doom/.config/doom/modules/private/mail/autoload.el') 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))))) -- cgit v1.2.3-13-gbd6f