comparison doc/misc/gnus.texi @ 111401:733acab855e4

Merge changes made in Gnus trunk. mm-decode.el (mm-save-part): Put the entire path in the `M-n' slot. nnimap.el (nnimap-find-article-by-message-id): Don't EXAMINE a group if it's already selected. gnus.texi (Customizing the IMAP Connection): Document `nnimap-expunge' and remove `nnimap-expunge-inbox' from example. gnus.texi (Customizing the IMAP Connection): Remove nnir mention, since that works by default. gnus-sum.el (gnus-summary-show-article): Take `t' as the arg to mean "raw". gnus-html.el (gnus-html-browse-url): Implement mailto: URLs. shr.el (shr-browse-url): Implement mailto: URLs. nnir.el, gnus-sum.el: Improve thread-referral. message.el (message-send-mail): Use the value of message-courtesy-message from the message buffer.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Thu, 04 Nov 2010 22:18:09 +0000
parents 9ad37c82310f
children eb9988805a37
comparison
equal deleted inserted replaced
111400:17d49dad0c8b 111401:733acab855e4
14843 @example 14843 @example
14844 (nnimap "imap.gmail.com" 14844 (nnimap "imap.gmail.com"
14845 (nnimap-inbox "INBOX") 14845 (nnimap-inbox "INBOX")
14846 (nnimap-split-methods default) 14846 (nnimap-split-methods default)
14847 (nnimap-expunge t) 14847 (nnimap-expunge t)
14848 (nnimap-stream ssl) 14848 (nnimap-stream ssl))
14849 (nnir-search-engine imap)
14850 (nnimap-expunge-inbox t))
14851 @end example 14849 @end example
14852 14850
14853 @table @code 14851 @table @code
14854 @item nnimap-address 14852 @item nnimap-address
14855 The address of the server, like @samp{imap.gmail.com}. 14853 The address of the server, like @samp{imap.gmail.com}.
14880 @end table 14878 @end table
14881 14879
14882 @item nnimap-authenticator 14880 @item nnimap-authenticator
14883 Some @acronym{IMAP} servers allow anonymous logins. In that case, 14881 Some @acronym{IMAP} servers allow anonymous logins. In that case,
14884 this should be set to @code{anonymous}. 14882 this should be set to @code{anonymous}.
14883
14884 @item nnimap-expunge
14885 If non-@code{nil}, expunge articles after deleting them. This is always done
14886 if the server supports UID EXPUNGE, but it's not done by default on
14887 servers that doesn't support that command.
14885 14888
14886 @item nnimap-streaming 14889 @item nnimap-streaming
14887 Virtually all @code{IMAP} server support fast streaming of data. If 14890 Virtually all @code{IMAP} server support fast streaming of data. If
14888 you have problems connecting to the server, try setting this to @code{nil}. 14891 you have problems connecting to the server, try setting this to @code{nil}.
14889 14892