Indent.
[gnus] / GNUS-NEWS
1 GNUS NEWS -- history of user-visible changes.
2 Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3 See the end for copying conditions.
4
5 Please send Gnus bug reports to bugs@gnus.org.
6 For older news, see Gnus info node "New Features".
7
8 \f
9 * Changes in Oort Gnus
10
11 ** The new variable `gnus-parameters' can be used to set group parameters.
12
13 Earlier this was done only via `G p' (or `G c'), which stored the
14 parameters in ~/.newsrc.eld, but via this variable you can enjoy the
15 powers of customize, and simplified backups since you set the variable
16 in ~/.emacs instead of ~/.newsrc.eld.  The variable maps regular
17 expressions matching group names to group parameters, a'la:
18
19      (setq gnus-parameters
20            '(("mail\\..*"
21               (gnus-show-threads nil)
22               (gnus-use-scoring nil))
23              ("^nnimap:\\(foo.bar\\)$"
24               (to-group . "\\1"))))
25
26 ** Smileys (":-)", ";-)" etc) are now iconized for Emacs too.
27
28 Put (setq gnus-treat-display-smileys nil) in ~/.emacs to disable it.
29
30 ** Gnus no longer generate the Sender: header automatically.
31
32 Earlier it was generated iff the user configurable email address was
33 different from the Gnus guessed default user address.  As the guessing
34 algorithm is rarely correct these days, and (more controversally) the
35 only use of the Sender: header was to check if you are entitled to
36 cancel/supersede news (which is now solved by Cancel Locks instead,
37 see another entry), generation of the header has been disabled by
38 default.  See the variables `message-required-headers',
39 `message-required-news-headers', and `message-required-mail-headers'.
40
41 ** Features from third party message-utils.el added to message.el.
42
43 Message now asks if you wish to remove "(was: <old subject>)" from
44 subject lines (see `message-subject-trailing-was-query').  C-c M-m and
45 C-c M-f inserts markers indicating included text.  C-c C-f a adds a
46 X-No-Archive: header.  C-c C-f x inserts appropriate headers and a
47 note in the body for cross-postings and followups (see the variables
48 `message-cross-post-*').
49
50 ** References and X-Draft-Headers are no longer generated when you
51    start composing messages.
52
53 ** Improved anti-spam features.
54
55 Gnus is now able to take out spam from your mail and news streams
56 using a wide variety of programs and filter rules. Among the supported
57 methods are RBL blocklists, bogofilter and white/blacklists.  Hooks
58 for easy use of external packages such as SpamAssassin and Hashcash
59 are also new.
60
61 ** Easy inclusion of X-Faces headers.
62
63 ** In the summary buffer, the new command / N inserts new messages and
64 / o inserts old messages.
65
66 ** Gnus decodes morse encoded messages if you press W m.
67
68 ** Unread count correct in nnimap groups.
69
70 The estimated number of unread articles in the group buffer should now
71 be correct for nnimap groups.  This is achieved by calling
72 `nnimap-fixup-unread-after-getting-new-news' from the
73 `gnus-setup-news-hook' (called on startup) and
74 gnus-after-getting-new-news-hook. (called after getting new mail).  If
75 you have modified those variables from the default, you may want to
76 add n-f-u-a-g-n-n again.  If you were happy with the estimate and want
77 to save some (minimal) time when getting new mail, remove the
78 function.
79
80 ** Group Carbon Copy (GCC) quoting
81
82 To support groups that contains SPC and other weird characters, groups
83 are quoted before they are placed in the Gcc: header.  This means
84 variables such as `gnus-message-archive-group' should no longer
85 contain quote characters to make groups containing SPC work.  Also, if
86 you are using the string "nnml:foo, nnml:bar" (indicating Gcc into two
87 groups) you must change it to return the list ("nnml:foo" "nnml:bar"),
88 otherwise the Gcc: line will be quoted incorrectly.  Note that
89 returning the string "nnml:foo, nnml:bar" was incorrect earlier, it
90 just didn't generate any problems since it was inserted directly.
91
92 ** ~/News/overview/ not used.
93
94 As a result of the following change, the ~/News/overview/ directory is
95 not used any more.  You can safely delete the entire hierarchy.
96
97 ** gnus-agent
98
99 The Gnus Agent has seen a major updated and is now enabled by default,
100 and all nntp and nnimap servers from gnus-select-method and
101 gnus-secondary-select-method are agentized by default. Earlier only
102 the server in gnus-select-method was agentized by the default, and the
103 agent was disabled by default.  When the agent is enabled, headers are
104 now also retrieved from the Agent cache instead of the backends when
105 possible. Earlier this only happened in the unplugged state.  You can
106 enroll or remove servers with `J a' and `J r' in the server buffer.
107 Gnus will not download articles into the Agent cache, unless you
108 instruct it to do so, though, by using `J u' or `J s' from the Group
109 buffer.  You revert to the old behaviour of having the Agent disabled
110 with `(setq gnus-agent nil)'.  Note that putting (gnus-agentize) in
111 ~/.gnus is not needed any more.
112
113 ** gnus-summary-line-format
114
115 The default value changed to "%U%R%z%I%(%[%4L: %-23,23f%]%) %s\n".
116 Moreover gnus-extra-headers, nnmail-extra-headers and
117 gnus-ignored-from-addresses changed their default so that the users
118 name will be replaced by the recipient's name or the group name
119 posting to for NNTP groups.
120
121 ** deuglify.el (gnus-article-outlook-deuglify-article)
122
123 A new file from Raymond Scholz <rscholz@zonix.de> for deuglifying
124 broken Outlook (Express) articles.
125
126 ** (require 'gnus-load)
127
128 If you use a stand-alone Gnus distribution, you'd better add (require
129 'gnus-load) into your ~/.emacs after adding the Gnus lisp directory
130 into load-path.
131
132 File gnus-load.el contains autoload commands, functions and variables,
133 some of which may not be included in distributions of Emacsen.
134
135 ** gnus-slave-unplugged
136
137 A new command which starts gnus offline in slave mode.
138
139 ** message-insinuate-rmail
140
141 Adding (message-insinuate-rmail) and (setq mail-user-agent
142 'gnus-user-agent) in .emacs convinces RMAIL to compose, reply and
143 forward messages in message-mode, where you can enjoy the power of
144 MML.
145
146 ** message-minibuffer-local-map
147
148 The line below enables BBDB in resending a message:
149
150 (define-key message-minibuffer-local-map [(tab)] 'bbdb-complete-name)
151
152 ** Externalize attachments.
153
154 If gnus-gcc-externalize-attachments (or
155 message-fcc-externalize-attachments) is non-nil, attach local files as
156 external parts.
157
158 Command gnus-mime-save-part-and-strip (bound to \C-o on MIME buttons)
159 saves a part and replaces the part with an external one. It works only
160 on back ends that support editing.
161
162 ** gnus-default-charset
163
164 The default value is determined from the current-language-environment
165 variable, instead of 'iso-8859-1. Also the ".*" item in
166 gnus-group-charset-alist is removed.
167
168 ** gnus-posting-styles
169
170 Add a new format of match like
171
172         ((header "to" "larsi.*org")
173          (Organization "Somewhere, Inc."))
174
175 The old format like the lines below is obsolete, but still accepted.
176
177         (header "to" "larsi.*org"
178          (Organization "Somewhere, Inc."))
179
180 ** message-ignored-news-headers and message-ignored-mail-headers
181
182 X-Draft-From and X-Gnus-Agent-Meta-Information have been added into
183 these two variables. If you customized those, perhaps you need add
184 those two headers too.
185
186 ** Gnus reads the NOV and articles in the Agent if plugged.
187
188 If one reads an article while plugged, and the article already exists
189 in the Agent, it won't get downloaded once more.  (setq
190 gnus-agent-cache nil) reverts to the old behavior.
191
192 ** Gnus supports the "format=flowed" (RFC 2646) parameter.
193
194 On composing messages, it is enabled by `use-hard-newlines'.  Decoding
195 format=flowed was present but not documented in earlier versions.
196
197 ** Gnus supports the generation of RFC 2298 Disposition Notification requests.
198
199 This is invoked with the C-c M-n key binding from message mode.
200
201 ** Gnus supports Maildir groups.
202
203 Gnus includes a new backend nnmaildir.el.
204
205 ** Printing capabilities are enhanced.
206
207 Gnus supports Muttprint natively with O P from the Summary and Article
208 buffers.  Also, each individual MIME part can be printed using p on
209 the MIME button.
210
211 ** Message supports the Importance: (RFC 2156) header.
212
213 In the message buffer, C-c C-f C-i or C-u cycles through the valid values.
214
215 ** Gnus supports Cancel Locks in News.
216
217 This means a header "Cancel-Lock" is inserted in news posting. It is
218 used to determine if you wrote a article or not (for
219 cancelling/superseding).  The behaviour can be changed by customizing
220 `message-insert-canlock'.
221
222 ** Gnus supports server-side mail filtering using Sieve.
223
224 Sieve rules can be added as Group Parameters for groups, and the
225 complete Sieve script is generated using `D g' from the Group buffer,
226 and then uploaded to the server using `C-c C-l' in the generated Sieve
227 buffer.  Search the online Gnus manual for "sieve", and see the new
228 Sieve manual, for more information.
229
230 ** Extended format specs.
231
232 Format spec "%&user-date;" is added into
233 gnus-summary-line-format-alist.  Also, user defined extended format
234 specs are supported.  The extended format specs look like "%u&foo;",
235 which invokes function gnus-user-format-function-foo.  Because "&" is
236 used as the escape character, old user defined format "%u&" is no
237 longer supported.
238
239 ** `/ *' (gnus-summary-limit-include-cached) is rewritten.
240
241 It was aliased to `Y c' (gnus-summary-insert-cached-articles). The new
242 function filters out other articles.
243
244 ** Group names are treated as UTF-8 by default.
245
246 This is supposedly what USEFOR wants to migrate to.  See
247 `gnus-group-name-charset-group-alist' and
248 `gnus-group-name-charset-method-alist' for customization.
249
250 ** The nnml and nnfolder backends store marks for each groups.
251
252 This makes it possible to take backup of nnml/nnfolder servers/groups
253 separately of .newsrc.eld, while preserving marks.  It also makes it
254 possible to share articles and marks between users (without sharing
255 the .newsrc.eld file) within e.g. a department.  It works by storing
256 the marks stored in .newsrc.eld in a per-group file ".marks" (for
257 nnml) and "groupname.mrk" (for nnfolder, named "groupname").  If the
258 nnml/nnfolder is moved to another machine, Gnus will automatically use
259 the .marks or .mrk file instead of the information in .newsrc.eld.
260 The new server variables `nnml-marks-is-evil' and
261 `nnfolder-marks-is-evil' can be used to disable this feature.
262
263 ** The menu bar item (in Group and Summary buffer) named "Misc" has
264 been renamed to "Gnus".
265
266 ** The menu bar item (in Message mode) named "MML" has been renamed to
267 "Attachments".
268
269 ** gnus-group-charset-alist and gnus-group-ignored-charsets-alist.
270
271 The regexps in these variables are compared with full group names
272 instead of real group names in 5.8.  Users who customize these
273 variables should change those regexps accordingly. For example:
274
275    ("^han\\>" euc-kr) -> ("\\(^\\|:\\)han\\>" euc-kr)
276
277 ** Gnus supports PGP (RFC 1991/2440), PGP/MIME (RFC 2015/3156) and
278 ** S/MIME (RFC 2630-2633).
279 It needs an external S/MIME and OpenPGP implementation, but no additional
280 lisp libraries.
281
282 ** Gnus inlines external parts (message/external).
283
284 ** MML (Mime compose) prefix changed from `M-m' to `C-c C-m'.
285
286 This change was made to avoid conflict with the standard binding of
287 `back-to-indentation', which is also useful in message mode.
288
289 ** Bug fixes.
290
291 \f
292 * Changes in Pterodactyl Gnus (5.8/5.9)
293
294 The Gnus NEWS entries are short, but they reflect sweeping changes in
295 four areas: Article display treatment, MIME treatment,
296 internationalization and mail-fetching.
297
298 ** The mail-fetching functions have changed.  See the manual for the
299 many details.  In particular, all procmail fetching variables are gone.
300
301 If you used procmail like in
302
303 (setq nnmail-use-procmail t)
304 (setq nnmail-spool-file 'procmail)
305 (setq nnmail-procmail-directory "~/mail/incoming/")
306 (setq nnmail-procmail-suffix "\\.in")
307
308 this now has changed to 
309
310 (setq mail-sources
311       '((directory :path "~/mail/incoming/"
312                    :suffix ".in")))
313
314 More information is available in the info doc at Select Methods ->
315 Getting Mail -> Mail Sources
316
317 ** Gnus is now a MIME-capable reader.  This affects many parts of
318 Gnus, and adds a slew of new commands.  See the manual for details.
319
320 ** Gnus has also been multilingualized.  This also affects too
321 many parts of Gnus to summarize here, and adds many new variables.
322
323 ** gnus-auto-select-first can now be a function to be
324 called to position point.
325
326 ** The user can now decide which extra headers should be included in
327 summary buffers and NOV files.
328
329 ** `gnus-article-display-hook' has been removed.  Instead, a number
330 of variables starting with `gnus-treat-' have been added.
331
332 ** The Gnus posting styles have been redone again and now works in a
333 subtly different manner.
334
335 ** New web-based backends have been added: nnslashdot, nnwarchive
336 and nnultimate.  nnweb has been revamped, again, to keep up with
337 ever-changing layouts.
338
339 ** Gnus can now read IMAP mail via nnimap.
340
341 \f
342 * For older news, see Gnus info node "New Features".
343
344 ----------------------------------------------------------------------
345 Copyright information:
346
347 Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
348
349    Permission is granted to anyone to make or distribute verbatim copies
350    of this document as received, in any medium, provided that the
351    copyright notice and this permission notice are preserved,
352    thus giving the recipient permission to redistribute in turn.
353
354    Permission is granted to distribute modified versions
355    of this document, or of portions of it,
356    under the above conditions, provided also that they
357    carry prominent notices stating who last changed them.
358 \f
359 Local variables:
360 mode: outline
361 paragraph-separate: "[  \f]*$"
362 end: