From 82b1cf1bb741fdfe606da2caa5ffecad91a1cfe2 Mon Sep 17 00:00:00 2001 From: Marc Date: Sun, 5 May 2024 15:32:43 +0200 Subject: [PATCH 1/2] setup emails --- config.org | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/config.org b/config.org index 5b8da0c..cf2b4eb 100644 --- a/config.org +++ b/config.org @@ -949,7 +949,38 @@ As an alternative if I'm not happy with selectrum & co (helm-autoresize-min-height 5) ) #+end_src +* Emails +Requires on system +- isync to sync emails between host and local +- notmuch to index emails +- mu4e (if using mu4e) +#+begin_src emacs-lisp +;(use-package notmuch +; :ensure t) +(use-package mu4e + :ensure nil + :after (org)) +#+end_src +* COMMENT mu4e +#+begin_src emacs-lisp +;;https://github.com/progfolio/.emacs.d#mu4e +(use-package mu4e + :ensure `(mu4e :host github :files ("mu4e/*.el" "build/mu4e/mu4e-meta.el" "build/mu4e/mu4e-config.el" "build/mu4e/mu4e.info") :repo "djcb/mu" + :main "mu4e/mu4e.el" + :pre-build (("./autogen.sh" "-Dtests=disabled") + ("ninja" "-C" "build") + (make-symbolic-link (expand-file-name "./build/mu/mu") + (expand-file-name "~/bin/mu") 'ok-if-exists)) + :build (:not elpaca--compile-info) + :post-build (("mu" "init" "--quiet" "--maildir" ,(concat (getenv "HOME") "/Documents/emails") +; "--my-address=" ,secret-personal-email-address +; "--my-address=" ,secret-work-email-address) +; "--my-address=" ,secret-personal-email-address + "--my-address=marc.pohling@mail.de") + ("mu" "--quiet" "index"))) + :commands (mu4e mu4e-update-index)) +#+end_src * outlook In outlook a macro is necessary, also a reference to FM20.DLL (Microsoft Forms 2.0 Object Library, in c:\windows\syswow64\fm20.dll) From fbc5ef94705b23c2ba53717486997ffc693895e3 Mon Sep 17 00:00:00 2001 From: Marc Date: Sun, 5 May 2024 15:33:02 +0200 Subject: [PATCH 2/2] disable package.el --- early-init.el | 1 + 1 file changed, 1 insertion(+) diff --git a/early-init.el b/early-init.el index c3a2f00..cbd5abc 100644 --- a/early-init.el +++ b/early-init.el @@ -10,6 +10,7 @@ ;; Resizing the emacs frame can be a terriblu expensive part of changing the font. ;; By inhibiting this, we easily hale startup times with fonts that are larger ;; than the system default. +(setq package-enable-at-startup nil) (setq frame-inhibit-implied-resize t) (menu-bar-mode -1) ;; disable menu bar