From a91d8710abd6fff9c0ef0dd6940f616f87927c6f Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Wed, 20 Sep 2000 09:52:40 +0000 Subject: [PATCH] (IMAP): Add examples. --- texi/ChangeLog | 4 ++++ texi/gnus.texi | 31 +++++++++++++++++++++++++++++-- 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/texi/ChangeLog b/texi/ChangeLog index 48d73ec0b..a187a348b 100644 --- a/texi/ChangeLog +++ b/texi/ChangeLog @@ -1,3 +1,7 @@ +2000-09-20 Simon Josefsson + + * gnus.texi (IMAP): Add examples. + 2000-09-19 Kai Gro,A_(Bjohann * gnus.texi (IMAP): Add pointer to description of ~/.authinfo file diff --git a/texi/gnus.texi b/texi/gnus.texi index a4c2f83c5..2652fb26f 100644 --- a/texi/gnus.texi +++ b/texi/gnus.texi @@ -13587,6 +13587,13 @@ server name if not specified. @vindex nnimap-server-port Port on server to contact. Defaults to port 143, or 993 for SSL. +Note that this should be a integer, example server specification: + +@lisp +(nnimap "mail.server.com" + (nnimap-server-port 4711)) +@end lisp + @item nnimap-list-pattern @vindex nnimap-list-pattern String or list of strings of mailboxes to limit available groups to. @@ -13600,10 +13607,12 @@ REFERENCE is used for is server specific, but on the University of Washington server it's a directory that will be concatenated with the mailbox. -Example: +Example server specification: @lisp -("INBOX" "Mail/*" "alt.sex.*" ("~friend/Mail/" . "list/*")) +(nnimap "mail.server.com" + (nnimap-list-pattern ("INBOX" "Mail/*" "alt.sex.*" + ("~friend/Mail/" . "list/*")))) @end lisp @item nnimap-stream @@ -13613,6 +13622,15 @@ will detect and automatically use all of the below, with the exception of SSL. (SSL is being replaced by STARTTLS, which can be automatically detected, but it's not widely deployed yet). +Example server specification: + +@lisp +(nnimap "mail.server.com" + (nnimap-stream ssl)) +@end lisp + +Please note that the value of @code{nnimap-stream} is a symbol! + @itemize @bullet @item @dfn{gssapi:} Connect with GSSAPI (usually kerberos 5). Require the @@ -13658,6 +13676,15 @@ For IMAP connections using the @code{shell} stream, the variable The authenticator used to connect to the server. By default, nnimap will use the most secure authenticator your server is capable of. +Example server specification: + +@lisp +(nnimap "mail.server.com" + (nnimap-authenticator anonymous)) +@end lisp + +Please note that the value of @code{nnimap-authenticator} is a symbol! + @itemize @bullet @item @dfn{gssapi:} GSSAPI (usually kerberos 5) authentication. Require -- 2.25.1