1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-02 21:52:04 -08:00

doc/misc/auth.texi (Multiple GMail accounts with Gnus): Add FAQ

This commit is contained in:
Ted Zlatanov 2015-02-05 11:50:17 +00:00 committed by Katsumi Yamaoka
parent df1e4ea210
commit ca25231a26
2 changed files with 26 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2015-02-05 Teodor Zlatanov <tzz@lifelogs.com>
* auth.texi (Multiple GMail accounts with Gnus): Add FAQ.
2015-02-05 Lars Ingebrigtsen <larsi@gnus.org>
* gnus.texi (Using IMAP): Fix menu node name.

View file

@ -59,6 +59,7 @@ It is a way for multiple applications to share a single configuration
@menu
* Overview:: Overview of the auth-source library.
* Help for users::
* Multiple GMail accounts with Gnus::
* Secret Service API::
* Help for developers::
* GnuPG and EasyPG Assistant Configuration::
@ -229,6 +230,27 @@ don't use a port entry, you match any Tramp method, as explained
earlier. Since Tramp has about 88 connection methods, this may be
necessary if you have an unusual (see earlier comment on those) setup.
@node Multiple GMail accounts with Gnus
@chapter Multiple GMail accounts with Gnus
For multiple GMail accounts with Gnus, you have to make two nnimap
entries in your @code{gnus-secondary-select-methods} with distinct
names:
@example
(setq gnus-secondary-select-methods '((nnimap "gmail"
(nnimap-address "imap.gmail.com"))
(nnimap "gmail2"
(nnimap-address "imap.gmail.com"))))
@end example
Your netrc entries will then be:
@example
machine gmail login account@gmail.com password "accountpassword" port imap
machine gmail2 login account2@gmail.com password "account2password" port imap
@end example
@node Secret Service API
@chapter Secret Service API