testing ssh

This commit is contained in:
ry
2021-10-28 10:22:35 -07:00
parent 1b39c8e820
commit 34dd6bb419
3 changed files with 62 additions and 13 deletions

View File

@@ -368,9 +368,9 @@ Deft is a package that helps browse and filter plain text files. I use it to sea
* Mu4e Configuration
** Important Account information:
*** Opal.sh
- IMAP: imap.opal.sh -- 993
- SMTP smtp.opal.sh -- 587
- Username: ry@opal.sh
- IMAP: imap.opal.sh -- 993
- SMTP smtp.opal.sh -- 587
- Username: ry@opal.sh
#+begin_src emacs-lisp
(use-package mu4e
@@ -383,7 +383,25 @@ Deft is a package that helps browse and filter plain text files. I use it to sea
(setq mu4e-get-mail-command "mbsync -a -c ~/dotfiles/.config/mbsync/mbsyncrc")
(setq mu4e-maildir "~/mail")
(setq mu4e-drafts-folder "/")
(setq mu4e-contexts
(list
;; Opal.shadow
(make-mu4e-context
:name "Opal.sh"
:match-func
(lambda (msg)
(when msg
(string-prefix-p "/opal.sh" (mu4e-message-field msg :maildir))))
)
:vars '((user-mail-address . "ry@opal.sh")
(user-full-name . "Opal.sh")
(mu4e-drafts-folder . "/opal.sh/Drafts")
(mu4e-sent-folder . "/opal.sh/Sent")
(mu4e-trash-folder . "/opal.sh/Trash")))))
(setq mu4e-maildir-shortcuts
'(("/opal.sh/Inbox" . ?i)
("/opal.sh/Sent" . ?s)
("/opal.sh/Trash" . ?t)
("/opal.sh/Drafts" . ?d))))
#+end_src