* nntp.el (nntp-wait-for): Return the success code.
[gnus] / lisp / nntp.el
1 ;;; nntp.el --- nntp access for Gnus
2 ;; Copyright (C) 1987, 1988, 1989, 1990, 1992, 1993, 1994, 1995, 1996,
3 ;;        1997, 1998, 2000
4 ;;        Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
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
23 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'nnheader)
30 (require 'nnoo)
31 (require 'gnus-util)
32
33 (nnoo-declare nntp)
34
35 (eval-when-compile (require 'cl))
36
37 (defvoo nntp-address nil
38   "Address of the physical nntp server.")
39
40 (defvoo nntp-port-number "nntp"
41   "Port number on the physical nntp server.")
42
43 (defvoo nntp-server-opened-hook '(nntp-send-mode-reader)
44   "*Hook used for sending commands to the server at startup.
45 The default value is `nntp-send-mode-reader', which makes an innd
46 server spawn an nnrpd server.")
47
48 (defvoo nntp-authinfo-function 'nntp-send-authinfo
49   "Function used to send AUTHINFO to the server.
50 It is called with no parameters.")
51
52 (defvoo nntp-server-action-alist
53     '(("nntpd 1\\.5\\.11t"
54        (remove-hook 'nntp-server-opened-hook 'nntp-send-mode-reader))
55       ("NNRP server Netscape"
56        (setq nntp-server-list-active-group nil)))
57   "Alist of regexps to match on server types and actions to be taken.
58 For instance, if you want Gnus to beep every time you connect
59 to innd, you could say something like:
60
61 \(setq nntp-server-action-alist
62        '((\"innd\" (ding))))
63
64 You probably don't want to do that, though.")
65
66 (defvoo nntp-open-connection-function 'nntp-open-network-stream
67   "*Function used for connecting to a remote system.
68 It will be called with the buffer to output in.
69
70 Two pre-made functions are `nntp-open-network-stream', which is the
71 default, and simply connects to some port or other on the remote
72 system (see nntp-port-number).  The other are `nntp-open-rlogin',
73 which does an rlogin on the remote system, and then does a telnet to
74 the NNTP server available there (see nntp-rlogin-parameters) and
75 `nntp-open-telnet' which telnets to a remote system, logs in and does
76 the same.")
77
78 (defvoo nntp-rlogin-program "rsh"
79   "*Program used to log in on remote machines.
80 The default is \"rsh\", but \"ssh\" is a popular alternative.")
81
82 (defvoo nntp-rlogin-parameters '("telnet" "-8" "${NNTPSERVER:=news}" "nntp")
83   "*Parameters to `nntp-open-rlogin'.
84 That function may be used as `nntp-open-connection-function'.  In that
85 case, this list will be used as the parameter list given to rsh.")
86
87 (defvoo nntp-rlogin-user-name nil
88   "*User name on remote system when using the rlogin connect method.")
89
90 (defvoo nntp-telnet-parameters
91     '("exec" "telnet" "-8" "${NNTPSERVER:=news}" "nntp")
92   "*Parameters to `nntp-open-telnet'.
93 That function may be used as `nntp-open-connection-function'.  In that
94 case, this list will be executed as a command after logging in
95 via telnet.")
96
97 (defvoo nntp-telnet-user-name nil
98   "User name to log in via telnet with.")
99
100 (defvoo nntp-telnet-passwd nil
101   "Password to use to log in via telnet with.")
102
103 (defvoo nntp-open-telnet-envuser nil
104   "*If non-nil, telnet session (client and server both) will support the ENVIRON option and not prompt for login name.")
105
106 (defvoo nntp-telnet-shell-prompt "bash\\|\$ *\r?$\\|> *\r?"
107   "*Regular expression to match the shell prompt on the remote machine.")
108
109 (defvoo nntp-telnet-command "telnet"
110   "Command used to start telnet.")
111
112 (defvoo nntp-telnet-switches '("-8")
113   "Switches given to the telnet command.")
114
115 (defvoo nntp-end-of-line "\r\n"
116   "String to use on the end of lines when talking to the NNTP server.
117 This is \"\\r\\n\" by default, but should be \"\\n\" when
118 using rlogin or telnet to communicate with the server.")
119
120 (defvoo nntp-large-newsgroup 50
121   "*The number of the articles which indicates a large newsgroup.
122 If the number of the articles is greater than the value, verbose
123 messages will be shown to indicate the current status.")
124
125 (defvoo nntp-maximum-request 400
126   "*The maximum number of the requests sent to the NNTP server at one time.
127 If Emacs hangs up while retrieving headers, set the variable to a
128 lower value.")
129
130 (defvoo nntp-nov-is-evil nil
131   "*If non-nil, nntp will never attempt to use XOVER when talking to the server.")
132
133 (defvoo nntp-xover-commands '("XOVER" "XOVERVIEW")
134   "*List of strings that are used as commands to fetch NOV lines from a server.
135 The strings are tried in turn until a positive response is gotten.  If
136 none of the commands are successful, nntp will just grab headers one
137 by one.")
138
139 (defvoo nntp-nov-gap 5
140   "*Maximum allowed gap between two articles.
141 If the gap between two consecutive articles is bigger than this
142 variable, split the XOVER request into two requests.")
143
144 (defvoo nntp-prepare-server-hook nil
145   "*Hook run before a server is opened.
146 If can be used to set up a server remotely, for instance.  Say you
147 have an account at the machine \"other.machine\".  This machine has
148 access to an NNTP server that you can't access locally.  You could
149 then use this hook to rsh to the remote machine and start a proxy NNTP
150 server there that you can connect to.  See also
151 `nntp-open-connection-function'")
152
153 (defvoo nntp-warn-about-losing-connection t
154   "*If non-nil, beep when a server closes connection.")
155
156 (defvoo nntp-coding-system-for-read 'binary
157   "*Coding system to read from NNTP.")
158
159 (defvoo nntp-coding-system-for-write 'binary
160   "*Coding system to write to NNTP.")
161
162 (defcustom nntp-authinfo-file "~/.authinfo"
163   ".netrc-like file that holds nntp authinfo passwords."
164   :type
165   '(choice file
166            (repeat :tag "Entries"
167                    :menu-tag "Inline"
168                    (list :format "%v"
169                          :value ("" ("login" . "") ("password" . ""))
170                          (string :tag "Host")
171                          (checklist :inline t
172                                     (cons :format "%v"
173                                           (const :format "" "login")
174                                           (string :format "Login: %v"))
175                                     (cons :format "%v"
176                                           (const :format "" "password")
177                                           (string :format "Password: %v")))))))
178
179 \f
180
181 (defvoo nntp-connection-timeout nil
182   "*Number of seconds to wait before an nntp connection times out.
183 If this variable is nil, which is the default, no timers are set.
184 NOTE: This variable is never seen to work in Emacs 20 and XEmacs 21.")
185
186 ;;; Internal variables.
187
188 (defvar nntp-record-commands nil
189   "*If non-nil, nntp will record all commands in the \"*nntp-log*\" buffer.")
190
191 (defvar nntp-have-messaged nil)
192
193 (defvar nntp-process-wait-for nil)
194 (defvar nntp-process-to-buffer nil)
195 (defvar nntp-process-callback nil)
196 (defvar nntp-process-decode nil)
197 (defvar nntp-process-start-point nil)
198 (defvar nntp-inside-change-function nil)
199 (defvoo nntp-last-command-time nil)
200 (defvoo nntp-last-command nil)
201 (defvoo nntp-authinfo-password nil)
202 (defvoo nntp-authinfo-user nil)
203
204 (defvar nntp-connection-list nil)
205
206 (defvoo nntp-server-type nil)
207 (defvoo nntp-connection-alist nil)
208 (defvoo nntp-status-string "")
209 (defconst nntp-version "nntp 5.0")
210 (defvoo nntp-inhibit-erase nil)
211 (defvoo nntp-inhibit-output nil)
212
213 (defvoo nntp-server-xover 'try)
214 (defvoo nntp-server-list-active-group 'try)
215
216 (defvar nntp-async-needs-kluge
217   (string-match "^GNU Emacs 20\\.3\\." (emacs-version))
218   "*When non-nil, nntp will poll asynchronous connections
219 once a second.  By default, this is turned on only for Emacs
220 20.3, which has a bug that breaks nntp's normal method of
221 noticing asynchronous data.")
222
223 (defvar nntp-async-timer nil)
224 (defvar nntp-async-process-list nil)
225
226 (eval-and-compile
227   (autoload 'mail-source-read-passwd "mail-source")
228   (autoload 'open-ssl-stream "ssl"))
229
230 \f
231
232 ;;; Internal functions.
233
234 (defsubst nntp-send-string (process string)
235   "Send STRING to PROCESS."
236   ;; We need to store the time to provide timeouts, and
237   ;; to store the command so the we can replay the command
238   ;; if the server gives us an AUTHINFO challenge.
239   (setq nntp-last-command-time (current-time)
240         nntp-last-command string)
241   (when nntp-record-commands
242     (nntp-record-command string))
243   (process-send-string process (concat string nntp-end-of-line)))
244
245 (defun nntp-record-command (string)
246   "Record the command STRING."
247   (save-excursion
248     (set-buffer (get-buffer-create "*nntp-log*"))
249     (goto-char (point-max))
250     (let ((time (current-time)))
251       (insert (format-time-string "%Y%m%dT%H%M%S" time)
252               "." (format "%03d" (/ (nth 2 time) 1000))
253               " " nntp-address " " string "\n"))))
254
255 (defsubst nntp-wait-for (process wait-for buffer &optional decode discard)
256   "Wait for WAIT-FOR to arrive from PROCESS."
257   (save-excursion
258     (set-buffer (process-buffer process))
259     (goto-char (point-min))
260     (while (and (or (not (memq (char-after (point)) '(?2 ?3 ?4 ?5)))
261                     (looking-at "480"))
262                 (memq (process-status process) '(open run)))
263       (when (looking-at "480")
264         (nntp-handle-authinfo process))
265       (nntp-accept-process-output process)
266       (goto-char (point-min)))
267     (prog1
268         (cond
269          ((looking-at "[45]")
270           (progn
271             (nntp-snarf-error-message)
272             nil))
273          ((not (memq (process-status process) '(open run)))
274           (nnheader-report 'nntp "Server closed connection"))
275          (t
276           (goto-char (point-max))
277           (let ((limit (point-min)))
278             (while (not (re-search-backward wait-for limit t))
279               (nntp-accept-process-output process)
280               ;; We assume that whatever we wait for is less than 1000
281               ;; characters long.
282               (setq limit (max (- (point-max) 1000) (point-min)))
283               (goto-char (point-max))))
284           (nntp-decode-text (not decode))
285           (unless discard
286             (save-excursion
287               (set-buffer buffer)
288               (goto-char (point-max))
289               (insert-buffer-substring (process-buffer process))
290               ;; Nix out "nntp reading...." message.
291               (when nntp-have-messaged
292                 (setq nntp-have-messaged nil)
293                 (nnheader-message 5 ""))))
294           t))
295       (unless discard
296         (erase-buffer)))))
297
298 (defun nntp-kill-buffer (buffer)
299   (when (buffer-name buffer)
300     (kill-buffer buffer)
301     (nnheader-init-server-buffer)))
302
303 (defsubst nntp-find-connection (buffer)
304   "Find the connection delivering to BUFFER."
305   (let ((alist nntp-connection-alist)
306         (buffer (if (stringp buffer) (get-buffer buffer) buffer))
307         process entry)
308     (while (and alist (setq entry (pop alist)))
309       (when (eq buffer (cadr entry))
310         (setq process (car entry)
311               alist nil)))
312     (when process
313       (if (memq (process-status process) '(open run))
314           process
315         (nntp-kill-buffer (process-buffer process))
316         (setq nntp-connection-alist (delq entry nntp-connection-alist))
317         nil))))
318
319 (defsubst nntp-find-connection-entry (buffer)
320   "Return the entry for the connection to BUFFER."
321   (assq (nntp-find-connection buffer) nntp-connection-alist))
322
323 (defun nntp-find-connection-buffer (buffer)
324   "Return the process connection buffer tied to BUFFER."
325   (let ((process (nntp-find-connection buffer)))
326     (when process
327       (process-buffer process))))
328
329 (defsubst nntp-retrieve-data (command address port buffer
330                                       &optional wait-for callback decode)
331   "Use COMMAND to retrieve data into BUFFER from PORT on ADDRESS."
332   (let ((process (or (nntp-find-connection buffer)
333                      (nntp-open-connection buffer))))
334     (if (not process)
335         (nnheader-report 'nntp "Couldn't open connection to %s" address)
336       (unless (or nntp-inhibit-erase nnheader-callback-function)
337         (save-excursion
338           (set-buffer (process-buffer process))
339           (erase-buffer)))
340       (condition-case err
341           (progn
342             (when command
343               (nntp-send-string process command))
344             (cond
345              ((eq callback 'ignore)
346               t)
347              ((and callback wait-for)
348               (nntp-async-wait process wait-for buffer decode callback)
349               t)
350              (wait-for
351               (nntp-wait-for process wait-for buffer decode))
352              (t t)))
353         (error 
354          (nnheader-report 'nntp "Couldn't open connection to %s: %s" 
355                           address err))
356         (quit
357          (message "Quit retrieving data from nntp")
358          (signal 'quit nil)
359          nil)))))
360
361 (defsubst nntp-send-command (wait-for &rest strings)
362   "Send STRINGS to server and wait until WAIT-FOR returns."
363   (when (and (not nnheader-callback-function)
364              (not nntp-inhibit-output))
365     (save-excursion
366       (set-buffer nntp-server-buffer)
367       (erase-buffer)))
368   (nntp-retrieve-data
369    (mapconcat 'identity strings " ")
370    nntp-address nntp-port-number nntp-server-buffer
371    wait-for nnheader-callback-function))
372
373 (defun nntp-send-command-nodelete (wait-for &rest strings)
374   "Send STRINGS to server and wait until WAIT-FOR returns."
375   (nntp-retrieve-data
376    (mapconcat 'identity strings " ")
377    nntp-address nntp-port-number nntp-server-buffer
378    wait-for nnheader-callback-function))
379
380 (defun nntp-send-command-and-decode (wait-for &rest strings)
381   "Send STRINGS to server and wait until WAIT-FOR returns."
382   (when (and (not nnheader-callback-function)
383              (not nntp-inhibit-output))
384     (save-excursion
385       (set-buffer nntp-server-buffer)
386       (erase-buffer)))
387   (nntp-retrieve-data
388    (mapconcat 'identity strings " ")
389    nntp-address nntp-port-number nntp-server-buffer
390    wait-for nnheader-callback-function t))
391
392 (defun nntp-send-buffer (wait-for)
393   "Send the current buffer to server and wait until WAIT-FOR returns."
394   (when (and (not nnheader-callback-function)
395              (not nntp-inhibit-output))
396     (save-excursion
397       (set-buffer (nntp-find-connection-buffer nntp-server-buffer))
398       (erase-buffer)))
399   (nntp-encode-text)
400   (process-send-region (nntp-find-connection nntp-server-buffer)
401                        (point-min) (point-max))
402   (nntp-retrieve-data
403    nil nntp-address nntp-port-number nntp-server-buffer
404    wait-for nnheader-callback-function))
405
406 \f
407
408 ;;; Interface functions.
409
410 (nnoo-define-basics nntp)
411
412 (defsubst nntp-next-result-arrived-p ()
413   (cond
414    ;; A result that starts with a 2xx code is terminated by
415    ;; a line with only a "." on it.
416    ((eq (char-after) ?2)
417     (if (re-search-forward "\n\\.\r?\n" nil t)
418         t
419       nil))
420    ;; A result that starts with a 3xx or 4xx code is terminated
421    ;; by a newline.
422    ((looking-at "[34]")
423     (if (search-forward "\n" nil t)
424         t
425       nil))
426    ;; No result here.
427    (t
428     nil)))
429
430 (deffoo nntp-retrieve-headers (articles &optional group server fetch-old)
431   "Retrieve the headers of ARTICLES."
432   (nntp-possibly-change-group group server)
433   (save-excursion
434     (set-buffer (nntp-find-connection-buffer nntp-server-buffer))
435     (erase-buffer)
436     (if (and (not gnus-nov-is-evil)
437              (not nntp-nov-is-evil)
438              (nntp-retrieve-headers-with-xover articles fetch-old))
439         ;; We successfully retrieved the headers via XOVER.
440         'nov
441       ;; XOVER didn't work, so we do it the hard, slow and inefficient
442       ;; way.
443       (let ((number (length articles))
444             (count 0)
445             (received 0)
446             (last-point (point-min))
447             (buf (nntp-find-connection-buffer nntp-server-buffer))
448             (nntp-inhibit-erase t)
449             article)
450         ;; Send HEAD commands.
451         (while (setq article (pop articles))
452           (nntp-send-command
453            nil
454            "HEAD" (if (numberp article)
455                       (int-to-string article)
456                     ;; `articles' is either a list of article numbers
457                     ;; or a list of article IDs.
458                     article))
459           (incf count)
460           ;; Every 400 requests we have to read the stream in
461           ;; order to avoid deadlocks.
462           (when (or (null articles)     ;All requests have been sent.
463                     (zerop (% count nntp-maximum-request)))
464             (nntp-accept-response)
465             (while (progn
466                      (set-buffer buf)
467                      (goto-char last-point)
468                      ;; Count replies.
469                      (while (nntp-next-result-arrived-p)
470                        (setq last-point (point))
471                        (incf received))
472                      (< received count))
473               ;; If number of headers is greater than 100, give
474               ;;  informative messages.
475               (and (numberp nntp-large-newsgroup)
476                    (> number nntp-large-newsgroup)
477                    (zerop (% received 20))
478                    (nnheader-message 6 "NNTP: Receiving headers... %d%%"
479                                      (/ (* received 100) number)))
480               (nntp-accept-response))))
481         (and (numberp nntp-large-newsgroup)
482              (> number nntp-large-newsgroup)
483              (nnheader-message 6 "NNTP: Receiving headers...done"))
484
485         ;; Now all of replies are received.  Fold continuation lines.
486         (nnheader-fold-continuation-lines)
487         ;; Remove all "\r"'s.
488         (nnheader-strip-cr)
489         (copy-to-buffer nntp-server-buffer (point-min) (point-max))
490         'headers))))
491
492 (deffoo nntp-retrieve-groups (groups &optional server)
493   "Retrieve group info on GROUPS."
494   (nntp-possibly-change-group nil server)
495   (when (nntp-find-connection-buffer nntp-server-buffer)
496     (save-excursion
497       ;; Erase nntp-server-buffer before nntp-inhibit-erase.
498       (set-buffer nntp-server-buffer)
499       (erase-buffer)
500       (set-buffer (nntp-find-connection-buffer nntp-server-buffer))
501       ;; The first time this is run, this variable is `try'.  So we
502       ;; try.
503       (when (eq nntp-server-list-active-group 'try)
504         (nntp-try-list-active (car groups)))
505       (erase-buffer)
506       (let ((count 0)
507             (received 0)
508             (last-point (point-min))
509             (nntp-inhibit-erase t)
510             (buf (nntp-find-connection-buffer nntp-server-buffer))
511             (command (if nntp-server-list-active-group "LIST ACTIVE" "GROUP")))
512         (while groups
513           ;; Send the command to the server.
514           (nntp-send-command nil command (pop groups))
515           (incf count)
516           ;; Every 400 requests we have to read the stream in
517           ;; order to avoid deadlocks.
518           (when (or (null groups)       ;All requests have been sent.
519                     (zerop (% count nntp-maximum-request)))
520             (nntp-accept-response)
521             (while (and (gnus-buffer-live-p buf)
522                         (progn
523                           ;; Search `blue moon' in this file for the
524                           ;; reason why set-buffer here.
525                           (set-buffer buf)
526                           (goto-char last-point)
527                           ;; Count replies.
528                           (while (re-search-forward "^[0-9]" nil t)
529                             (incf received))
530                           (setq last-point (point))
531                           (< received count)))
532               (nntp-accept-response))))
533
534         ;; Wait for the reply from the final command.
535         (unless (gnus-buffer-live-p buf)
536           (error 
537            (nnheader-report 'nntp "Connection to %s is closed." server)))
538         (set-buffer buf)
539         (goto-char (point-max))
540         (re-search-backward "^[0-9]" nil t)
541         (when (looking-at "^[23]")
542           (while (and (gnus-buffer-live-p buf)
543                       (progn
544                         (set-buffer buf)
545                         (goto-char (point-max))
546                         (if (not nntp-server-list-active-group)
547                             (not (re-search-backward "\r?\n" (- (point) 3) t))
548                           (not (re-search-backward "^\\.\r?\n" 
549                                                    (- (point) 4) t)))))
550                       (nntp-accept-response)))
551
552         ;; Now all replies are received.  We remove CRs.
553         (unless (gnus-buffer-live-p buf)
554           (error 
555            (nnheader-report 'nntp "Connection to %s is closed." server)))
556         (set-buffer buf)
557         (goto-char (point-min))
558         (while (search-forward "\r" nil t)
559           (replace-match "" t t))
560
561         (if (not nntp-server-list-active-group)
562             (progn
563               (copy-to-buffer nntp-server-buffer (point-min) (point-max))
564               'group)
565           ;; We have read active entries, so we just delete the
566           ;; superfluous gunk.
567           (goto-char (point-min))
568           (while (re-search-forward "^[.2-5]" nil t)
569             (delete-region (match-beginning 0)
570                            (progn (forward-line 1) (point))))
571           (copy-to-buffer nntp-server-buffer (point-min) (point-max))
572           'active)))))
573
574 (deffoo nntp-retrieve-articles (articles &optional group server)
575   (nntp-possibly-change-group group server)
576   (save-excursion
577     (let ((number (length articles))
578           (count 0)
579           (received 0)
580           (last-point (point-min))
581           (buf (nntp-find-connection-buffer nntp-server-buffer))
582           (nntp-inhibit-erase t)
583           (map (apply 'vector articles))
584           (point 1)
585           article)
586       (set-buffer buf)
587       (erase-buffer)
588       ;; Send ARTICLE command.
589       (while (setq article (pop articles))
590         (nntp-send-command
591          nil
592          "ARTICLE" (if (numberp article)
593                        (int-to-string article)
594                      ;; `articles' is either a list of article numbers
595                      ;; or a list of article IDs.
596                      article))
597         (incf count)
598         ;; Every 400 requests we have to read the stream in
599         ;; order to avoid deadlocks.
600         (when (or (null articles)       ;All requests have been sent.
601                   (zerop (% count nntp-maximum-request)))
602           (nntp-accept-response)
603           (while (progn
604                    (set-buffer buf)
605                    (goto-char last-point)
606                    ;; Count replies.
607                    (while (nntp-next-result-arrived-p)
608                      (aset map received (cons (aref map received) (point)))
609                      (setq last-point (point))
610                      (incf received))
611                    (< received count))
612             ;; If number of headers is greater than 100, give
613             ;;  informative messages.
614             (and (numberp nntp-large-newsgroup)
615                  (> number nntp-large-newsgroup)
616                  (zerop (% received 20))
617                  (nnheader-message 6 "NNTP: Receiving articles... %d%%"
618                                    (/ (* received 100) number)))
619             (nntp-accept-response))))
620       (and (numberp nntp-large-newsgroup)
621            (> number nntp-large-newsgroup)
622            (nnheader-message 6 "NNTP: Receiving articles...done"))
623
624       ;; Now we have all the responses.  We go through the results,
625       ;; wash it and copy it over to the server buffer.
626       (set-buffer nntp-server-buffer)
627       (erase-buffer)
628       (setq last-point (point-min))
629       (mapcar
630        (lambda (entry)
631          (narrow-to-region
632           (setq point (goto-char (point-max)))
633           (progn
634             (insert-buffer-substring buf last-point (cdr entry))
635             (point-max)))
636          (setq last-point (cdr entry))
637          (nntp-decode-text)
638          (widen)
639          (cons (car entry) point))
640        map))))
641
642 (defun nntp-try-list-active (group)
643   (nntp-list-active-group group)
644   (save-excursion
645     (set-buffer nntp-server-buffer)
646     (goto-char (point-min))
647     (cond ((or (eobp)
648                (looking-at "5[0-9]+"))
649            (setq nntp-server-list-active-group nil))
650           (t
651            (setq nntp-server-list-active-group t)))))
652
653 (deffoo nntp-list-active-group (group &optional server)
654   "Return the active info on GROUP (which can be a regexp)."
655   (nntp-possibly-change-group nil server)
656   (nntp-send-command "^\\.*\r?\n" "LIST ACTIVE" group))
657
658 (deffoo nntp-request-group-articles (group &optional server)
659   "Return the list of existing articles in GROUP."
660   (nntp-possibly-change-group nil server)
661   (nntp-send-command "^\\.*\r?\n" "LISTGROUP" group))
662
663 (deffoo nntp-request-article (article &optional group server buffer command)
664   (nntp-possibly-change-group group server)
665   (when (nntp-send-command-and-decode
666          "\r?\n\\.\r?\n" "ARTICLE"
667          (if (numberp article) (int-to-string article) article))
668     (if (and buffer
669              (not (equal buffer nntp-server-buffer)))
670         (save-excursion
671           (set-buffer nntp-server-buffer)
672           (copy-to-buffer buffer (point-min) (point-max))
673           (nntp-find-group-and-number))
674       (nntp-find-group-and-number))))
675
676 (deffoo nntp-request-head (article &optional group server)
677   (nntp-possibly-change-group group server)
678   (when (nntp-send-command
679          "\r?\n\\.\r?\n" "HEAD"
680          (if (numberp article) (int-to-string article) article))
681     (prog1
682         (nntp-find-group-and-number)
683       (nntp-decode-text))))
684
685 (deffoo nntp-request-body (article &optional group server)
686   (nntp-possibly-change-group group server)
687   (nntp-send-command-and-decode
688    "\r?\n\\.\r?\n" "BODY"
689    (if (numberp article) (int-to-string article) article)))
690
691 (deffoo nntp-request-group (group &optional server dont-check)
692   (nntp-possibly-change-group nil server)
693   (when (nntp-send-command "^[245].*\n" "GROUP" group)
694     (let ((entry (nntp-find-connection-entry nntp-server-buffer)))
695       (setcar (cddr e