comparison man/gnus.texi @ 36879:771a25fb56df

*** empty log message ***
author Dave Love <fx@gnu.org>
date Mon, 19 Mar 2001 17:34:12 +0000
parents a0141ceb7edc
children fa8e496e2af1
comparison
equal deleted inserted replaced
36878:33aa0a1e3d4d 36879:771a25fb56df
2558 @samp{fa.4ad-l}. This is a real newsgroup, but the server has gotten 2558 @samp{fa.4ad-l}. This is a real newsgroup, but the server has gotten
2559 the articles from a mail-to-news gateway. Posting directly to this 2559 the articles from a mail-to-news gateway. Posting directly to this
2560 group is therefore impossible---you have to send mail to the mailing 2560 group is therefore impossible---you have to send mail to the mailing
2561 list address instead. 2561 list address instead.
2562 2562
2563 Some parameters have corresponding customizable variables, each of which
2564 is an alist of regexps and values.
2565
2563 @item to-list 2566 @item to-list
2564 @cindex to-list 2567 @cindex to-list
2565 Address used when doing @kbd{a} in that group. 2568 Address used when doing @kbd{a} in that group.
2566 2569
2567 @example 2570 @example
2579 @vindex gnus-add-to-list 2582 @vindex gnus-add-to-list
2580 2583
2581 If you do an @kbd{a} command in a mail group and you don't have a 2584 If you do an @kbd{a} command in a mail group and you don't have a
2582 @code{to-list} group parameter, one will be added automatically upon 2585 @code{to-list} group parameter, one will be added automatically upon
2583 sending the message. 2586 sending the message.
2587
2588 See also @code{gnus-parameter-to-list-alist}.
2584 2589
2585 @item visible 2590 @item visible
2586 @cindex visible 2591 @cindex visible
2587 If the group parameter list has the element @code{(visible . t)}, 2592 If the group parameter list has the element @code{(visible . t)},
2588 that group will always be visible in the Group buffer, regardless 2593 that group will always be visible in the Group buffer, regardless
2630 @code{(total-expire . t)}, all read articles will be put through the 2635 @code{(total-expire . t)}, all read articles will be put through the
2631 expiry process, even if they are not marked as expirable. Use with 2636 expiry process, even if they are not marked as expirable. Use with
2632 caution. Unread, ticked and dormant articles are not eligible for 2637 caution. Unread, ticked and dormant articles are not eligible for
2633 expiry. 2638 expiry.
2634 2639
2640 See also @code{gnus-total-expirable-newsgroups}.
2641
2635 @item expiry-wait 2642 @item expiry-wait
2636 @cindex expiry-wait 2643 @cindex expiry-wait
2637 @vindex nnmail-expiry-wait-function 2644 @vindex nnmail-expiry-wait-function
2638 If the group parameter has an element that looks like @code{(expiry-wait 2645 If the group parameter has an element that looks like @code{(expiry-wait
2639 . 10)}, this value will override any @code{nnmail-expiry-wait} and 2646 . 10)}, this value will override any @code{nnmail-expiry-wait} and
2681 @item charset 2688 @item charset
2682 Elements that look like @code{(charset . iso-8859-1)} will make 2689 Elements that look like @code{(charset . iso-8859-1)} will make
2683 @code{iso-8859-1} the default charset; that is, the charset that will be 2690 @code{iso-8859-1} the default charset; that is, the charset that will be
2684 used for all articles that do not specify a charset. 2691 used for all articles that do not specify a charset.
2685 2692
2693 See also @code{gnus-group-charset-alist}.
2694
2695 @item ignored-charsets
2696 Elements that look like @code{(ignored-charsets x-known iso-8859-1)}
2697 will make @code{iso-8859-1} and @code{x-unknown} ignored; that is, the
2698 default charset will be used for decoding articles.
2699
2700 See also @code{gnus-group-ignored-charsets-alist}.
2701
2702 @item posting-style
2703 You can store additional posting style information for this group only
2704 here (@pxref{Posting Styles}). The format is that of an entry in the
2705 @code{gnus-posting-styles} alist, except that there's no regexp matching
2706 the group name (of course). Style elements in this group parameter will
2707 take precedence over the ones found in @code{gnus-posting-styles}.
2708
2709 For instance, if you want a funky name and signature in this group only,
2710 instead of hacking @code{gnus-posting-styles}, you could put something
2711 like this in the group parameters:
2712
2713 @example
2714 (posting-style
2715 (name "Funky Name")
2716 (signature "Funky Signature"))
2717 @end example
2718
2719 @item banner
2720 An item like @code{(banner . "regex")} causes any part of an article
2721 that matches the regular expression "regex" to be stripped. Instead of
2722 "regex", you can also use the symbol @code{signature} which strips the
2723 last signature or any of the elements of the alist
2724 @code{gnus-article-banner-alist}.
2725
2686 @item (@var{variable} @var{form}) 2726 @item (@var{variable} @var{form})
2687 You can use the group parameters to set variables local to the group you 2727 You can use the group parameters to set variables local to the group you
2688 are entering. If you want to turn threading off in @samp{news.answers}, 2728 are entering. If you want to turn threading off in @samp{news.answers},
2689 you could put @code{(gnus-show-threads nil)} in the group parameters of 2729 you could put @code{(gnus-show-threads nil)} in the group parameters of
2690 that group. @code{gnus-show-threads} will be made into a local variable 2730 that group. @code{gnus-show-threads} will be made into a local variable
2691 in the summary buffer you enter, and the form @code{nil} will be 2731 in the summary buffer you enter, and the form @code{nil} will be
2692 @code{eval}ed there. 2732 @code{eval}ed there.
2693 2733
2694 This can also be used as a group-specific hook function, if you'd like. 2734 This can also be used as a group-specific hook function, if you like.
2695 If you want to hear a beep when you enter a group, you could put 2735 If you want to hear a beep when you enter a group, you could put
2696 something like @code{(dummy-variable (ding))} in the parameters of that 2736 something like @code{(dummy-variable (ding))} in the parameters of that
2697 group. @code{dummy-variable} will be set to the result of the 2737 group. @code{dummy-variable} will be set to the result of the
2698 @code{(ding)} form, but who cares? 2738 @code{(ding)} form, but who cares?
2699
2700 @item posting-style
2701 You can store additional posting style information for this group only
2702 here (@pxref{Posting Styles}). The format is that of an entry in the
2703 @code{gnus-posting-styles} alist, except that there's no regexp matching
2704 the group name (of course). Style elements in this group parameter will
2705 take precedence over the ones found in @code{gnus-posting-styles}.
2706
2707 For instance, if you want a funky name and signature in this group only,
2708 instead of hacking @code{gnus-posting-styles}, you could put something
2709 like this in the group parameters:
2710
2711 @example
2712 (posting-style
2713 (name "Funky Name")
2714 (signature "Funky Signature"))
2715 @end example
2716
2717 @item banner
2718 An item like @code{(banner . "regex")} causes any part of an article
2719 that matches the regular expression "regex" to be stripped. Instead of
2720 "regex", you can also use the symbol @code{signature} which strips the
2721 last signature or any of the elements of the alist
2722 @code{gnus-article-banner-alist}.
2723 2739
2724 @end table 2740 @end table
2725 2741
2726 Use the @kbd{G p} or the @kbd{G c} command to edit group parameters of a 2742 Use the @kbd{G p} or the @kbd{G c} command to edit group parameters of a
2727 group. (@kbd{G p} presents you with a Lisp-based interface, @kbd{G c} 2743 group. (@kbd{G p} presents you with a Lisp-based interface, @kbd{G c}
4223 @kindex G M-p @r{(Summary)} 4239 @kindex G M-p @r{(Summary)}
4224 @findex gnus-summary-prev-unread-subject 4240 @findex gnus-summary-prev-unread-subject
4225 Go to the previous summary line of an unread article 4241 Go to the previous summary line of an unread article
4226 (@code{gnus-summary-prev-unread-subject}). 4242 (@code{gnus-summary-prev-unread-subject}).
4227 4243
4228 @item G j
4229 @itemx j
4230 @kindex j @r{(Summary)}
4231 @kindex G j @r{(Summary)}
4232 @findex gnus-summary-goto-article
4233 Ask for an article number or @code{Message-ID}, and then go to that
4234 article (@code{gnus-summary-goto-article}).
4235
4236 @item G g 4244 @item G g
4237 @kindex G g @r{(Summary)} 4245 @kindex G g @r{(Summary)}
4238 @findex gnus-summary-goto-subject 4246 @findex gnus-summary-goto-subject
4239 Ask for an article number and then go to the summary line of that article 4247 Ask for an article number and then go to the summary line of that article
4240 without displaying the article (@code{gnus-summary-goto-subject}). 4248 without displaying the article (@code{gnus-summary-goto-subject}).
4395 (@code{gnus-summary-pop-article}). This command differs from the 4403 (@code{gnus-summary-pop-article}). This command differs from the
4396 command above in that you can pop as many previous articles off the 4404 command above in that you can pop as many previous articles off the
4397 history as you like, while @kbd{l} toggles the two last read articles. 4405 history as you like, while @kbd{l} toggles the two last read articles.
4398 For a somewhat related issue (if you use these commands a lot), 4406 For a somewhat related issue (if you use these commands a lot),
4399 @pxref{Article Backlog}. 4407 @pxref{Article Backlog}.
4408
4409 @item G j
4410 @itemx j
4411 @kindex j @r{(Summary)}
4412 @kindex G j @r{(Summary)}
4413 @findex gnus-summary-goto-article
4414 Ask for an article number or @code{Message-ID}, and then go to that
4415 article (@code{gnus-summary-goto-article}).
4400 @end table 4416 @end table
4401 4417
4402 4418
4403 @node Choosing Variables 4419 @node Choosing Variables
4404 @subsection Choosing Variables 4420 @subsection Choosing Variables
17755 @section Buttons 17771 @section Buttons
17756 @cindex buttons 17772 @cindex buttons
17757 @cindex mouse 17773 @cindex mouse
17758 @cindex click 17774 @cindex click
17759 17775
17760 Those new-fangled @dfn{mouse} contraptions is very popular with the 17776 Those new-fangled @dfn{mouse} contraptions are very popular with the
17761 young, hep kids who don't want to learn the proper way to do things 17777 young, hep kids who don't want to learn the proper way to do things
17762 these days. Why, I remember way back in the summer of '89, when I was 17778 these days. Why, I remember way back in the summer of '89, when I was
17763 using Emacs on a Tops 20 system. Three hundred users on one single 17779 using Emacs on a Tops 20 system. Three hundred users on one single
17764 machine, and every user was running Simula compilers. Bah! 17780 machine, and every user was running Simula compilers. Bah!
17765 17781