1
0
Fork 0

[oni-core] Add Login keyring and remove ‘.netrc’ auth sources

This commit is contained in:
Tom Willemse 2021-07-01 18:00:13 -07:00
parent 554aad49b5
commit 7ac2b35a33

View file

@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org> ;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local ;; Keywords: local
;; Version: 2021.0621.234138 ;; Version: 2021.0701.142845
;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard) ;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview dashboard)
;; This program is free software; you can redistribute it and/or modify ;; This program is free software; you can redistribute it and/or modify
@ -157,7 +157,10 @@ _s_: String list"
;;; Remove ~/.authinfo from the auth sources since its an unencripted file and ;;; Remove ~/.authinfo from the auth sources since its an unencripted file and
;;; I dont want to accidentally store anything in there. ;;; I dont want to accidentally store anything in there.
(setq auth-sources (remove "~/.authinfo" auth-sources)) (setq auth-sources
(cons "secrets:Login"
(remove "~/.netrc"
(remove "~/.authinfo" auth-sources))))
(setq read-mail-command 'gnus) (setq read-mail-command 'gnus)