/[emacs]/emacs/man/gnus.texi
ViewVC logotype

Diff of /emacs/man/gnus.texi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.33.6.3 by miles, Wed Sep 15 08:59:57 2004 UTC revision 1.33.6.4 by miles, Wed Sep 29 07:22:16 2004 UTC
# Line 3013  tag can be removed from the article subj Line 3013  tag can be removed from the article subj
3013  the group by putting @code{(gnus-list-identifiers "DOCBOOK-APPS:")}  the group by putting @code{(gnus-list-identifiers "DOCBOOK-APPS:")}
3014  into the group parameters for the group.  into the group parameters for the group.
3015    
3016  This can also be used as a group-specific hook function, if you'd like.  This can also be used as a group-specific hook function.  If you want to
3017  If you want to hear a beep when you enter a group, you could put  hear a beep when you enter a group, you could put something like
3018  something like @code{(dummy-variable (ding))} in the parameters of that  @code{(dummy-variable (ding))} in the parameters of that group.
3019  group.  @code{dummy-variable} will be set to the result of the  @code{dummy-variable} will be set to the (meaningless) result of the
3020  @code{(ding)} form, but who cares?  @code{(ding)} form.  
3021    
3022    Alternatively, since the VARIABLE becomes local to the group, this
3023    pattern can be used to temporarily change a hook.  For example, if the
3024    following is added to a group parameter
3025    
3026    @lisp
3027    (gnus-summary-prepared-hook
3028      '(lambda nil (local-set-key "d" (local-key-binding "n"))))
3029    @end lisp
3030    
3031    when the group is entered, the 'd' key will not mark the article as
3032    expired.
3033    
3034  @end table  @end table
3035    
# Line 5368  to the @code{root} account, you may want Line 5380  to the @code{root} account, you may want
5380  This command understands the process/prefix convention  This command understands the process/prefix convention
5381  (@pxref{Process/Prefix}).  (@pxref{Process/Prefix}).
5382    
5383    @item S D e
5384    @kindex S D e (Summary)
5385    @findex gnus-summary-resend-message-edit
5386    
5387    Like the previous command, but will allow you to edit the message as
5388    if it were a new message before resending.
5389    
5390  @item S O m  @item S O m
5391  @kindex S O m (Summary)  @kindex S O m (Summary)
5392  @findex gnus-uu-digest-mail-forward  @findex gnus-uu-digest-mail-forward
# Line 6187  Mark all series that have already had so Line 6206  Mark all series that have already had so
6206  @item M P a  @item M P a
6207  @kindex M P a (Summary)  @kindex M P a (Summary)
6208  @findex gnus-uu-mark-all  @findex gnus-uu-mark-all
6209  Mark all articles in series order (@code{gnus-uu-mark-series}).  Mark all articles in series order (@code{gnus-uu-mark-all}).
6210    
6211  @item M P b  @item M P b
6212  @kindex M P b (Summary)  @kindex M P b (Summary)
# Line 9328  Here's an example function the does the Line 9347  Here's an example function the does the
9347  @item gnus-mime-multipart-functions  @item gnus-mime-multipart-functions
9348  Alist of @acronym{MIME} multipart types and functions to handle them.  Alist of @acronym{MIME} multipart types and functions to handle them.
9349    
9350    @vindex gnus-mime-display-multipart-alternative-as-mixed
9351    @item gnus-mime-display-multipart-alternative-as-mixed
9352    Display "multipart/alternative" parts as "multipart/mixed".
9353    
9354    @vindex gnus-mime-display-multipart-related-as-mixed
9355    @item gnus-mime-display-multipart-related-as-mixed
9356    Display "multipart/related" parts as "multipart/mixed".
9357    
9358    If displaying "text/html" is discouraged, see
9359    @code{mm-discouraged-alternatives} in @ref{Display Customization,
9360    Display Customization, , emacs-mime, Emacs-Mime Manual}.  Images or
9361    other material inside a "multipart/related" part might be overlooked
9362    when this variable is nil.
9363    
9364    @vindex gnus-mime-display-multipart-as-mixed
9365    @item gnus-mime-display-multipart-as-mixed
9366    Display "multipart" parts as "multipart/mixed".  If t, it overrides nil
9367    values of @code{gnus-mime-display-multipart-alternative-as-mixed} and
9368    @code{gnus-mime-display-multipart-related-as-mixed}.
9369    
9370  @vindex mm-file-name-rewrite-functions  @vindex mm-file-name-rewrite-functions
9371  @item mm-file-name-rewrite-functions  @item mm-file-name-rewrite-functions
9372  List of functions used for rewriting file names of @acronym{MIME} parts.  List of functions used for rewriting file names of @acronym{MIME} parts.
# Line 9424  encode using quoted-printable) or @code{ Line 9463  encode using quoted-printable) or @code{
9463  @cindex coding system aliases  @cindex coding system aliases
9464  @cindex preferred charset  @cindex preferred charset
9465    
9466    @xref{Encoding Customization, , Encoding Customization, emacs-mime,
9467    The Emacs MIME Manual}, for additional variables that control which
9468    MIME charsets are used when sending messages.
9469    
9470  Other charset tricks that may be useful, although not Gnus-specific:  Other charset tricks that may be useful, although not Gnus-specific:
9471    
9472  If there are several @acronym{MIME} charsets that encode the same Emacs  If there are several @acronym{MIME} charsets that encode the same Emacs
# Line 10136  the list in one particular group: Line 10179  the list in one particular group:
10179  @vindex gnus-newsgroup-variables  @vindex gnus-newsgroup-variables
10180  @item gnus-newsgroup-variables  @item gnus-newsgroup-variables
10181  A list of newsgroup (summary buffer) local variables, or cons of  A list of newsgroup (summary buffer) local variables, or cons of
10182  variables and their default values (when the default values are not  variables and their default expressions to be evalled (when the default
10183  @code{nil}), that should be made global while the summary buffer is  values are not @code{nil}), that should be made global while the summary
10184  active.  These variables can be used to set variables in the group  buffer is active.
10185  parameters while still allowing them to affect operations done in  
10186  other buffers.  For example:  Note: The default expressions will be evaluated (using function
10187    @code{eval}) before assignment to the local variable rather than just
10188    assigned to it.  If the default expression is the symbol @code{global},
10189    that symbol will not be evaluated but the global value of the local
10190    variable will be used instead.
10191    
10192    These variables can be used to set variables in the group parameters
10193    while still allowing them to affect operations done in other
10194    buffers.  For example:
10195    
10196  @lisp  @lisp
10197  (setq gnus-newsgroup-variables  (setq gnus-newsgroup-variables
# Line 10149  other buffers.  For example: Line 10200  other buffers.  For example:
10200   "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^To:")))   "^From:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^To:")))
10201  @end lisp  @end lisp
10202    
10203    Also @pxref{Group Parameters}.
10204  @end table  @end table
10205    
10206    
# Line 11269  no more new text to scroll in.  The defa Line 11321  no more new text to scroll in.  The defa
11321  @vindex gnus-article-mode-line-format  @vindex gnus-article-mode-line-format
11322  @item gnus-article-mode-line-format  @item gnus-article-mode-line-format
11323  This variable is a format string along the same lines as  This variable is a format string along the same lines as
11324  @code{gnus-summary-mode-line-format} (@pxref{Mode Line Formatting}).  It  @code{gnus-summary-mode-line-format} (@pxref{Summary Buffer Mode
11325  accepts the same format specifications as that variable, with two  Line}).  It accepts the same format specifications as that variable,
11326  extensions:  with two extensions:
11327    
11328  @table @samp  @table @samp
11329    
# Line 13203  expression should @emph{always} be @samp Line 13255  expression should @emph{always} be @samp
13255  that haven't been matched by any of the other regexps.  (These rules are  that haven't been matched by any of the other regexps.  (These rules are
13256  processed from the beginning of the alist toward the end.  The first  processed from the beginning of the alist toward the end.  The first
13257  rule to make a match will ``win'', unless you have crossposting enabled.  rule to make a match will ``win'', unless you have crossposting enabled.
13258  In that case, all matching rules will ``win''.)  In that case, all matching rules will ``win''.)  When new groups are
13259    created by splitting mail, you may want to run
13260    @code{gnus-group-find-new-groups} to see the new groups.
13261    
13262  If you like to tinker with this yourself, you can set this variable to a  If you like to tinker with this yourself, you can set this variable to a
13263  function of your choice.  This function will be called without any  function of your choice.  This function will be called without any
# Line 13771  If non-@code{nil}, ignore errors when re Line 13825  If non-@code{nil}, ignore errors when re
13825    
13826  @item mail-source-directory  @item mail-source-directory
13827  @vindex mail-source-directory  @vindex mail-source-directory
13828  Directory where files (if any) will be stored.  The default is  Directory where incoming mail source files (if any) will be stored.  The
13829  @file{~/Mail/}.  At present, the only thing this is used for is to say  default is @file{~/Mail/}.  At present, the only thing this is used for
13830  where the incoming files will be stored if the previous variable is  is to say where the incoming files will be stored if the variable
13831  @code{nil}.  @code{mail-source-delete-incoming} is @code{nil} or a number.
13832    
13833  @item mail-source-incoming-file-prefix  @item mail-source-incoming-file-prefix
13834  @vindex mail-source-incoming-file-prefix  @vindex mail-source-incoming-file-prefix
# Line 16571  follows: Line 16625  follows:
16625  This instructs the @code{imap.el} package to log any exchanges with  This instructs the @code{imap.el} package to log any exchanges with
16626  the server.  The log is stored in the buffer @samp{*imap-log*}.  Look  the server.  The log is stored in the buffer @samp{*imap-log*}.  Look
16627  for error messages, which sometimes are tagged with the keyword  for error messages, which sometimes are tagged with the keyword
16628  @code{BAD} - but when submitting a bug, make sure to include all the  @code{BAD}---but when submitting a bug, make sure to include all the
16629  data.  data.
16630    
16631  @node Other Sources  @node Other Sources
# Line 18246  placeholders if you care (See @code{gnus Line 18300  placeholders if you care (See @code{gnus
18300  While it may be obvious to all, the only headers and articles  While it may be obvious to all, the only headers and articles
18301  available while unplugged are those headers and articles that were  available while unplugged are those headers and articles that were
18302  fetched into the Agent while previously plugged.  To put it another  fetched into the Agent while previously plugged.  To put it another
18303  way, "If you forget to fetch something while plugged, you might have a  way, ``If you forget to fetch something while plugged, you might have a
18304  less than satisfying unplugged session".  For this reason, the Agent  less than satisfying unplugged session''.  For this reason, the Agent
18305  adds two visual effects to your summary buffer.  These effects display  adds two visual effects to your summary buffer.  These effects display
18306  the download status of each article so that you always know which  the download status of each article so that you always know which
18307  articles will be available when unplugged.  articles will be available when unplugged.
# Line 18624  following incantation: Line 18678  following incantation:
18678    
18679  @example  @example
18680  #!/bin/sh  #!/bin/sh
18681  emacs -batch -l ~/.emacs -f -l ~/.gnus.el gnus-agent-batch >/dev/null 2>&1  emacs -batch -l ~/.emacs -l ~/.gnus.el gnus-agent-batch >/dev/null 2>&1
18682  @end example  @end example
18683    
18684    
# Line 20436  something like: Line 20490  something like:
20490  ...  ...
20491  @end example  @end example
20492    
20493  Then that means "score on the from header of the grandparent of the  Then that means ``score on the from header of the grandparent of the
20494  current article".  An indirection is quite fast, but it's better to say:  current article''.  An indirection is quite fast, but it's better to say:
20495    
20496  @example  @example
20497  (1-  (1-
# Line 22656  entering a group.  Thus, entering a grou Line 22710  entering a group.  Thus, entering a grou
22710  articles becomes the substitute for checking incoming mail.  Whether  articles becomes the substitute for checking incoming mail.  Whether
22711  only unseen articles or all unread articles will be processed is  only unseen articles or all unread articles will be processed is
22712  determined by the @code{spam-autodetect-recheck-messages}.  When set  determined by the @code{spam-autodetect-recheck-messages}.  When set
22713  to t, unread messages will be rechecked.  to @code{t}, unread messages will be rechecked.
22714    
22715  @code{spam-autodetect} grants the user at once more and less control  @code{spam-autodetect} grants the user at once more and less control
22716  of spam filtering.  The user will have more control over each group's  of spam filtering.  The user will have more control over each group's

Legend:
Removed from v.1.33.6.3  
changed lines
  Added in v.1.33.6.4

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26