Mercurial > emacs
annotate lisp/gnus/gnus-cus.el @ 33332:6eeab3104bf2
*** empty log message ***
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 09 Nov 2000 08:07:58 +0000 |
parents | 141bc3acdfbc |
children | e06db3b8e558 |
rev | line source |
---|---|
17493 | 1 ;;; gnus-cus.el --- customization commands for Gnus |
2 ;; | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
3 ;; Copyright (C) 1996,1999, 2000 Free Software Foundation, Inc. |
17493 | 4 |
5 ;; Author: Per Abrahamsen <abraham@dina.kvl.dk> | |
33173
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
6 ;; Maintainer: bugs@gnus.org |
17493 | 7 ;; Keywords: news |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
25 | |
26 ;;; Commentary: | |
27 | |
28 ;;; Code: | |
29 | |
30 (require 'wid-edit) | |
31 (require 'gnus-score) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
32 (require 'gnus-topic) |
17493 | 33 |
34 ;;; Widgets: | |
35 | |
36 ;; There should be special validation for this. | |
37 (define-widget 'gnus-email-address 'string | |
38 "An email address") | |
39 | |
40 (defun gnus-custom-mode () | |
41 "Major mode for editing Gnus customization buffers. | |
42 | |
43 The following commands are available: | |
44 | |
45 \\[widget-forward] Move to next button or editable field. | |
46 \\[widget-backward] Move to previous button or editable field. | |
47 \\[widget-button-click] Activate button under the mouse pointer. | |
48 \\[widget-button-press] Activate button under point. | |
49 | |
50 Entry to this mode calls the value of `gnus-custom-mode-hook' | |
51 if that value is non-nil." | |
52 (kill-all-local-variables) | |
53 (setq major-mode 'gnus-custom-mode | |
54 mode-name "Gnus Customize") | |
55 (use-local-map widget-keymap) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
56 ;; Emacs 21 stuff: |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
57 (when (and (facep 'custom-button-face) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
58 (facep 'custom-button-pressed-face)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
59 (set (make-local-variable 'widget-button-face) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
60 'custom-button-face) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
61 (set (make-local-variable 'widget-button-pressed-face) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
62 'custom-button-pressed-face) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
63 (set (make-local-variable 'widget-mouse-face) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
64 'custom-button-pressed-face)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
65 (when (and (boundp 'custom-raised-buttons) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
66 (symbol-value 'custom-raised-buttons)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
67 (set (make-local-variable 'widget-push-button-prefix) "") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
68 (set (make-local-variable 'widget-push-button-suffix) "") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
69 (set (make-local-variable 'widget-link-prefix) "") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
70 (set (make-local-variable 'widget-link-suffix) "")) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
71 (gnus-run-hooks 'gnus-custom-mode-hook)) |
17493 | 72 |
73 ;;; Group Customization: | |
74 | |
75 (defconst gnus-group-parameters | |
76 '((to-address (gnus-email-address :tag "To Address") "\ | |
77 This will be used when doing followups and posts. | |
78 | |
79 This is primarily useful in mail groups that represent closed | |
80 mailing lists--mailing lists where it's expected that everybody that | |
81 writes to the mailing list is subscribed to it. Since using this | |
82 parameter ensures that the mail only goes to the mailing list itself, | |
83 it means that members won't receive two copies of your followups. | |
84 | |
85 Using `to-address' will actually work whether the group is foreign or | |
86 not. Let's say there's a group on the server that is called | |
87 `fa.4ad-l'. This is a real newsgroup, but the server has gotten the | |
88 articles from a mail-to-news gateway. Posting directly to this group | |
89 is therefore impossible--you have to send mail to the mailing list | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
90 address instead. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
91 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
92 The gnus-group-split mail splitting mechanism will behave as if this |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
93 address was listed in gnus-group-split Addresses (see below).") |
17493 | 94 |
95 (to-list (gnus-email-address :tag "To List") "\ | |
96 This address will be used when doing a `a' in the group. | |
97 | |
98 It is totally ignored when doing a followup--except that if it is | |
99 present in a news group, you'll get mail group semantics when doing | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
100 `f'. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
101 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
102 The gnus-group-split mail splitting mechanism will behave as if this |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
103 address was listed in gnus-group-split Addresses (see below).") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
104 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
105 (extra-aliases (choice |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
106 :tag "Extra Aliases" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
107 (list |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
108 :tag "List" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
109 (editable-list |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
110 :inline t |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
111 (gnus-email-address :tag "Address"))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
112 (gnus-email-address :tag "Address")) "\ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
113 Store messages posted from or to this address in this group. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
114 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
115 You must be using gnus-group-split for this to work. The VALUE of the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
116 nnmail-split-fancy SPLIT generated for this group will match these |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
117 addresses.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
118 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
119 (split-regexp (regexp :tag "gnus-group-split Regular Expression") "\ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
120 Like gnus-group-split Address, but expects a regular expression.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
121 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
122 (split-exclude (list :tag "gnus-group-split Restricts" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
123 (editable-list |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
124 :inline t (regexp :tag "Restrict"))) "\ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
125 Regular expression that cancels gnus-group-split matches. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
126 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
127 Each entry is added to the nnmail-split-fancy SPLIT as a separate |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
128 RESTRICT clause.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
129 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
130 (split-spec (choice :tag "gnus-group-split Overrider" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
131 (sexp :tag "Fancy Split") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
132 (const :tag "Catch All" catch-all) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
133 (const :tag "Ignore" nil)) "\ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
134 Override all other gnus-group-split fields. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
135 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
136 In `Fancy Split', you can enter any nnmail-split-fancy SPLIT. Note |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
137 that the name of this group won't be automatically assumed, you have |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
138 to add it to the SPLITs yourself. This means you can use such splits |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
139 to split messages to other groups too. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
140 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
141 If you select `Catch All', this group will get postings for any |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
142 messages not matched in any other group. It overrides the variable |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
143 gnus-group-split-default-catch-all-group. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
144 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
145 Selecting `Ignore' forces no SPLIT to be generated for this group, |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
146 disabling all other gnus-group-split fields.") |
17493 | 147 |
148 (broken-reply-to (const :tag "Broken Reply To" t) "\ | |
149 Ignore `Reply-To' headers in this group. | |
150 | |
151 That can be useful if you're reading a mailing list group where the | |
152 listserv has inserted `Reply-To' headers that point back to the | |
153 listserv itself. This is broken behavior. So there!") | |
154 | |
155 (to-group (string :tag "To Group") "\ | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
156 All posts will be sent to the specified group.") |
17493 | 157 |
158 (gcc-self (choice :tag "GCC" | |
159 :value t | |
33173
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
160 (const :tag "To current group" t) |
17493 | 161 (const none) |
162 (string :format "%v" :hide-front-space t)) "\ | |
163 Specify default value for GCC header. | |
164 | |
165 If this symbol is present in the group parameter list and set to `t', | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
166 new composed messages will be `Gcc''d to the current group. If it is |
17493 | 167 present and set to `none', no `Gcc:' header will be generated, if it |
168 is present and a string, this string will be inserted literally as a | |
169 `gcc' header (this symbol takes precedence over any default `Gcc' | |
170 rules as described later).") | |
171 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
172 (banner (choice :tag "Banner" |
33173
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
173 :value nil |
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
174 (const :tag "Remove signature" signature) |
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
175 (symbol :tag "Item in `gnus-article-banner-alist'" none) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
176 regexp |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
177 (const :tag "None" nil)) "\ |
33173
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
178 If non-nil, specify how to remove `banners' from articles. |
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
179 |
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
180 Symbol `signature' means to remove signatures delimited by |
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
181 `gnus-signature-separator'. Any other symbol is used to look up a |
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
182 regular expression to match the banner in `gnus-article-banner-alist'. |
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
183 A string is used as a regular expression to match the banner |
141bc3acdfbc
(gnus-group-parameters) <gcc-self>: Fix custom type.
Dave Love <fx@gnu.org>
parents:
31716
diff
changeset
|
184 directly.") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
185 |
17493 | 186 (auto-expire (const :tag "Automatic Expire" t) "\ |
187 All articles that are read will be marked as expirable.") | |
188 | |
189 (total-expire (const :tag "Total Expire" t) "\ | |
190 All read articles will be put through the expiry process | |
191 | |
192 This happens even if they are not marked as expirable. | |
193 Use with caution.") | |
194 | |
195 (expiry-wait (choice :tag "Expire Wait" | |
196 :value never | |
197 (const never) | |
198 (const immediate) | |
199 (number :hide-front-space t | |
200 :format "%v")) "\ | |
201 When to expire. | |
202 | |
203 Overrides any `nnmail-expiry-wait' and `nnmail-expiry-wait-function' | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
204 when expiring expirable messages. The value can either be a number of |
17493 | 205 days (not necessarily an integer) or the symbols `never' or |
206 `immediate'.") | |
207 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
208 (expiry-target (choice :tag "Expiry Target" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
209 :value delete |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
210 (const delete) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
211 (function :format "%v" nnmail-) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
212 string) "\ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
213 Where expired messages end up. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
214 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
215 Overrides `nnmail-expiry-target', which see.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
216 |
17493 | 217 (score-file (file :tag "Score File") "\ |
218 Make the specified file into the current score file. | |
219 This means that all score commands you issue will end up in this file.") | |
220 | |
221 (adapt-file (file :tag "Adapt File") "\ | |
222 Make the specified file into the current adaptive file. | |
223 All adaptive score entries will be put into this file.") | |
224 | |
225 (admin-address (gnus-email-address :tag "Admin Address") "\ | |
226 Administration address for a mailing list. | |
227 | |
228 When unsubscribing to a mailing list you should never send the | |
229 unsubscription notice to the mailing list itself. Instead, you'd | |
230 send messages to the administrative address. This parameter allows | |
231 you to put the admin address somewhere convenient.") | |
232 | |
233 (display (choice :tag "Display" | |
234 :value default | |
235 (const all) | |
236 (const default)) "\ | |
237 Which articles to display on entering the group. | |
238 | |
239 `all' | |
240 Display all articles, both read and unread. | |
241 | |
242 `default' | |
243 Display the default visible articles, which normally includes | |
244 unread and ticked articles.") | |
245 | |
246 (comment (string :tag "Comment") "\ | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
247 An arbitrary comment on the group.") |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
248 |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
249 (visible (const :tag "Permanently visible" t) "\ |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
250 Always display this group, even when there are no unread articles |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
251 in it..") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
252 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
253 (charset (symbol :tag "Charset") "\ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
254 The default charset to use in the group.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
255 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
256 (ignored-charsets |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
257 (choice :tag "Ignored charsets" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
258 :value nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
259 (repeat (symbol))) "\ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
260 List of charsets that should be ignored. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
261 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
262 When these charsets are used in the \"charset\" parameter, the |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
263 default charset will be used instead.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
264 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
265 (highlight-words |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
266 (choice :tag "Highlight words" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
267 :value nil |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
268 (repeat (list (regexp :tag "Highlight regexp") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
269 (number :tag "Group for entire word" 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
270 (number :tag "Group for displayed part" 0) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
271 (symbol :tag "Face" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
272 gnus-emphasis-highlight-words)))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
273 "highlight regexps. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
274 See gnus-emphasis-alist.")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
275 "Alist of valid group or topic parameters. |
17493 | 276 |
277 Each entry has the form (NAME TYPE DOC), where NAME is the parameter | |
278 itself (a symbol), TYPE is the parameters type (a sexp widget), and | |
279 DOC is a documentation string for the parameter.") | |
280 | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
281 (defconst gnus-extra-topic-parameters |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
282 '((subscribe (regexp :tag "Subscribe") "\ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
283 If `gnus-subscribe-newsgroup-method' is set to |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
284 `gnus-subscribe-topics', new groups that matches this regexp will |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
285 automatically be subscribed to this topic")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
286 "Alist of topic parameters that are not also group parameters. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
287 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
288 Each entry has the form (NAME TYPE DOC), where NAME is the parameter |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
289 itself (a symbol), TYPE is the parameters type (a sexp widget), and |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
290 DOC is a documentation string for the parameter.") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
291 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
292 (defconst gnus-extra-group-parameters |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
293 '((uidvalidity (string :tag "IMAP uidvalidity") "\ |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
294 Server-assigned value attached to IMAP groups, used to maintain consistency.")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
295 "Alist of group parameters that are not also topic parameters. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
296 |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
297 Each entry has the form (NAME TYPE DOC), where NAME is the parameter |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
298 itself (a symbol), TYPE is the parameters type (a sexp widget), and |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
299 DOC is a documentation string for the parameter.") |
17493 | 300 (defvar gnus-custom-params) |
301 (defvar gnus-custom-method) | |
302 (defvar gnus-custom-group) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
303 (defvar gnus-custom-topic) |
17493 | 304 |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
305 (defun gnus-group-customize (group &optional topic) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
306 "Edit the group or topic on the current line." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
307 (interactive (list (gnus-group-group-name) (gnus-group-topic-name))) |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
308 (let (info |
17493 | 309 (types (mapcar (lambda (entry) |
310 `(cons :format "%v%h\n" | |
311 :doc ,(nth 2 entry) | |
312 (const :format "" ,(nth 0 entry)) | |
313 ,(nth 1 entry))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
314 (append gnus-group-parameters |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
315 (if group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
316 gnus-extra-group-parameters |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
317 gnus-extra-topic-parameters))))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
318 (unless (or group topic) |
17493 | 319 (error "No group on current line")) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
320 (when (and group topic) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
321 (error "Both a group an topic on current line")) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
322 (unless (or topic (setq info (gnus-get-info group))) |
17493 | 323 (error "Killed group; can't be edited")) |
324 ;; Ready. | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
325 (kill-buffer (gnus-get-buffer-create "*Gnus Customize*")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
326 (switch-to-buffer (gnus-get-buffer-create "*Gnus Customize*")) |
17493 | 327 (gnus-custom-mode) |
328 (make-local-variable 'gnus-custom-group) | |
329 (setq gnus-custom-group group) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
330 (make-local-variable 'gnus-custom-topic) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
331 (setq gnus-custom-topic topic) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
332 (buffer-disable-undo) |
17493 | 333 (widget-insert "Customize the ") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
334 (if group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
335 (widget-create 'info-link |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
336 :help-echo "Push me to learn more." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
337 :tag "group parameters" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
338 "(gnus)Group Parameters") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
339 (widget-create 'info-link |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
340 :help-echo "Push me to learn more." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
341 :tag "topic parameters" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
342 "(gnus)Topic Parameters")) |
17493 | 343 (widget-insert " for <") |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
344 (widget-insert (gnus-group-decoded-name (or group topic))) |
17493 | 345 (widget-insert "> and press ") |
346 (widget-create 'push-button | |
347 :tag "done" | |
348 :help-echo "Push me when done customizing." | |
349 :action 'gnus-group-customize-done) | |
350 (widget-insert ".\n\n") | |
351 (make-local-variable 'gnus-custom-params) | |
352 (setq gnus-custom-params | |
353 (widget-create 'group | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
354 :value (if group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
355 (gnus-info-params info) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
356 (gnus-topic-parameters topic)) |
17493 | 357 `(set :inline t |
358 :greedy t | |
359 :tag "Parameters" | |
360 :format "%t:\n%h%v" | |
361 :doc "\ | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
362 These special parameters are recognized by Gnus. |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
363 Check the [ ] for the parameters you want to apply to this group or |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
364 to the groups in this topic, then edit the value to suit your taste." |
17493 | 365 ,@types) |
366 '(repeat :inline t | |
367 :tag "Variables" | |
368 :format "%t:\n%h%v%i\n\n" | |
369 :doc "\ | |
370 Set variables local to the group you are entering. | |
371 | |
372 If you want to turn threading off in `news.answers', you could put | |
373 `(gnus-show-threads nil)' in the group parameters of that group. | |
374 `gnus-show-threads' will be made into a local variable in the summary | |
375 buffer you enter, and the form `nil' will be `eval'ed there. | |
376 | |
377 This can also be used as a group-specific hook function, if you'd | |
378 like. If you want to hear a beep when you enter a group, you could | |
379 put something like `(dummy-variable (ding))' in the parameters of that | |
380 group. `dummy-variable' will be set to the result of the `(ding)' | |
381 form, but who cares?" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
382 (list :format "%v" :value (nil nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
383 (symbol :tag "Variable") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
384 (sexp :tag |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
385 "Value"))) |
17493 | 386 |
387 '(repeat :inline t | |
388 :tag "Unknown entries" | |
389 sexp))) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
390 (when group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
391 (widget-insert "\n\nYou can also edit the ") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
392 (widget-create 'info-link |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
393 :tag "select method" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
394 :help-echo "Push me to learn more about select methods." |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
395 "(gnus)Select Methods") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
396 (widget-insert " for the group.\n") |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
397 (setq gnus-custom-method |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
398 (widget-create 'sexp |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
399 :tag "Method" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
400 :value (gnus-info-method info)))) |
17493 | 401 (use-local-map widget-keymap) |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
402 (widget-setup) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
403 (buffer-enable-undo) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
404 (goto-char (point-min)))) |
17493 | 405 |
406 (defun gnus-group-customize-done (&rest ignore) | |
407 "Apply changes and bury the buffer." | |
408 (interactive) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
409 (if gnus-custom-topic |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
410 (gnus-topic-set-parameters gnus-custom-topic |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
411 (widget-value gnus-custom-params)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
412 (gnus-group-edit-group-done 'params gnus-custom-group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
413 (widget-value gnus-custom-params)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
414 (gnus-group-edit-group-done 'method gnus-custom-group |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
415 (widget-value gnus-custom-method))) |
17493 | 416 (bury-buffer)) |
417 | |
418 ;;; Score Customization: | |
419 | |
420 (defconst gnus-score-parameters | |
421 '((mark (number :tag "Mark") "\ | |
422 The value of this entry should be a number. | |
423 Any articles with a score lower than this number will be marked as read.") | |
424 | |
425 (expunge (number :tag "Expunge") "\ | |
426 The value of this entry should be a number. | |
427 Any articles with a score lower than this number will be removed from | |
428 the summary buffer.") | |
429 | |
430 (mark-and-expunge (number :tag "Mark-and-expunge") "\ | |
431 The value of this entry should be a number. | |
432 Any articles with a score lower than this number will be marked as | |
433 read and removed from the summary buffer.") | |
434 | |
435 (thread-mark-and-expunge (number :tag "Thread-mark-and-expunge") "\ | |
436 The value of this entry should be a number. | |
437 All articles that belong to a thread that has a total score below this | |
438 number will be marked as read and removed from the summary buffer. | |
439 `gnus-thread-score-function' says how to compute the total score | |
440 for a thread.") | |
441 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
442 (files (repeat :inline t :tag "Files" file) "\ |
17493 | 443 The value of this entry should be any number of file names. |
444 These files are assumed to be score files as well, and will be loaded | |
445 the same way this one was.") | |
446 | |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
447 (exclude-files (repeat :inline t :tag "Exclude-files" file) "\ |
17493 | 448 The clue of this entry should be any number of files. |
449 These files will not be loaded, even though they would normally be so, | |
450 for some reason or other.") | |
451 | |
452 (eval (sexp :tag "Eval" :value nil) "\ | |
453 The value of this entry will be `eval'el. | |
454 This element will be ignored when handling global score files.") | |
455 | |
456 (read-only (boolean :tag "Read-only" :value t) "\ | |
457 Read-only score files will not be updated or saved. | |
458 Global score files should feature this atom.") | |
459 | |
460 (orphan (number :tag "Orphan") "\ | |
461 The value of this entry should be a number. | |
462 Articles that do not have parents will get this number added to their | |
463 scores. Imagine you follow some high-volume newsgroup, like | |
464 `comp.lang.c'. Most likely you will only follow a few of the threads, | |
465 also want to see any new threads. | |
466 | |
467 You can do this with the following two score file entries: | |
468 | |
469 (orphan -500) | |
470 (mark-and-expunge -100) | |
471 | |
472 When you enter the group the first time, you will only see the new | |
473 threads. You then raise the score of the threads that you find | |
474 interesting (with `I T' or `I S'), and ignore (`C y') the rest. | |
475 Next time you enter the group, you will see new articles in the | |
476 interesting threads, plus any new threads. | |
477 | |
478 I.e.---the orphan score atom is for high-volume groups where there | |
479 exist a few interesting threads which can't be found automatically | |
480 by ordinary scoring rules.") | |
481 | |
482 (adapt (choice :tag "Adapt" | |
483 (const t) | |
484 (const ignore) | |
485 (sexp :format "%v" | |
486 :hide-front-space t)) "\ | |
487 This entry controls the adaptive scoring. | |
488 If it is `t', the default adaptive scoring rules will be used. If it | |
489 is `ignore', no adaptive scoring will be performed on this group. If | |
490 it is a list, this list will be used as the adaptive scoring rules. | |
491 If it isn't present, or is something other than `t' or `ignore', the | |
492 default adaptive scoring rules will be used. If you want to use | |
493 adaptive scoring on most groups, you'd set `gnus-use-adaptive-scoring' | |
494 to `t', and insert an `(adapt ignore)' in the groups where you do not | |
495 want adaptive scoring. If you only want adaptive scoring in a few | |
496 groups, you'd set `gnus-use-adaptive-scoring' to `nil', and insert | |
497 `(adapt t)' in the score files of the groups where you want it.") | |
498 | |
499 (adapt-file (file :tag "Adapt-file") "\ | |
500 All adaptive score entries will go to the file named by this entry. | |
501 It will also be applied when entering the group. This atom might | |
502 be handy if you want to adapt on several groups at once, using the | |
503 same adaptive file for a number of groups.") | |
504 | |
505 (local (repeat :tag "Local" | |
506 (group :value (nil nil) | |
507 (symbol :tag "Variable") | |
508 (sexp :tag "Value"))) "\ | |
509 The value of this entry should be a list of `(VAR VALUE)' pairs. | |
510 Each VAR will be made buffer-local to the current summary buffer, | |
511 and set to the value specified. This is a convenient, if somewhat | |
512 strange, way of setting variables in some groups if you don't like | |
513 hooks much.") | |
514 (touched (sexp :format "Touched\n") "Internal variable.")) | |
515 "Alist of valid symbolic score parameters. | |
516 | |
517 Each entry has the form (NAME TYPE DOC), where NAME is the parameter | |
518 itself (a symbol), TYPE is the parameters type (a sexp widget), and DOC is a | |
519 documentation string for the parameter.") | |
520 | |
521 (define-widget 'gnus-score-string 'group | |
522 "Edit score entries for string-valued headers." | |
523 :convert-widget 'gnus-score-string-convert) | |
524 | |
525 (defun gnus-score-string-convert (widget) | |
526 ;; Set args appropriately. | |
527 (let* ((tag (widget-get widget :tag)) | |
528 (item `(const :format "" :value ,(downcase tag))) | |
529 (match '(string :tag "Match")) | |
530 (score '(choice :tag "Score" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
531 (const :tag "default" nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
532 (integer :format "%v" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
533 :hide-front-space t))) |
17493 | 534 (expire '(choice :tag "Expire" |
535 (const :tag "off" nil) | |
536 (integer :format "%v" | |
537 :hide-front-space t))) | |
538 (type '(choice :tag "Type" | |
539 :value s | |
540 ;; I should really create a forgiving :match | |
541 ;; function for each type below, that only | |
542 ;; looked at the first letter. | |
543 (const :tag "Regexp" r) | |
544 (const :tag "Regexp (fixed case)" R) | |
545 (const :tag "Substring" s) | |
546 (const :tag "Substring (fixed case)" S) | |
547 (const :tag "Exact" e) | |
548 (const :tag "Exact (fixed case)" E) | |
549 (const :tag "Word" w) | |
550 (const :tag "Word (fixed case)" W) | |
551 (const :tag "default" nil))) | |
552 (group `(group ,match ,score ,expire ,type)) | |
553 (doc (concat (or (widget-get widget :doc) | |
554 (concat "Change score based on the " tag | |
555 " header.\n")) | |
556 " | |
557 You can have an arbitrary number of score entries for this header, | |
558 each score entry has four elements: | |
559 | |
560 1. The \"match element\". This should be the string to look for in the | |
561 header. | |
562 | |
563 2. The \"score element\". This number should be an integer in the | |
564 neginf to posinf interval. This number is added to the score | |
565 of the article if the match is successful. If this element is | |
566 not present, the `gnus-score-interactive-default-score' number | |
567 will be used instead. This is 1000 by default. | |
568 | |
569 3. The \"date element\". This date says when the last time this score | |
570 entry matched, which provides a mechanism for expiring the | |
571 score entries. It this element is not present, the score | |
572 entry is permanent. The date is represented by the number of | |
573 days since December 31, 1 ce. | |
574 | |
575 4. The \"type element\". This element specifies what function should | |
576 be used to see whether this score entry matches the article. | |
577 | |
578 There are the regexp, as well as substring types, and exact match, | |
579 and word match types. If this element is not present, Gnus will | |
580 assume that substring matching should be used. There is case | |
581 sensitive variants of all match types."))) | |
582 (widget-put widget :args `(,item | |
583 (repeat :inline t | |
584 :indent 0 | |
585 :tag ,tag | |
586 :doc ,doc | |
587 :format "%t:\n%h%v%i\n\n" | |
588 (choice :format "%v" | |
589 :value ("" nil nil s) | |
590 ,group | |
591 sexp))))) | |
592 widget) | |
593 | |
594 (define-widget 'gnus-score-integer 'group | |
595 "Edit score entries for integer-valued headers." | |
596 :convert-widget 'gnus-score-integer-convert) | |
597 | |
598 (defun gnus-score-integer-convert (widget) | |
599 ;; Set args appropriately. | |
600 (let* ((tag (widget-get widget :tag)) | |
601 (item `(const :format "" :value ,(downcase tag))) | |
602 (match '(integer :tag "Match")) | |
603 (score '(choice :tag "Score" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
604 (const :tag "default" nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
605 (integer :format "%v" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
606 :hide-front-space t))) |
17493 | 607 (expire '(choice :tag "Expire" |
608 (const :tag "off" nil) | |
609 (integer :format "%v" | |
610 :hide-front-space t))) | |
611 (type '(choice :tag "Type" | |
612 :value < | |
613 (const <) | |
614 (const >) | |
615 (const =) | |
616 (const >=) | |
617 (const <=))) | |
618 (group `(group ,match ,score ,expire ,type)) | |
619 (doc (concat (or (widget-get widget :doc) | |
620 (concat "Change score based on the " tag | |
621 " header."))))) | |
622 (widget-put widget :args `(,item | |
623 (repeat :inline t | |
624 :indent 0 | |
625 :tag ,tag | |
626 :doc ,doc | |
627 :format "%t:\n%h%v%i\n\n" | |
628 ,group)))) | |
629 widget) | |
630 | |
631 (define-widget 'gnus-score-date 'group | |
632 "Edit score entries for date-valued headers." | |
633 :convert-widget 'gnus-score-date-convert) | |
634 | |
635 (defun gnus-score-date-convert (widget) | |
636 ;; Set args appropriately. | |
637 (let* ((tag (widget-get widget :tag)) | |
638 (item `(const :format "" :value ,(downcase tag))) | |
639 (match '(string :tag "Match")) | |
640 (score '(choice :tag "Score" | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
641 (const :tag "default" nil) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
642 (integer :format "%v" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
643 :hide-front-space t))) |
17493 | 644 (expire '(choice :tag "Expire" |
645 (const :tag "off" nil) | |
646 (integer :format "%v" | |
647 :hide-front-space t))) | |
648 (type '(choice :tag "Type" | |
649 :value regexp | |
650 (const regexp) | |
651 (const before) | |
652 (const at) | |
653 (const after))) | |
654 (group `(group ,match ,score ,expire ,type)) | |
655 (doc (concat (or (widget-get widget :doc) | |
656 (concat "Change score based on the " tag | |
657 " header.")) | |
658 " | |
659 For the Date header we have three kinda silly match types: `before', | |
660 `at' and `after'. I can't really imagine this ever being useful, but, | |
661 like, it would feel kinda silly not to provide this function. Just in | |
662 case. You never know. Better safe than sorry. Once burnt, twice | |
663 shy. Don't judge a book by its cover. Never not have sex on a first | |
664 date. (I have been told that at least one person, and I quote, | |
665 \"found this function indispensable\", however.) | |
666 | |
667 A more useful match type is `regexp'. With it, you can match the date | |
668 string using a regular expression. The date is normalized to ISO8601 | |
669 compact format first---`YYYYMMDDTHHMMSS'. If you want to match all | |
670 articles that have been posted on April 1st in every year, you could | |
671 use `....0401.........' as a match string, for instance. (Note that | |
672 the date is kept in its original time zone, so this will match | |
673 articles that were posted when it was April 1st where the article was | |
674 posted from. Time zones are such wholesome fun for the whole family, | |
675 eh?"))) | |
676 (widget-put widget :args `(,item | |
677 (repeat :inline t | |
678 :indent 0 | |
679 :tag ,tag | |
680 :doc ,doc | |
681 :format "%t:\n%h%v%i\n\n" | |
682 ,group)))) | |
683 widget) | |
684 | |
685 (defvar gnus-custom-scores) | |
686 (defvar gnus-custom-score-alist) | |
687 | |
688 (defun gnus-score-customize (file) | |
689 "Customize score file FILE." | |
690 (interactive (list gnus-current-score-file)) | |
691 (let ((scores (gnus-score-load file)) | |
692 (types (mapcar (lambda (entry) | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
693 `(group :format "%v%h\n" |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
694 :doc ,(nth 2 entry) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
695 (const :format "" ,(nth 0 entry)) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
696 ,(nth 1 entry))) |
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
697 gnus-score-parameters))) |
17493 | 698 ;; Ready. |
24357
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
699 (kill-buffer (gnus-get-buffer-create "*Gnus Customize*")) |
15fc6acbae7a
Upgrading to Gnus 5.7; see ChangeLog
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
17493
diff
changeset
|
700 (switch-to-buffer (gnus-get-buffer-create "*Gnus Customize*")) |
17493 | 701 (gnus-custom-mode) |
702 (make-local-variable 'gnus-custom-score-alist) | |
703 (setq gnus-custom-score-alist scores) | |
704 (widget-insert "Customize the ") | |
705 (widget-create 'info-link | |
706 :help-echo "Push me to learn more." | |
707 :tag "score entries" | |
708 "(gnus)Score File Format") | |
709 (widget-insert " for\n\t") | |
710 (widget-insert file) | |
711 (widget-insert "\nand press ") | |
712 (widget-create 'push-button | |
713 :tag "done" | |
714 :help-echo "Push me when done customizing." | |
715 :action 'gnus-score-customize-done) | |
716 (widget-insert ".\n | |
717 Check the [ ] for the entries you want to apply to this score file, then | |
718 edit the value to suit your taste. Don't forget to mark the checkbox, | |
719 if you do all your changes will be lost. ") | |
720 (widget-create 'push-button | |
721 :action (lambda (&rest ignore) | |
722 (require 'gnus-audio) | |
723 (gnus-audio-play "Evil_Laugh.au")) | |
724 "Bhahahah!") | |
725 (widget-insert "\n\n") | |
726 (make-local-variable 'gnus-custom-scores) | |
727 (setq gnus-custom-scores | |
728 (widget-create 'group | |
729 :value scores | |
730 `(checklist :inline t | |
731 :greedy t | |
732 (gnus-score-string :tag "From") | |
733 (gnus-score-string :tag "Subject") | |
734 (gnus-score-string :tag "References") | |
735 (gnus-score-string :tag "Xref") | |
31716
9968f55ad26e
Update to emacs-21-branch of the Gnus CVS repository.
Gerd Moellmann <gerd@gnu.org>
parents:
24357
diff
changeset
|
736 (gnus-score-string :tag "Extra") |
17493 | 737 (gnus-score-string :tag "Message-ID") |
738 (gnus-score-integer :tag "Lines") | |
739 (gnus-score-integer :tag "Chars") | |
740 (gnus-score-date :tag "Date") | |
741 (gnus-score-string :tag "Head" | |
742 :doc "\ | |
743 Match all headers in the article. | |
744 | |
745 Using one of `Head', `Body', `All' will slow down scoring considerable. | |
746 ") | |
747 (gnus-score-string :tag "Body" | |
748 :doc "\ | |
749 Match the body sans header of the article. | |
750 | |
751 Using one of `Head', `Body', `All' will slow down scoring considerable. | |
752 ") | |
753 (gnus-score-string :tag "All" | |
754 :doc "\ | |
755 Match the entire article, including both headers and body. | |
756 | |
757 Using one of `Head', `Body', `All' will slow down scoring | |
758 considerable. | |
759 ") | |
760 (gnus-score-string :tag | |
761 "Followup" | |
762 :doc "\ | |
763 Score all followups to the specified authors. | |
764 | |
765 This entry is somewhat special, in that it will match the `From:' | |
766 header, and affect the score of not only the matching articles, but | |
767 also all followups to the matching articles. This allows you | |
768 e.g. increase the score of followups to your own articles, or decrease | |
769 the score of followups to the articles of some known trouble-maker. | |
770 ") | |
771 (gnus-score-string :tag "Thread" | |
772 :doc "\ | |
773 Add a score entry on all articles that are part of a thread. | |
774 | |
775 This match key works along the same lines as the `Followup' match key. | |
776 If you say that you want to score on a (sub-)thread that is started by | |
777 an article with a `Message-ID' X, then you add a `thread' match. This | |
778 will add a new `thread' match for each article that has X in its | |
779 `References' header. (These new `thread' matches will use the | |
780 `Message-ID's of these matching articles.) This will ensure that you | |
781 can raise/lower the score of an entire thread, even though some | |
782 articles in the thread may not have complete `References' headers. | |
783 Note that using this may lead to undeterministic scores of the | |
784 articles in the thread. | |
785 ") | |
786 ,@types) | |
787 '(repeat :inline t | |
788 :tag "Unknown entries" | |
789 sexp))) | |
790 (use-local-map widget-keymap) | |
791 (widget-setup))) | |
792 | |
793 (defun gnus-score-customize-done (&rest ignore) | |
794 "Reset the score alist with the present value." | |
795 (let ((alist gnus-custom-score-alist) | |
796 (value (widget-value gnus-custom-scores))) | |
797 (setcar alist (car value)) | |
798 (setcdr alist (cdr value)) | |
799 (gnus-score-set 'touched '(t) alist)) | |
800 (bury-buffer)) | |
801 | |
802 ;;; The End: | |
803 | |
804 (provide 'gnus-cus) | |
805 | |
806 ;;; gnus-cus.el ends here |