aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-02-07 21:07:55 -0500
committerGlenn Morris2014-02-07 21:07:55 -0500
commit36f1351eb90c3af31245fea0f46cb09ca3b08427 (patch)
tree72a4679f703e937242841c9a15d2d2d5c659dad5
parent41a4a82fa19abb3f615a41215d56165a3138102b (diff)
downloademacs-36f1351eb90c3af31245fea0f46cb09ca3b08427.tar.gz
emacs-36f1351eb90c3af31245fea0f46cb09ca3b08427.zip
auth-sources doc fixes
* doc/misc/auth.texi (GnuPG and EasyPG Assistant Configuration): Be agnostic about authinfo/authinfo.gpg default order. * lisp/gnus/auth-source.el (auth-sources): Doc fix. Fixes: debbugs:16642
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/auth.texi8
-rw-r--r--lisp/gnus/ChangeLog4
-rw-r--r--lisp/gnus/auth-source.el11
4 files changed, 15 insertions, 13 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 766286c5fa7..5e120ca3f6a 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,8 @@
12014-02-08 Glenn Morris <rgm@gnu.org>
2
3 * auth.texi (GnuPG and EasyPG Assistant Configuration):
4 Be agnostic about authinfo/authinfo.gpg default order. (Bug#16642)
5
12014-02-07 Glenn Morris <rgm@gnu.org> 62014-02-07 Glenn Morris <rgm@gnu.org>
2 7
3 * viper.texi (File and Buffer Handling): Prefer ido to iswitchb. 8 * viper.texi (File and Buffer Handling): Prefer ido to iswitchb.
diff --git a/doc/misc/auth.texi b/doc/misc/auth.texi
index f240b38c27e..993062f8082 100644
--- a/doc/misc/auth.texi
+++ b/doc/misc/auth.texi
@@ -470,10 +470,10 @@ It returns the number of items forgotten.
470@node GnuPG and EasyPG Assistant Configuration 470@node GnuPG and EasyPG Assistant Configuration
471@appendix GnuPG and EasyPG Assistant Configuration 471@appendix GnuPG and EasyPG Assistant Configuration
472 472
473If you don't customize @code{auth-sources}, the auth-source library 473If the @code{auth-sources} variable contains @file{~/.authinfo.gpg}
474reads @file{~/.authinfo.gpg}, which is a GnuPG encrypted file. Then 474before @file{~/.authinfo}, the auth-source library will try to
475it will check @file{~/.authinfo} but it's not recommended to use such 475read the GnuPG encrypted @file{.gpg} file first, before
476an unencrypted file. 476the unencrypted file.
477 477
478In Emacs 23 or later there is an option @code{auto-encryption-mode} to 478In Emacs 23 or later there is an option @code{auto-encryption-mode} to
479automatically decrypt @file{*.gpg} files. It is enabled by default. 479automatically decrypt @file{*.gpg} files. It is enabled by default.
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index a0ed0360971..9e3f2c9e845 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,7 @@
12014-02-08 Glenn Morris <rgm@gnu.org>
2
3 * auth-source.el (auth-sources): Doc fix. (Bug#16642)
4
12014-02-07 Lars Ingebrigtsen <larsi@gnus.org> 52014-02-07 Lars Ingebrigtsen <larsi@gnus.org>
2 6
3 * ietf-drums.el (ietf-drums-parse-address): Don't bug out when called 7 * ietf-drums.el (ietf-drums-parse-address): Don't bug out when called
diff --git a/lisp/gnus/auth-source.el b/lisp/gnus/auth-source.el
index cef88e95b92..6cdc3a853b9 100644
--- a/lisp/gnus/auth-source.el
+++ b/lisp/gnus/auth-source.el
@@ -233,16 +233,9 @@ If the value is a function, debug messages are logged by calling
233 233
234(defcustom auth-sources '("~/.authinfo" "~/.authinfo.gpg" "~/.netrc") 234(defcustom auth-sources '("~/.authinfo" "~/.authinfo.gpg" "~/.netrc")
235 "List of authentication sources. 235 "List of authentication sources.
236
237The default will get login and password information from
238\"~/.authinfo.gpg\", which you should set up with the EPA/EPG
239packages to be encrypted. If that file doesn't exist, it will
240try the unencrypted version \"~/.authinfo\" and the famous
241\"~/.netrc\" file.
242
243See the auth.info manual for details.
244
245Each entry is the authentication type with optional properties. 236Each entry is the authentication type with optional properties.
237Entries are tried in the order in which they appear.
238See Info node `(auth)Help for users' for details.
246 239
247It's best to customize this with `M-x customize-variable' because the choices 240It's best to customize this with `M-x customize-variable' because the choices
248can get pretty complex." 241can get pretty complex."