Fixed issue with emacs mail not working on darwin

This commit is contained in:
Random936 2024-05-21 21:43:04 -07:00
parent 503a656479
commit e6e927ae0d
2 changed files with 12 additions and 12 deletions

View File

@ -328,6 +328,17 @@ Undo tree's use is self explanatory. While the built-in Emacs undo system is fin
This is a list of installed packages not included in any other category.
** MacOS Environment Fix
When using emacs on MacOS, the environment variables are not synced properly and therefore require a separate package to fix this. In this case, this package is the ~exec-path-from-shell~.
#+begin_src emacs-lisp
;(use-package exec-path-from-shell
;:config
;(when (memq window-system '(mac ns x))
;(exec-path-from-shell-initialize)))
#+end_src
** Perspective
*Perspective* is a package to help with managing buffers. It allows for multiple /workspaces/ or /perspectives/ which each contain their own sub list of buffers.
@ -460,17 +471,6 @@ Alert is another library that better implements system notifications through ema
'libnotify)))
#+end_src
** MacOS Environment Fix
When using emacs on MacOS, the environment variables are not synced properly and therefore require a separate package to fix this. In this case, this package is the ~exec-path-from-shell~.
#+begin_src emacs-lisp
(use-package exec-path-from-shell
:config
(when (memq window-system '(mac ns x))
(exec-path-from-shell-initialize)))
#+end_src
* Builtin Package Config
** Dired

View File

@ -1,7 +1,7 @@
IMAPAccount gmail
Host imap.gmail.com
User jadenprovost@gmail.com
PassCmd "bw-load && bw get password 'Emacs Gmail'"
PassCmd "export BW_SESSION=$(cat $HOME/.bw_session) && bw get password 'Emacs Gmail'"
SSLType IMAPS
SSLVersions TLSv1.2
AuthMechs PLAIN