Skip to content

Commit

Permalink
Typos, finding mu, README
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfleischer committed Jan 22, 2023
1 parent ae26424 commit 0f220ad
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
14 changes: 11 additions & 3 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,25 @@ Install locally and use the =load-path= variable, e.g.:
:config (mu4easy-mode))
#+end_src

Or install with Melpa (coming soon).
Or install with Melpa, e.g.:
#+begin_src elisp
(use-package mu4easy
:ensure t
:bind ("C-c u" . mu4e)
:config (mu4easy-mode))
#+end_src

*Comments and suggestions are welcome*.
Also, have =mu= in your in PATH.

- mbsync
- mbsync Configuration
- [[#Google][Google]]
- [[#Apple][Apple]]
- [[#GMX][GMX]]
- [[#Proton][Proton]]
- [[#mu4e][mu4e configuration]]

*Comments and suggestions are welcome*.

** mbsync
:PROPERTIES:
:CREATED: [2021-05-09 Sun 22:39]
Expand Down
8 changes: 4 additions & 4 deletions mu4easy.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

;; Copyright (C) 2021-2023 Daniel Fleischer

;; Author: Daniel Fleischer;; <[email protected]>
;; Author: Daniel Fleischer <[email protected]>
;; Keywords: mail
;; Homepage: https://github.com/danielfleischer/mu4easy
;; Version: 1.0
Expand Down Expand Up @@ -147,14 +147,14 @@ Argument MSG msg at point."
;; e.g. when participating in github discussions using email
(defun mu4easy-org-msg-select-format (alternative)
"Wrapping function to override email format (html/text).
Argument ALTERNATIVE passthrough agrument when advicing."
Argument ALTERNATIVE passthrough argument when advising."
(if current-prefix-arg '(text) alternative))


;; Text Mode Signature
(defun mu4easy-customize-org-msg (orig-fun &rest args)
"Fix for signature and greeting when email is text.
Argument ORIG-FUN function being adviced.
Argument ORIG-FUN function being advised.
Optional argument ARGS ."
(let ((res (apply orig-fun args)))
(when (equal (cadr args) '(text))
Expand Down Expand Up @@ -388,7 +388,7 @@ See `mu4easy-context' for function signature."
(setq mu4e-index-lazy-check nil)
(setq mu4e-main-hide-personal-addresses t)
(setq mu4e-main-buffer-name "*mu4e-main*")
(setq mu4e-mu-binary "/usr/local/bin/mu")
(setq mu4e-mu-binary (or (executable-find "mu") "/usr/local/bin/mu"))
(setq mu4e-org-link-desc-func 'mu4easy-mail-link-description)
(setq mu4e-sent-messages-behavior 'sent)
(setq mu4e-update-interval 400)
Expand Down

0 comments on commit 0f220ad

Please sign in to comment.