diff options
author | Tassilo Horn <tsdh@gnu.org> | 2014-07-31 13:11:41 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2014-07-31 13:11:41 +0000 |
commit | def546a8b82f60478c780bf3cbdbceedcf7a2ccd (patch) | |
tree | df57cac397f55ed6ceaa4af2540e7f6985a074a8 /doc/misc/gnus.texi | |
parent | 21a7129a0b8a5c2a38c0c1b3e02b0e3f813cfa7e (diff) | |
download | emacs-def546a8b82f60478c780bf3cbdbceedcf7a2ccd.tar.gz |
[Gnus] Allow list-valued gcc-self group params
* lisp/gnus/gnus-msg.el (gnus-inews-insert-gcc):
Allow `gcc-self' to be a list of groups and t.
* doc/misc/gnus.texi (Group Parameters):
Document that `gcc-self' may also be a list.
Diffstat (limited to 'doc/misc/gnus.texi')
-rw-r--r-- | doc/misc/gnus.texi | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index 80c1cc2ef03..a25d7c540f3 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi @@ -2880,12 +2880,17 @@ news group. @item gcc-self @cindex gcc-self If @code{(gcc-self . t)} is present in the group parameter list, newly -composed messages will be @code{Gcc}'d to the current group. If +composed messages will be @code{gcc}d to the current group. If @code{(gcc-self . none)} is present, no @code{Gcc:} header will be -generated, if @code{(gcc-self . "string")} is present, this string will -be inserted literally as a @code{gcc} header. This parameter takes -precedence over any default @code{Gcc} rules as described later -(@pxref{Archived Messages}), with the exception for messages to resend. +generated, if @code{(gcc-self . "group")} is present, this string will +be inserted literally as a @code{Gcc:} header. It should be a group +name. The @code{gcc-self} value may also be a list of strings and +@code{t}, e.g., @code{(gcc-self "group1" "group2" t)} means to +@code{gcc} the newly composed message into the groups @code{"group1"} +and @code{"group2"}, and into the current group. The @code{gcc-self} +parameter takes precedence over any default @code{Gcc} rules as +described later (@pxref{Archived Messages}), with the exception for +messages to resend. @strong{Caveat}: Adding @code{(gcc-self . t)} to the parameter list of @code{nntp} groups (or the like) isn't valid. An @code{nntp} server |