diff options
Diffstat (limited to 'doc/misc/auth.texi')
-rw-r--r-- | doc/misc/auth.texi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/misc/auth.texi b/doc/misc/auth.texi index 16ce60199d6..a5374a3b90d 100644 --- a/doc/misc/auth.texi +++ b/doc/misc/auth.texi @@ -169,7 +169,8 @@ get fancy, the default and simplest configuration is: ;;; use pass (@file{~/.password-store}) ;;; (@pxref{The Unix password store}) (setq auth-sources '(password-store)) -;;; JSON data in format [{ "machine": "SERVER", "login": "USER", "password": "PASSWORD" }...] +;;; JSON data in format [@{ "machine": "SERVER", +;;; "login": "USER", "password": "PASSWORD" @}...] (setq auth-sources '("~/.authinfo.json.gpg")) @end lisp @@ -242,7 +243,8 @@ that sort of thing. Just point to a JSON file with entries like this: @example [ - { "machine": "yourmachine.com", "port": "http", "login": "testuser", "password": "testpass" } + @{ "machine": "yourmachine.com", "port": "http", + "login": "testuser", "password": "testpass" @} ] @end example |