Browse Source

setup emails

master
Marc 4 months ago
parent
commit
82b1cf1bb7
1 changed files with 31 additions and 0 deletions
  1. 31
      config.org

31
config.org

@ -949,7 +949,38 @@ As an alternative if I'm not happy with selectrum & co
(helm-autoresize-min-height 5) (helm-autoresize-min-height 5)
) )
#+end_src #+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 * outlook
In outlook a macro is necessary, also a reference to FM20.DLL In outlook a macro is necessary, also a reference to FM20.DLL
(Microsoft Forms 2.0 Object Library, in c:\windows\syswow64\fm20.dll) (Microsoft Forms 2.0 Object Library, in c:\windows\syswow64\fm20.dll)

Loading…
Cancel
Save