diff options
| author | Miles Bader | 2008-01-28 03:51:31 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-01-28 03:51:31 +0000 |
| commit | a1da1e372a7a671153a226d08e9b7ae4b2225196 (patch) | |
| tree | 9a4451f88c7ebb8060181925839f520b393cf34a /doc | |
| parent | 0975aa2475b2691bcb646d56cb3be39f01843ef2 (diff) | |
| download | emacs-a1da1e372a7a671153a226d08e9b7ae4b2225196.tar.gz emacs-a1da1e372a7a671153a226d08e9b7ae4b2225196.zip | |
Merge from gnus--devo--0
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1016
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/misc/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/gnus.texi | 26 |
2 files changed, 31 insertions, 0 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 3c179467fa2..d4710db0675 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-01-28 Michael Sperber <sperber@deinprogramm.de> | ||
| 2 | |||
| 3 | * gnus.texi (Mail Source Specifiers): Document `group' specifier. | ||
| 4 | (Group Parameters): Document `mail-source' parameter. | ||
| 5 | |||
| 1 | 2008-01-27 Michael Albinus <michael.albinus@gmx.de> | 6 | 2008-01-27 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 7 | ||
| 3 | * tramp.texi (Inline methods): The hostname of the su(do)? methods | 8 | * tramp.texi (Inline methods): The hostname of the su(do)? methods |
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index ba61fd72247..f90b0f96847 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi | |||
| @@ -3035,6 +3035,12 @@ to. | |||
| 3035 | If it is set, the value is used as the method for posting message | 3035 | If it is set, the value is used as the method for posting message |
| 3036 | instead of @code{gnus-post-method}. | 3036 | instead of @code{gnus-post-method}. |
| 3037 | 3037 | ||
| 3038 | @item mail-source | ||
| 3039 | @cindex mail-source | ||
| 3040 | If it is set, and the setting of @code{mail-sources} includes a | ||
| 3041 | @code{group} mail source (@pxref{Mail Sources}), the value is a | ||
| 3042 | mail source for this group. | ||
| 3043 | |||
| 3038 | @item banner | 3044 | @item banner |
| 3039 | @cindex banner | 3045 | @cindex banner |
| 3040 | An item like @code{(banner . @var{regexp})} causes any part of an article | 3046 | An item like @code{(banner . @var{regexp})} causes any part of an article |
| @@ -14145,6 +14151,21 @@ element is a @dfn{mail source type}, followed by an arbitrary number of | |||
| 14145 | @dfn{keywords}. Keywords that are not explicitly specified are given | 14151 | @dfn{keywords}. Keywords that are not explicitly specified are given |
| 14146 | default values. | 14152 | default values. |
| 14147 | 14153 | ||
| 14154 | The @code{mail-sources} is global for all mail groups. You can specify | ||
| 14155 | an additional mail source for a particular group by including the | ||
| 14156 | @code{group} mail specifier in @code{mail-sources}, and setting a | ||
| 14157 | @code{mail-source} group parameter (@pxref{Group Parameters}) specifying | ||
| 14158 | a single mail source. When this is used, @code{mail-sources} is | ||
| 14159 | typically just @code{(group)}; the @code{mail-source} parameter for a | ||
| 14160 | group might look like this: | ||
| 14161 | |||
| 14162 | @lisp | ||
| 14163 | (mail-source . (file :path "home/user/spools/foo.spool")) | ||
| 14164 | @end lisp | ||
| 14165 | |||
| 14166 | This means that the group's (and only this group's) messages will be | ||
| 14167 | fetched from the spool file @samp{/user/spools/foo.spool}. | ||
| 14168 | |||
| 14148 | The following mail source types are available: | 14169 | The following mail source types are available: |
| 14149 | 14170 | ||
| 14150 | @table @code | 14171 | @table @code |
| @@ -14535,6 +14556,11 @@ An example webmail source: | |||
| 14535 | :user "user-name" | 14556 | :user "user-name" |
| 14536 | :password "secret") | 14557 | :password "secret") |
| 14537 | @end lisp | 14558 | @end lisp |
| 14559 | |||
| 14560 | @item group | ||
| 14561 | Get the actual mail source from the @code{mail-source} group parameter, | ||
| 14562 | @xref{Group Parameters}. | ||
| 14563 | |||
| 14538 | @end table | 14564 | @end table |
| 14539 | 14565 | ||
| 14540 | @table @dfn | 14566 | @table @dfn |