diff options
Diffstat (limited to 'lisp/gnus/auth-source.el')
-rw-r--r-- | lisp/gnus/auth-source.el | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/lisp/gnus/auth-source.el b/lisp/gnus/auth-source.el index 2bf2bf0ad62..d336d7f4981 100644 --- a/lisp/gnus/auth-source.el +++ b/lisp/gnus/auth-source.el @@ -47,6 +47,15 @@ ;;; digest). If you want finer controls, explore the url-auth source ;;; code and variables. +;;; (Tramp patch pending for this!) +;;; For tramp authentication, use: + +;;; machine yourmachine.com port tramp login testuser password testpass + +;;; Note that the port can be scp or ssh, for example, to match only +;;; those protocols. When you use port = tramp, you match any Tramp +;;; protocol. + ;;; Code: (require 'gnus-util) @@ -83,8 +92,7 @@ p))) auth-source-protocols)) -;;; this default will be changed to ~/.authinfo.gpg -(defcustom auth-sources '((:source "~/.authinfo.enc" :host t :protocol t)) +(defcustom auth-sources '((:source "~/.authinfo.gpg" :host t :protocol t)) "List of authentication sources. Each entry is the authentication type with optional properties." |