Skip to content

Commit

Permalink
README
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfleischer committed Feb 3, 2023
1 parent 0f220ad commit 5406a0e
Showing 1 changed file with 46 additions and 46 deletions.
92 changes: 46 additions & 46 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -334,59 +334,59 @@ with =org-capture= as well.
Added is a custom updating function that asks you which account to update, or by default updates all. It is bound to the
usual "U".

Finally, setting up the accounts:
Finally, setting up the accounts, either using customization or using code:
#+begin_src elisp
(defcustom mu4easy-contexts

`(,(mu4easy-context
:c-name "Google"
:maildir "Gmail"
:mail "[email protected]"
:smtp "smtp.gmail.com"
:sent-action delete)
(setq mu4easy-contexts
'((mu4easy-context
:c-name "Google"
:maildir "Gmail"
:mail "[email protected]"
:smtp "smtp.gmail.com"
:sent-action delete)

,(mu4easy-context
:c-name "1-GMX"
:maildir "GMX"
:mail "[email protected]"
:smtp "mail.gmx.com")
(mu4easy-context
:c-name "1-GMX"
:maildir "GMX"
:mail "[email protected]"
:smtp "mail.gmx.com")

,(mu4easy-context
:c-name "2-GMX-alias"
:maildir "GMX"
:mail "[email protected]"
:smtp "mail.gmx.com"
:smtp-mail "[email protected]")
(mu4easy-context
:c-name "2-GMX-alias"
:maildir "GMX"
:mail "[email protected]"
:smtp "mail.gmx.com"
:smtp-mail "[email protected]")

,(mu4easy-context
:c-name "Apple"
:maildir "Apple"
:mail "[email protected]"
:smtp "smtp.mail.me.com")
(mu4easy-context
:c-name "Apple"
:maildir "Apple"
:mail "[email protected]"
:smtp "smtp.mail.me.com")

,(mu4easy-context
:c-name "3-Apple-alias"
:maildir "Apple"
:mail "[email protected]"
:smtp "smtp.mail.me.com"
:smtp-mail "[email protected]")
(mu4easy-context
:c-name "3-Apple-alias"
:maildir "Apple"
:mail "[email protected]"
:smtp "smtp.mail.me.com"
:smtp-mail "[email protected]")

,(mu4easy-context
:c-name "Proton"
:maildir "Proton"
:mail "[email protected]"
:smtp "127.0.0.1"
:smtp-type ssl
:smtp-port 999)
(mu4easy-context
:c-name "Proton"
:maildir "Proton"
:mail "[email protected]"
:smtp "127.0.0.1"
:smtp-type ssl
:smtp-port 999)

,(mu4easy-context
:c-name "4-Proton-alias"
:maildir "Proton"
:mail "[email protected]"
:smtp "127.0.0.1"
:smtp-mail "[email protected]"
:smtp-type ssl
:smtp-port 999)))
(mu4easy-context
:c-name "4-Proton-alias"
:maildir "Proton"
:mail "[email protected]"
:smtp "127.0.0.1"
:smtp-mail "[email protected]"
:smtp-type ssl
:smtp-port 999)))
#+end_src

_Important points:_
Expand Down

0 comments on commit 5406a0e

Please sign in to comment.