2002-01-03 ShengHuo ZHU <zsh@cs.rochester.edu>
[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, 2001
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 as argument.
69
70 Currently, five such functions are provided (please refer to their
71 respective doc string for more information), three of them establishing
72 direct connections to the nntp server, and two of them using an indirect
73 host.
74
75 Direct connections:
76 - `nntp-open-network-stream' (the default),
77 - `nntp-open-ssl-stream',
78 - `nntp-open-telnet-stream'.
79
80 Indirect connections:
81 - `nntp-open-via-rlogin-and-telnet',
82 - `nntp-open-via-telnet-and-telnet'.")
83
84 (defvoo nntp-pre-command nil
85   "*Pre-command to use with the various nntp-open-via-* methods.
86 This is where you would put \"runsocks\" or stuff like that.")
87
88 (defvoo nntp-telnet-command "telnet"
89   "*Telnet command used to connect to the nntp server.
90 This command is used by the various nntp-open-via-* methods.")
91
92 (defvoo nntp-telnet-switches '("-8")
93   "*Switches given to the telnet command `nntp-telnet-command'.")
94
95 (defvoo nntp-end-of-line "\r\n"
96   "*String to use on the end of lines when talking to the NNTP server.
97 This is \"\\r\\n\" by default, but should be \"\\n\" when
98 using and indirect connection method (nntp-open-via-*).")
99
100 (defvoo nntp-via-rlogin-command "rsh"
101   "*Rlogin command used to connect to an intermediate host.
102 This command is used by the `nntp-open-via-rlogin-and-telnet' method.
103 The default is \"rsh\", but \"ssh\" is a popular alternative.")
104
105 (defvoo nntp-via-telnet-command "telnet"
106   "*Telnet command used to connect to an intermediate host.
107 This command is used by the `nntp-open-via-telnet-and-telnet' method.")
108
109 (defvoo nntp-via-telnet-switches '("-8")
110   "*Switches given to the telnet command `nntp-via-telnet-command'.")
111
112 (defvoo nntp-via-user-name nil
113   "*User name to log in on an intermediate host with.
114 This variable is used by the `nntp-open-via-telnet-and-telnet' method.")
115
116 (defvoo nntp-via-user-password nil
117   "*Password to use to log in on an intermediate host with.
118 This variable is used by the `nntp-open-via-telnet-and-telnet' method.")
119
120 (defvoo nntp-via-address nil
121   "*Address of an intermediate host to connect to.
122 This variable is used by the `nntp-open-via-rlogin-and-telnet' and
123 `nntp-open-via-telnet-and-telnet' methods.")
124
125 (defvoo nntp-via-envuser nil
126   "*Whether both telnet client and server support the ENVIRON option.
127 If non-nil, there will be no prompt for a login name.")
128
129 (defvoo nntp-via-shell-prompt "bash\\|\$ *\r?$\\|> *\r?"
130   "*Regular expression to match the shell prompt on an intermediate host.
131 This variable is used by the `nntp-open-via-telnet-and-telnet' method.")
132
133 (defvoo nntp-large-newsgroup 50
134   "*The number of the articles which indicates a large newsgroup.
135 If the number of the articles is greater than the value, verbose
136 messages will be shown to indicate the current status.")
137
138 (defvoo nntp-maximum-request 400
139   "*The maximum number of the requests sent to the NNTP server at one time.
140 If Emacs hangs up while retrieving headers, set the variable to a
141 lower value.")
142
143 (defvoo nntp-nov-is-evil nil
144   "*If non-nil, nntp will never attempt to use XOVER when talking to the server.")
145
146 (defvoo nntp-xover-commands '("XOVER" "XOVERVIEW")
147   "*List of strings that are used as commands to fetch NOV lines from a server.
148 The strings are tried in turn until a positive response is gotten.  If
149 none of the commands are successful, nntp will just grab headers one
150 by one.")
151
152 (defvoo nntp-nov-gap 5
153   "*Maximum allowed gap between two articles.
154 If the gap between two consecutive articles is bigger than this
155 variable, split the XOVER request into two requests.")
156
157 (defvoo nntp-prepare-server-hook nil
158   "*Hook run before a server is opened.
159 If can be used to set up a server remotely, for instance.  Say you
160 have an account at the machine \"other.machine\".  This machine has
161 access to an NNTP server that you can't access locally.  You could
162 then use this hook to rsh to the remote machine and start a proxy NNTP
163 server there that you can connect to.  See also
164 `nntp-open-connection-function'")
165
166 (defvoo nntp-warn-about-losing-connection t
167   "*If non-nil, beep when a server closes connection.")
168
169 (defvoo nntp-coding-system-for-read 'binary
170   "*Coding system to read from NNTP.")
171
172 (defvoo nntp-coding-system-for-write 'binary
173   "*Coding system to write to NNTP.")
174
175 (defcustom nntp-authinfo-file "~/.authinfo"
176   ".netrc-like file that holds nntp authinfo passwords."
177   :type
178   '(choice file
179            (repeat :tag "Entries"
180                    :menu-tag "Inline"
181                    (list :format "%v"
182                          :value ("" ("login" . "") ("password" . ""))
183                          (string :tag "Host")
184                          (checklist :inline t
185                                     (cons :format "%v"
186                                           (const :format "" "login")
187                                           (string :format "Login: %v"))
188                                     (cons :format "%v"
189                                           (const :format "" "password")
190                                           (string :format "Password: %v")))))))
191
192 \f
193
194 (defvoo nntp-connection-timeout nil
195   "*Number of seconds to wait before an nntp connection times out.
196 If this variable is nil, which is the default, no timers are set.
197 NOTE: This variable is never seen to work in Emacs 20 and XEmacs 21.")
198
199 (defvoo nntp-prepare-post-hook nil
200   "*Hook run just before posting an article.  It is supposed to be used
201 to insert Cancel-Lock headers.")
202
203 ;;; Internal variables.
204
205 (defvar nntp-record-commands nil
206   "*If non-nil, nntp will record all commands in the \"*nntp-log*\" buffer.")
207
208 (defvar nntp-have-messaged nil)
209
210 (defvar nntp-process-wait-for nil)
211 (defvar nntp-process-to-buffer nil)
212 (defvar nntp-process-callback nil)
213 (defvar nntp-process-decode nil)
214 (defvar nntp-process-start-point nil)
215 (defvar nntp-inside-change-function nil)
216 (defvoo nntp-last-command-time nil)
217 (defvoo nntp-last-command nil)
218 (defvoo nntp-authinfo-password nil)
219 (defvoo nntp-authinfo-user nil)
220
221 (defvar nntp-connection-list nil)
222
223 (defvoo nntp-server-type nil)
224 (defvoo nntp-connection-alist nil)
225 (defvoo nntp-status-string "")
226 (defconst nntp-version "nntp 5.0")
227 (defvoo nntp-inhibit-erase nil)
228 (defvoo nntp-inhibit-output nil)
229
230 (defvoo nntp-server-xover 'try)
231 (defvoo nntp-server-list-active-group 'try)
232
233 (defvar nntp-async-needs-kluge
234   (string-match "^GNU Emacs 20\\.3\\." (emacs-version))
235   "*When non-nil, nntp will poll asynchronous connections
236 once a second.  By default, this is turned on only for Emacs
237 20.3, which has a bug that breaks nntp's normal method of
238 noticing asynchronous data.")
239
240 (defvar nntp-async-timer nil)
241 (defvar nntp-async-process-list nil)
242
243 (eval-and-compile
244   (autoload 'mail-source-read-passwd "mail-source")
245   (autoload 'open-ssl-stream "ssl"))
246
247 \f
248
249 ;;; Internal functions.
250
251 (defsubst nntp-send-string (process string)
252   "Send STRING to PROCESS."
253   ;; We need to store the time to provide timeouts, and
254   ;; to store the command so the we can replay the command
255   ;; if the server gives us an AUTHINFO challenge.
256   (setq nntp-last-command-time (current-time)
257         nntp-last-command string)
258   (when nntp-record-commands
259     (nntp-record-command string))
260   (process-send-string process (concat string nntp-end-of-line)))
261
262 (defun nntp-record-command (string)
263   "Record the command STRING."
264   (save-excursion
265     (set-buffer (get-buffer-create "*nntp-log*"))
266     (goto-char (point-max))
267     (let ((time (current-time)))
268       (insert (format-time-string "%Y%m%dT%H%M%S" time)
269               "." (format "%03d" (/ (nth 2 time) 1000))
270               " " nntp-address " " string "\n"))))
271
272 (defsubst nntp-wait-for (process wait-for buffer &optional decode discard)
273   "Wait for WAIT-FOR to arrive from PROCESS."
274   (save-excursion
275     (set-buffer (process-buffer process))
276     (goto-char (point-min))
277     (while (and (or (not (memq (char-after (point)) '(?2 ?3 ?4 ?5)))
278                     (looking-at "480"))
279                 (memq (process-status process) '(open run)))
280       (when (looking-at "480")
281         (nntp-handle-authinfo process))
282       (when (looking-at "^.*\n")
283         (delete-region (point) (progn (forward-line 1) (point))))
284       (nntp-accept-process-output process)
285       (goto-char (point-min)))
286     (prog1
287         (cond
288          ((looking-at "[45]")
289           (progn
290             (nntp-snarf-error-message)
291             nil))
292          ((not (memq (process-status process) '(open run)))
293           (nnheader-report 'nntp "Server closed connection"))
294          (t
295           (goto-char (point-max))
296           (let ((limit (point-min))
297                 response)
298             (while (not (re-search-backward wait-for limit t))
299               (nntp-accept-process-output process)
300               ;; We assume that whatever we wait for is less than 1000
301               ;; characters long.
302               (setq limit (max (- (point-max) 1000) (point-min)))
303               (goto-char (point-max)))
304             (setq response (match-string 0))
305             (with-current-buffer nntp-server-buffer
306               (setq nntp-process-response response)))
307           (nntp-decode-text (not decode))
308           (unless discard
309             (save-excursion
310               (set-buffer buffer)
311               (goto-char (point-max))
312               (insert-buffer-substring (process-buffer process))
313               ;; Nix out "nntp reading...." message.
314               (when nntp-have-messaged
315                 (setq nntp-have-messaged nil)
316                 (nnheader-message 5 ""))))
317           t))
318       (unless discard
319         (erase-buffer)))))
320
321 (defun nntp-kill-buffer (buffer)
322   (when (buffer-name buffer)
323     (kill-buffer buffer)
324     (nnheader-init-server-buffer)))
325
326 (defsubst nntp-find-connection (buffer)
327   "Find the connection delivering to BUFFER."
328   (let ((alist nntp-connection-alist)
329         (buffer (if (stringp buffer) (get-buffer buffer) buffer))
330         process entry)
331     (while (and alist (setq entry (pop alist)))
332       (when (eq buffer (cadr entry))
333         (setq process (car entry)
334               alist nil)))
335     (when process
336       (if (memq (process-status process) '(open run))
337           process
338         (nntp-kill-buffer (process-buffer process))
339         (setq nntp-connection-alist (delq entry nntp-connection-alist))
340         nil))))
341
342 (defsubst nntp-find-connection-entry (buffer)
343   "Return the entry for the connection to BUFFER."
344   (assq (nntp-find-connection buffer) nntp-connection-alist))
345
346 (defun nntp-find-connection-buffer (buffer)
347   "Return the process connection buffer tied to BUFFER."
348   (let ((process (nntp-find-connection buffer)))
349     (when process
350       (process-buffer process))))
351
352 (defsubst nntp-retrieve-data (command address port buffer
353                                       &optional wait-for callback decode)
354   "Use COMMAND to retrieve data into BUFFER from PORT on ADDRESS."
355   (let ((process (or (nntp-find-connection buffer)
356                      (nntp-open-connection buffer))))
357     (if (not process)
358         (nnheader-report 'nntp "Couldn't open connection to %s" address)
359       (unless (or nntp-inhibit-erase nnheader-callback-function)
360         (save-excursion
361           (set-buffer (process-buffer process))
362           (erase-buffer)))
363       (condition-case err
364           (progn
365             (when command
366               (nntp-send-string process command))
367             (cond
368              ((eq callback 'ignore)
369               t)
370              ((and callback wait-for)
371               (nntp-async-wait process wait-for buffer decode callback)
372               t)
373              (wait-for
374               (nntp-wait-for process wait-for buffer decode))
375              (t t)))
376         (error
377          (nnheader-report 'nntp "Couldn't open connection to %s: %s"
378                           address err))
379         (quit
380          (message "Quit retrieving data from nntp")
381          (signal 'quit nil)
382          nil)))))
383
384 (defsubst nntp-send-command (wait-for &rest strings)
385   "Send STRINGS to server and wait until WAIT-FOR returns."
386   (when (and (not nnheader-callback-function)
387              (not nntp-inhibit-output))
388     (save-excursion
389       (set-buffer nntp-server-buffer)
390       (erase-buffer)))
391   (let* ((command (mapconcat 'identity strings " "))
392          (buffer (process-buffer (nntp-find-connection nntp-server-buffer)))
393          (pos (with-current-buffer buffer (point))))
394     (prog1
395         (nntp-retrieve-data command
396                             nntp-address nntp-port-number nntp-server-buffer
397                             wait-for nnheader-callback-function)
398       ;; If nothing to wait for, still remove possibly echo'ed commands
399       (unless wait-for
400         (nntp-accept-response)
401         (save-excursion
402           (set-buffer buffer)
403           (goto-char pos)
404           (if (looking-at (regexp-quote command))
405               (delete-region pos (progn (forward-line 1) (gnus-point-at-bol))))
406           )))
407     ))
408
409 (defun nntp-send-command-nodelete (wait-for &rest strings)
410   "Send STRINGS to server and wait until WAIT-FOR returns."
411   (let* ((command (mapconcat 'identity strings " "))
412          (buffer (process-buffer (nntp-find-connection nntp-server-buffer)))
413          (pos (with-current-buffer buffer (point))))
414     (prog1
415         (nntp-retrieve-data command
416                             nntp-address nntp-port-number nntp-server-buffer
417                             wait-for nnheader-callback-function)
418       ;; If nothing to wait for, still remove possibly echo'ed commands
419       (unless wait-for
420         (nntp-accept-response)
421         (save-excursion
422           (set-buffer buffer)
423           (goto-char pos)
424           (if (looking-at (regexp-quote command))
425               (delete-region pos (progn (forward-line 1) (gnus-point-at-bol))))
426           )))
427     ))
428
429 (defun nntp-send-command-and-decode (wait-for &rest strings)
430   "Send STRINGS to server and wait until WAIT-FOR returns."
431   (when (and (not nnheader-callback-function)
432              (not nntp-inhibit-output))
433     (save-excursion
434       (set-buffer nntp-server-buffer)
435       (erase-buffer)))
436   (let* ((command (mapconcat 'identity strings " "))
437          (buffer (process-buffer (nntp-find-connection nntp-server-buffer)))
438          (pos (with-current-buffer buffer (point))))
439     (prog1
440         (nntp-retrieve-data command
441                             nntp-address nntp-port-number nntp-server-buffer
442                             wait-for nnheader-callback-function t)
443       ;; If nothing to wait for, still remove possibly echo'ed commands
444       (unless wait-for
445         (nntp-accept-response)
446         (save-excursion
447           (set-buffer buffer)
448           (goto-char pos)
449           (if (looking-at (regexp-quote command))
450               (delete-region pos (progn (forward-line 1) (gnus-point-at-bol))))
451           )))
452     ))
453
454
455 (defun nntp-send-buffer (wait-for)
456   "Send the current buffer to server and wait until WAIT-FOR returns."
457   (when (and (not nnheader-callback-function)
458              (not nntp-inhibit-output))
459     (save-excursion
460       (set-buffer (nntp-find-connection-buffer nntp-server-buffer))
461       (erase-buffer)))
462   (nntp-encode-text)
463   (mm-with-unibyte-current-buffer
464     ;; Some encoded unicode text contains character 0x80-0x9f e.g. Euro.
465     (process-send-region (nntp-find-connection nntp-server-buffer)
466                          (point-min) (point-max)))
467   (nntp-retrieve-data
468    nil nntp-address nntp-port-number nntp-server-buffer
469    wait-for nnheader-callback-function))
470
471 \f
472
473 ;;; Interface functions.
474
475 (nnoo-define-basics nntp)
476
477 (defsubst nntp-next-result-arrived-p ()
478   (cond
479    ;; A result that starts with a 2xx code is terminated by
480    ;; a line with only a "." on it.
481    ((eq (char-after) ?2)
482     (if (re-search-forward "\n\\.\r?\n" nil t)
483         t
484       nil))
485    ;; A result that starts with a 3xx or 4xx code is terminated
486    ;; by a newline.
487    ((looking-at "[34]")
488     (if (search-forward "\n" nil t)
489         t
490       nil))
491    ;; No result here.
492    (t
493     nil)))
494
495 (deffoo nntp-retrieve-headers (articles &optional group server fetch-old)
496   "Retrieve the headers of ARTICLES."
497   (nntp-possibly-change-group group server)
498   (save-excursion
499     (set-buffer (nntp-find-connection-buffer nntp-server-buffer))
500     (erase-buffer)
501     (if (and (not gnus-nov-is-evil)
502              (not nntp-nov-is-evil)
503              (nntp-retrieve-headers-with-xover articles fetch-old))
504         ;; We successfully retrieved the headers via XOVER.
505         'nov
506       ;; XOVER didn't work, so we do it the hard, slow and inefficient
507       ;; way.
508       (let ((number (length articles))
509             (count 0)
510             (received 0)
511             (last-point (point-min))
512             (buf (nntp-find-connection-buffer nntp-server-buffer))
513             (nntp-inhibit-erase t)
514             article)
515         ;; Send HEAD commands.
516         (while (setq article (pop articles))
517           (nntp-send-command
518            nil
519            "HEAD" (if (numberp article)
520                       (int-to-string article)
521                     ;; `articles' is either a list of article numbers
522                     ;; or a list of article IDs.
523                     article))
524           (incf count)
525           ;; Every 400 requests we have to read the stream in
526           ;; order to avoid deadlocks.
527           (when (or (null articles)     ;All requests have been sent.
528                     (zerop (% count nntp-maximum-request)))
529             (nntp-accept-response)
530             (while (progn
531                      (set-buffer buf)
532                      (goto-char last-point)
533                      ;; Count replies.
534                      (while (nntp-next-result-arrived-p)
535                        (setq last-point (point))
536                        (incf received))
537                      (< received count))
538               ;; If number of headers is greater than 100, give
539               ;;  informative messages.
540               (and (numberp nntp-large-newsgroup)
541                    (> number nntp-large-newsgroup)
542                    (zerop (% received 20))
543                    (nnheader-message 6 "NNTP: Receiving headers... %d%%"
544                                      (/ (* received 100) number)))
545               (nntp-accept-response))))
546         (and (numberp nntp-large-newsgroup)
547              (> number nntp-large-newsgroup)
548              (nnheader-message 6 "NNTP: Receiving headers...done"))
549
550         ;; Now all of replies are received.  Fold continuation lines.
551         (nnheader-fold-continuation-lines)
552         ;; Remove all "\r"'s.
553         (nnheader-strip-cr)
554         (copy-to-buffer nntp-server-buffer (point-min) (point-max))
555         'headers))))
556
557 (deffoo nntp-retrieve-groups (groups &optional server)
558   "Retrieve group info on GROUPS."
559   (nntp-possibly-change-group nil server)
560   (when (nntp-find-connection-buffer nntp-server-buffer)
561     (catch 'done
562       (save-excursion
563         ;; Erase nntp-server-buffer before nntp-inhibit-erase.
564         (set-buffer nntp-server-buffer)
565         (erase-buffer)
566         (set-buffer (nntp-find-connection-buffer nntp-server-buffer))
567         ;; The first time this is run, this variable is `try'.  So we
568         ;; try.
569         (when (eq nntp-server-list-active-group 'try)
570           (nntp-try-list-active (car groups)))
571         (erase-buffer)
572         (let ((count 0)
573               (received 0)
574               (last-point (point-min))
575               (nntp-inhibit-erase t)
576               (buf (nntp-find-connection-buffer nntp-server-buffer))
577               (command (if nntp-server-list-active-group "LIST ACTIVE" "GROUP")))
578           (while groups
579             ;; Send the command to the server.
580             (nntp-send-command nil command (pop groups))
581             (incf count)
582             ;; Every 400 requests we have to read the stream in
583             ;; order to avoid deadlocks.
584             (when (or (null groups)     ;All requests have been sent.
585                       (zerop (% count nntp-maximum-request)))
586               (nntp-accept-response)
587               (while (and (gnus-buffer-live-p buf)
588                           (progn
589                             ;; Search `blue moon' in this file for the
590                             ;; reason why set-buffer here.
591                             (set-buffer buf)
592                             (goto-char last-point)
593                             ;; Count replies.
594                             (while (re-search-forward "^[0-9]" nil t)
595                               (incf received))
596                             (setq last-point (point))
597                             (< received count)))
598                 (nntp-accept-response))))
599
600           ;; Wait for the reply from the final command.
601           (unless (gnus-buffer-live-p buf)
602             (nnheader-report 'nntp "Connection to %s is closed." server)
603             (throw 'done nil))
604           (set-buffer buf)
605           (goto-char (point-max))
606           (re-search-backward "^[0-9]" nil t)
607           (when (looking-at "^[23]")
608             (while (and (gnus-buffer-live-p buf)
609                         (progn
610                           (set-buffer buf)
611                           (goto-char (point-max))
612                           (if (not nntp-server-list-active-group)
613                               (not (re-search-backward "\r?\n" (- (point) 3) t))
614                             (not (re-search-backward "^\\.\r?\n"
615                                                      (- (point) 4) t)))))
616               (nntp-accept-response)))
617
618           ;; Now all replies are received.  We remove CRs.
619           (unless (gnus-buffer-live-p buf)
620             (nnheader-report 'nntp "Connection to %s is closed." server)
621             (throw 'done nil))
622           (set-buffer buf)
623           (goto-char (point-min))
624           (while (search-forward "\r" nil t)
625             (replace-match "" t t))
626
627           (if (not nntp-server-list-active-group)
628               (progn
629                 (copy-to-buffer nntp-server-buffer (point-min) (point-max))
630                 'group)
631             ;; We have read active entries, so we just delete the
632             ;; superfluous gunk.
633             (goto-char (point-min))
634             (while (re-search-forward "^[.2-5]" nil t)
635               (delete-region (match-beginning 0)
636                              (progn (forward-line 1) (point))))
637             (copy-to-buffer nntp-server-buffer (point-min) (point-max))
638             'active))))))
639
640 (deffoo nntp-retrieve-articles (articles &optional group server)
641   (nntp-possibly-change-group group server)
642   (save-excursion
643     (let ((number (length articles))
644           (count 0)
645           (received 0)
646           (last-point (point-min))
647           (buf (nntp-find-connection-buffer nntp-server-buffer))
648           (nntp-inhibit-erase t)
649           (map (apply 'vector articles))
650           (point 1)
651           article)
652       (set-buffer buf)
653       (erase-buffer)
654       ;; Send ARTICLE command.
655       (while (setq article (pop articles))
656         (nntp-send-command
657          nil
658          "ARTICLE" (if (numberp article)
659                        (int-to-string article)
660                      ;; `articles' is either a list of article numbers
661                      ;; or a list of article IDs.
662                      article))
663         (incf count)
664         ;; Every 400 requests we have to read the stream in
665         ;; order to avoid deadlocks.
666         (when (or (null articles)       ;All requests have been sent.
667                   (zerop (% count nntp-maximum-request)))
668           (nntp-accept-response)
669           (while (progn
670                    (set-buffer buf)
671                    (goto-char last-point)
672                    ;; Count replies.
673                    (while (nntp-next-result-arrived-p)
674                      (aset map received (cons (aref map received) (point)))
675                      (setq last-point (point))
676                      (incf received))
677                    (< received count))
678             ;; If number of headers is greater than 100, give
679             ;;  informative messages.
680             (and (numberp nntp-large-newsgroup)
681                  (> number nntp-large-newsgroup)
682                  (zerop (% received 20))
683                  (nnheader-message 6 "NNTP: Receiving articles... %d%%"
684                                    (/ (* received 100) number)))
685             (nntp-accept-response))))
686       (and (numberp nntp-large-newsgroup)
687            (> number nntp-large-newsgroup)
688            (nnheader-message 6 "NNTP: Receiving articles...done"))
689
690       ;; Now we have all the responses.  We go through the results,
691       ;; wash it and copy it over to the server buffer.
692       (set-buffer nntp-server-buffer)
693       (erase-buffer)
694       (setq last-point (point-min))
695       (mapcar
696        (lambda (entry)
697          (narrow-to-region
698           (setq point (goto-char (point-max)))
699           (progn
700             (insert-buffer-substring buf last-point (cdr entry))
701             (point-max)))
702          (setq last-point (cdr entry))
703          (nntp-decode-text)
704          (widen)
705          (cons (car entry) point))
706        map))))
707
708 (defun nntp-try-list-active (group)
709   (nntp-list-active-group group)
710   (save-excursion
711     (set-buffer nntp-server-buffer)
712     (goto-char (point-min))
713     (cond ((or (eobp)
714                (looking-at "5[0-9]+"))
715            (setq nntp-server-list-active-group nil))
716           (t
717            (setq nntp-server-list-active-group t)))))
718
719 (deffoo nntp-list-active-group (group &optional server)
720   "Return the active info on GROUP (which can be a regexp)."
721   (nntp-possibly-change-group nil server)
722   (nntp-send-command "^\\.*\r?\n" "LIST ACTIVE" group))
723
724 (deffoo nntp-request-group-articles (group &optional server)
725   "Return the list of existing articles in GROUP."
726   (nntp-possibly-change-group nil server)
727   (nntp-send-command "^\\.*\r?\n" "LISTGROUP" group))
728
729 (deffoo nntp-request-article (article &optional group server buffer command)
730   (nntp-possibly-change-group group server)
731   (when (nntp-send-command-and-decode
732          "\r?\n\\.\r?\n" "ARTICLE"
733          (if (numberp article) (int-to-string article) article))
734     (if (and buffer
735              (not (equal buffer nntp-server-buffer)))
736         (save-excursion
737           (set-buffer nntp-server-buffer)
738           (copy-to-buffer buffer (point-min) (point-max))
739           (nntp-find-group-and-number))
740       (nntp-find-group-and-number))))
741
742 (deffoo nntp-request-head (article &optional group server)
743   (nntp-possibly-change-group group server)
744   (when (nntp-send-command
745          "\r?\n\\.\r?\n" "HEAD"
746          (if (numberp article) (int-to-string article) article))
747     (prog1
748         (nntp-find-group-and-number)
749       (nntp-decode-text))))
750
751 (deffoo nntp-request-body (article &optional group server)
752   (nntp-possibly-change-group group server)
753   (nntp-send-command-and-decode
754    "\r?\n\\.\r?\n" "BODY"
755    (if (numberp article) (int-to-string article) article)))
756
757 (deffoo nntp-request-group (group &optional server dont-check)
758   (nntp-possibly-change-group nil server)
759   (when (nntp-send-command "^[245].*\n" "GROUP" group)
760     (let ((entry (nntp-find-connection-entry nntp-server-buffer)))
761       (setcar (cddr entry) group))))
762
763 (deffoo nntp-close-group (group &optional server)
764   t)
765
766 (deffoo nntp-server-opened (&optional server)
767   "Say whether a connection to SERVER has been opened."
768   (and (nnoo-current-server-p 'nntp server)
769        nntp-server-buffer
770        (gnus-buffer-live-p nntp-server-buffer)
771        (nntp-find-connection nntp-server-buffer)))
772
773 (deffoo nntp-open-server (server &optional defs connectionless)
774   (nnheader-init-server-buffer)
775   (if (nntp-server-opened server)
776       t
777     (when (or (stringp (car defs))
778               (numberp (car defs)))
779       (setq defs (cons (list 'nntp-port-number (car defs)) (cdr defs))))
780     (unless (assq 'nntp-address defs)
781       (setq defs (append defs (list (list 'nntp-address server)))))
782     (nnoo-change-server 'nntp server defs)
783     (unless connectionless
784       (or (nntp-find-connection nntp-server-buffer)
785           (nntp-open-connection nntp-server-buffer)))))
786
787 (deffoo nntp-close-server (&optional server)
788   (nntp-possibly-change-group nil server t)
789   (let ((process (nntp-find-connection nntp-server-buffer)))
790     (while process
791       (when (memq (process-status process) '(open run))
792         (ignore-errors
793           (nntp-send-string process "QUIT")
794           (unless (eq nntp-open-connection-function 'nntp-open-network-stream)
795             ;; Ok, this is evil, but when using telnet and stuff
796             ;; as the connection method, it's important that the
797             ;; QUIT command actually is sent out before we kill
798             ;; the process.
799             (sleep-for 1))))
800       (nntp-kill-buffer (process-buffer process))
801       (setq process (car (pop nntp-connection-alist))))
802     (nnoo-close-server 'nntp)))
803
804 (deffoo nntp-request-close ()
805   (let (process)
806     (while (setq process (pop nntp-connection-list))
807       (when (memq (process-status process) '(open run))
808         (ignore-errors
809           (nntp-send-string process "QUIT")
810           (unless (eq nntp-open-connection-function 'nntp-open-network-stream)
811             ;; Ok, this is evil, but when using telnet and stuff
812             ;; as the connection method, it's important that the
813             ;; QUIT command actually is sent out before we kill
814             ;; the process.
815             (sleep-for 1))))
816       (nntp-kill-buffer (process-buffer process)))))
817
818 (deffoo nntp-request-list (&optional server)
819   (nntp-possibly-change-group nil server)
820   (nntp-send-command-and-decode "\r?\n\\.\r?\n" "LIST"))
821
822 (deffoo nntp-request-list-newsgroups (&optional server)
823   (nntp-possibly-change-group nil server)
824   (nntp-send-command "\r?\n\\.\r?\n" "LIST NEWSGROUPS"))
825
826 (deffoo nntp-request-newgroups (date &optional server)
827   (nntp-possibly-change-group nil server)
828   (save-excursion
829     (set-buffer nntp-server-buffer)
830     (let* ((time (date-to-time date))
831            (ls (- (cadr time) (nth 8 (decode-time time)))))
832       (cond ((< ls 0)
833              (setcar time (1- (car time)))
834              (setcar (cdr time) (+ ls 65536)))
835             ((>= ls 65536)
836              (setcar time (1+ (car time)))
837              (setcar (cdr time) (- ls 65536)))
838             (t
839              (setcar (cdr time) ls)))
840       (prog1
841           (nntp-send-command
842            "^\\.\r?\n" "NEWGROUPS"
843            (format-time-string "%y%m%d %H%M%S" time)
844            "GMT")
845         (nntp-decode-text)))))
846
847 (deffoo nntp-request-post (&optional server)
848   (nntp-possibly-change-group nil server)
849   (when (nntp-send-command "^[23].*\r?\n" "POST")
850     (let ((response (with-current-buffer nntp-server-buffer
851                       nntp-process-response))
852           server-id)
853       (when (and response
854                  (string-match "^[23].*\\(<[^\t\n @<>]+@[^\t\n @<>]+>\\)"
855                                response))
856         (setq server-id (match-string 1 response))
857         (narrow-to-region (goto-char (point-min))
858                           (if (search-forward "\n\n" nil t)
859                               (1- (point))
860                             (point-max)))
861         (unless (mail-fetch-field "Message-ID")
862           (goto-char (point-min))
863           (insert "Message-ID: " server-id "\n"))
864         (widen))
865       (run-hooks 'nntp-prepare-post-hook)
866       (nntp-send-buffer "^[23].*\n"))))
867
868 (deffoo nntp-request-type (group article)
869   'news)
870
871 (deffoo nntp-asynchronous-p ()
872   t)
873
874 ;;; Hooky functions.
875
876 (defun nntp-send-mode-reader ()
877   "Send the MODE READER command to the nntp server.
878 This function is supposed to be called from `nntp-server-opened-hook'.
879 It will make innd servers spawn an nnrpd process to allow actual article
880 reading."
881   (nntp-send-command "^.*\n" "MODE READER"))
882
883 (defun nntp-send-authinfo (&optional send-if-force)
884   "Send the AUTHINFO to the nntp server.
885 It will look in the \"~/.authinfo\" file for matching entries.  If
886 nothing suitable is found there, it will prompt for a user name
887 and a password.
888
889 If SEND-IF-FORCE, only send authinfo to the server if the
890 .authinfo file has the FORCE token."
891   (let* ((list (gnus-parse-netrc nntp-authinfo-file))
892          (alist (gnus-netrc-machine list nntp-address "nntp"))
893          (force (gnus-netrc-get alist "force"))
894          (user (or (gnus-netrc-get alist "login") nntp-authinfo-user))
895          (passwd (gnus-netrc-get alist "password")))
896     (when (or (not send-if-force)
897               force)
898       (unless user
899         (setq user (read-string (format "NNTP (%s) user name: " nntp-address))
900               nntp-authinfo-user user))
901       (unless (member user '(nil ""))
902         (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" user)
903         (when t                         ;???Should check if AUTHINFO succeeded
904           (nntp-send-command
905            "^2.*\r?\n" "AUTHINFO PASS"
906            (or passwd
907                nntp-authinfo-password
908                (setq nntp-authinfo-password
909                      (mail-source-read-passwd
910                       (format "NNTP (%s@%s) password: "
911                               user nntp-address))))))))))
912
913 (defun nntp-send-nosy-authinfo ()
914   "Send the AUTHINFO to the nntp server."
915   (let ((user (read-string (format "NNTP (%s) user name: " nntp-address))))
916     (unless (member user '(nil ""))
917       (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" user)
918       (when t                           ;???Should check if AUTHINFO succeeded
919         (nntp-send-command "^2.*\r?\n" "AUTHINFO PASS"
920                            (mail-source-read-passwd "NNTP (%s@%s) password: "
921                                                     user nntp-address))))))
922
923 (defun nntp-send-authinfo-from-file ()
924   "Send the AUTHINFO to the nntp server.
925
926 The authinfo login name is taken from the user's login name and the
927 password contained in '~/.nntp-authinfo'."
928   (when (file-exists-p "~/.nntp-authinfo")
929     (with-temp-buffer
930       (insert-file-contents "~/.nntp-authinfo")
931       (goto-char (point-min))
932       (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" (user-login-name))
933       (nntp-send-command
934        "^2.*\r?\n" "AUTHINFO PASS"
935        (buffer-substring (point) (progn (end-of-line) (point)))))))
936
937 ;;; Internal functions.
938
939 (defun nntp-handle-authinfo (process)
940   "Take care of an authinfo response from the server."
941   (let ((last nntp-last-command))
942     (funcall nntp-authinfo-function)
943     ;; We have to re-send the function that was interrupted by
944     ;; the authinfo request.
945     (save-excursion
946       (set-buffer nntp-server-buffer)
947       (erase-buffer))
948     (nntp-send-string process last)))
949
950 (defun nntp-make-process-buffer (buffer)
951   "Create a new, fresh buffer usable for nntp process connections."
952   (save-excursion
953     (set-buffer
954      (generate-new-buffer
955       (format " *server %s %s %s*"
956               nntp-address nntp-port-number
957               (gnus-buffer-exists-p buffer))))
958     (mm-enable-multibyte)
959     (set (make-local-variable 'after-change-functions) nil)
960     (set (make-local-variable 'nntp-process-wait-for) nil)
961     (set (make-local-variable 'nntp-process-callback) nil)
962     (set (make-local-variable 'nntp-process-to-buffer) nil)
963     (set (make-local-variable 'nntp-process-start-point) nil)
964     (set (make-local-variable 'nntp-process-decode) nil)
965     (current-buffer)))
966
967 (defun nntp-open-connection (buffer)
968   "Open a connection to PORT on ADDRESS delivering output to BUFFER."
969   (run-hooks 'nntp-prepare-server-hook)
970   (let* ((pbuffer (nntp-make-process-buffer buffer))
971          (timer
972           (and nntp-connection-timeout
973                (nnheader-run-at-time
974                 nntp-connection-timeout nil
975                 `(lambda ()
976                    (nntp-kill-buffer ,pbuffer)))))
977          (process
978           (condition-case ()
979               (let ((coding-system-for-read nntp-coding-system-for-read)
980                     (coding-system-for-write nntp-coding-system-for-write))
981                 (funcall nntp-open-connection-function pbuffer))
982             (error nil)
983             (quit
984              (message "Quit opening connection")
985              (nntp-kill-buffer pbuffer)
986              (signal 'quit nil)
987              nil))))
988     (when timer
989       (nnheader-cancel-timer timer))
990     (unless process
991       (nntp-kill-buffer pbuffer))
992     (when (and (buffer-name pbuffer)
993                process)
994       (process-kill-without-query process)
995       (if (and (nntp-wait-for process "^2.*\n" buffer nil t)
996                (memq (process-status process) '(open run)))
997           (prog1
998               (caar (push (list process buffer nil) nntp-connection-alist))
999             (push process nntp-connection-list)
1000             (save-excursion
1001               (set-buffer pbuffer)
1002               (nntp-read-server-type)
1003               (erase-buffer)
1004               (set-buffer nntp-server-buffer)
1005               (let ((nnheader-callback-function nil))
1006                 (run-hooks 'nntp-server-opened-hook)
1007                 (nntp-send-authinfo t))))
1008         (nntp-kill-buffer (process-buffer process))
1009         nil))))
1010
1011 (defun nntp-open-network-stream (buffer)
1012   (open-network-stream "nntpd" buffer nntp-address nntp-port-number))
1013
1014 (defun nntp-open-ssl-stream (buffer)
1015   (let ((proc (open-ssl-stream "nntpd" buffer nntp-address nntp-port-number)))
1016     (save-excursion
1017       (set-buffer buffer)
1018       (nntp-wait-for-string "^\r*20[01]")
1019       (beginning-of-line)
1020       (delete-region (point-min) (point))
1021       proc)))
1022
1023 (defun nntp-read-server-type ()
1024   "Find out what the name of the server we have connected to is."
1025   ;; Wait for the status string to arrive.
1026   (setq nntp-server-type (buffer-string))
1027   (let ((alist nntp-server-action-alist)
1028         (case-fold-search t)
1029         entry)
1030     ;; Run server-specific commands.
1031     (while alist
1032       (setq entry (pop alist))
1033       (when (string-match (car entry) nntp-server-type)
1034         (if (and (listp (cadr entry))
1035                  (not (eq 'lambda (caadr entry))))
1036             (eval (cadr entry))
1037           (funcall (cadr entry)))))))
1038
1039 (defun nntp-async-wait (process wait-for buffer decode callback)
1040   (save-excursion
1041     (set-buffer (process-buffer process))
1042     (unless nntp-inside-change-function
1043       (erase-buffer))
1044     (setq nntp-process-wait-for wait-for
1045           nntp-process-to-buffer buffer
1046           nntp-process-decode decode
1047           nntp-process-callback callback
1048           nntp-process-start-point (point-max))
1049     (setq after-change-functions '(nntp-after-change-function))
1050     (if nntp-async-needs-kluge
1051         (nntp-async-kluge process))))
1052
1053 (defun nntp-async-kluge (process)
1054   ;; emacs 20.3 bug: process output with encoding 'binary
1055   ;; doesn't trigger after-change-functions.
1056   (unless nntp-async-timer
1057     (setq nntp-async-timer
1058           (nnheader-run-at-time 1 1 'nntp-async-timer-handler)))
1059   (add-to-list 'nntp-async-process-list process))
1060
1061 (defun nntp-async-timer-handler ()
1062   (mapcar
1063    (lambda (proc)
1064      (if (memq (process-status proc) '(open run))
1065          (nntp-async-trigger proc)
1066        (nntp-async-stop proc)))
1067    nntp-async-process-list))
1068
1069 (defun nntp-async-stop (proc)
1070   (setq nntp-async-process-list (delq proc nntp-async-process-list))
1071   (when (and nntp-async-timer (not nntp-async-process-list))
1072     (nnheader-cancel-timer nntp-async-timer)
1073     (setq nntp-async-timer nil)))
1074
1075 (defun nntp-after-change-function (beg end len)
1076   (unwind-protect
1077       ;; we only care about insertions at eob
1078       (when (and (eq 0 len) (eq (point-max) end))
1079         (save-match-data
1080           (let ((proc (get-buffer-process (current-buffer))))
1081             (when proc
1082               (nntp-async-trigger proc)))))
1083     ;; any throw from after-change-functions will leave it
1084     ;; set to nil.  so we reset it here, if necessary.
1085     (when quit-flag
1086       (setq after-change-functions '(nntp-after-change-function)))))
1087
1088 (defun nntp-async-trigger (process)
1089   (save-excursion
1090     (set-buffer (process-buffer process))
1091     (when nntp-process-callback
1092       ;; do we have an error message?
1093       (goto-char nntp-process-start-point)
1094       (if (memq (following-char) '(?4 ?5))
1095           ;; wants credentials?
1096           (if (looking-at "480")
1097               (nntp-handle-authinfo process)
1098             ;; report error message.
1099             (nntp-snarf-error-message)
1100             (nntp-do-callback nil))
1101
1102         ;; got what we expect?
1103         (goto-char (point-max))
1104         (when (re-search-backward
1105                nntp-process-wait-for nntp-process-start-point t)
1106           (let ((response (match-string 0)))
1107             (with-current-buffer nntp-server-buffer
1108               (setq nntp-process-response response)))
1109           (nntp-async-stop process)
1110           ;; convert it.
1111           (when (gnus-buffer-exists-p nntp-process-to-buffer)
1112             (let ((buf (current-buffer))
1113                   (start nntp-process-start-point)
1114                   (decode nntp-process-decode))
1115               (save-excursion
1116                 (set-buffer nntp-process-to-buffer)
1117                 (goto-char (point-max))
1118                 (save-restriction
1119                   (narrow-to-region (point) (point))
1120                   (insert-buffer-substring buf start)
1121                   (when decode
1122                     (nntp-decode-text))))))
1123           ;; report it.
1124           (goto-char (point-max))
1125           (nntp-do-callback
1126            (buffer-name (get-buffer nntp-process-to-buffer))))))))
1127
1128 (defun nntp-do-callback (arg)
1129   (let ((callback nntp-process-callback)
1130         (nntp-inside-change-function t))
1131     (setq nntp-process-callback nil)
1132     (funcall callback arg)))
1133
1134 (defun nntp-snarf-error-message ()
1135   "Save the error message in the current buffer."
1136   (let ((message (buffer-string)))
1137     (while (string-match "[\r\n]+" message)
1138       (setq message (replace-match " " t t message)))
1139     (nnheader-report 'nntp message)
1140     message))
1141
1142 (defun nntp-accept-process-output (process &optional timeout)
1143   "Wait for output from PROCESS and message some dots."
1144   (save-excursion
1145     (set-buffer (or (nntp-find-connection-buffer nntp-server-buffer)
1146                     nntp-server-buffer))
1147     (let ((len (/ (point-max) 1024))
1148           message-log-max)
1149       (unless (< len 10)
1150         (setq nntp-have-messaged t)
1151         (nnheader-message 7 "nntp read: %dk" len)))
1152     (accept-process-output process (or timeout 1))))
1153
1154 (defun nntp-accept-response ()
1155   "Wait for output from the process that outputs to BUFFER."
1156   (nntp-accept-process-output (nntp-find-connection nntp-server-buffer)))
1157
1158 (defun nntp-possibly-change-group (group server &optional connectionless)
1159   (let ((nnheader-callback-function nil))
1160     (when server
1161       (or (nntp-server-opened server)
1162           (nntp-open-server server nil connectionless)))
1163
1164     (unless connectionless
1165       (or (nntp-find-connection nntp-server-buffer)
1166           (nntp-open-connection nntp-server-buffer))))
1167
1168   (when group
1169     (let ((entry (nntp-find-connection-entry nntp-server-buffer)))
1170       (when (not (equal group (caddr entry)))
1171         (save-excursion
1172           (set-buffer (process-buffer (car entry)))
1173           (erase-buffer)
1174           (nntp-send-command "^[245].*\n" "GROUP" group)
1175           (setcar (cddr entry) group)
1176           (erase-buffer))))))
1177
1178 (defun nntp-decode-text (&optional cr-only)
1179   "Decode the text in the current buffer."
1180   (goto-char (point-min))
1181   (while (search-forward "\r" nil t)
1182     (delete-char -1))
1183   (unless cr-only
1184     ;; Remove trailing ".\n" end-of-transfer marker.
1185     (goto-char (point-max))
1186     (forward-line -1)
1187     (when (looking-at ".\n")
1188       (delete-char 2))
1189     ;; Delete status line.
1190     (goto-char (point-min))
1191     (while (looking-at "[1-5][0-9][0-9] .*\n")
1192       ;; For some unknown reason, there is more than one status line.
1193       (delete-region (point) (progn (forward-line 1) (point))))
1194     ;; Remove "." -> ".." encoding.
1195     (while (search-forward "\n.." nil t)
1196       (delete-char -1))))
1197
1198 (defun nntp-encode-text ()
1199   "Encode the text in the current buffer."
1200   (save-excursion
1201     ;; Replace "." at beginning of line with "..".
1202     (goto-char (point-min))
1203     (while (re-search-forward "^\\." nil t)
1204       (insert "."))
1205     (goto-char (point-max))
1206     ;; Insert newline at the end of the buffer.
1207     (unless (bolp)
1208       (insert "\n"))
1209     ;; Insert `.' at end of buffer (end of text mark).
1210     (goto-char (point-max))
1211     (insert ".\n")
1212     (goto-char (point-min))
1213     (while (not (eobp))
1214       (end-of-line)
1215       (delete-char 1)
1216       (insert nntp-end-of-line))))
1217
1218 (defun nntp-retrieve-headers-with-xover (articles &optional fetch-old)
1219   (set-buffer nntp-server-buffer)
1220   (erase-buffer)
1221   (cond
1222
1223    ;; This server does not talk NOV.
1224    ((not nntp-server-xover)
1225     nil)
1226
1227    ;; We don't care about gaps.
1228    ((or (not nntp-nov-gap)
1229         fetch-old)
1230     (nntp-send-xover-command
1231      (if fetch-old
1232          (if (numberp fetch-old)
1233              (max 1 (- (car articles) fetch-old))
1234            1)
1235        (car articles))
1236      (car (last articles)) 'wait)
1237
1238     (goto-char (point-min))
1239     (when (looking-at "[1-5][0-9][0-9] .*\n")
1240       (delete-region (point) (progn (forward-line 1) (point))))
1241     (while (search-forward "\r" nil t)
1242       (replace-match "" t t))
1243     (goto-char (point-max))
1244     (forward-line -1)
1245     (when (looking-at "\\.")
1246       (delete-region (point) (progn (forward-line 1) (point)))))
1247
1248    ;; We do it the hard way.  For each gap, an XOVER command is sent
1249    ;; to the server.  We do not wait for a reply from the server, we
1250    ;; just send them off as fast as we can.  That means that we have
1251    ;; to count the number of responses we get back to find out when we
1252    ;; have gotten all we asked for.
1253    ((numberp nntp-nov-gap)
1254     (let ((count 0)
1255           (received 0)
1256           last-point
1257           in-process-buffer-p
1258           (buf nntp-server-buffer)
1259           (process-buffer (nntp-find-connection-buffer nntp-server-buffer))
1260           first)
1261       ;; We have to check `nntp-server-xover'.  If it gets set to nil,
1262       ;; that means that the server does not understand XOVER, but we
1263       ;; won't know that until we try.
1264       (while (and nntp-server-xover articles)
1265         (setq first (car articles))
1266         ;; Search forward until we find a gap, or until we run out of
1267         ;; articles.
1268         (while (and (cdr articles)
1269                     (< (- (nth 1 articles) (car articles)) nntp-nov-gap))
1270           (setq articles (cdr articles)))
1271
1272         (setq in-process-buffer-p (stringp nntp-server-xover))
1273         (nntp-send-xover-command first (car articles))
1274         (setq articles (cdr articles))
1275
1276         (when (and nntp-server-xover in-process-buffer-p)
1277           ;; Don't count tried request.
1278           (setq count (1+ count))
1279
1280           ;; Every 400 requests we have to read the stream in
1281           ;; order to avoid deadlocks.
1282           (when (or (null articles)     ;All requests have been sent.
1283                     (zerop (% count nntp-maximum-request)))
1284
1285             (nntp-accept-response)
1286             ;; On some Emacs versions the preceding function has a
1287             ;; tendency to change the buffer.  Perhaps.  It's quite
1288             ;; difficult to reproduce, because it only seems to happen
1289             ;; once in a blue moon.
1290             (set-buffer process-buffer)
1291             (while (progn
1292                      (goto-char (or last-point (point-min)))
1293                      ;; Count replies.
1294                      (while (re-search-forward "^[0-9][0-9][0-9] .*\n" nil t)
1295                        (incf received))
1296                      (setq last-point (point))
1297                      (< received count))
1298               (nntp-accept-response)
1299               (set-buffer process-buffer))
1300             (set-buffer buf))))
1301
1302       (when nntp-server-xover
1303         (when in-process-buffer-p
1304           (set-buffer process-buffer)
1305           ;; Wait for the reply from the final command.
1306           (goto-char (point-max))
1307           (while (not (re-search-backward "^[0-9][0-9][0-9] " nil t))
1308             (nntp-accept-response)
1309             (set-buffer process-buffer)
1310             (goto-char (point-max)))
1311           (when (looking-at "^[23]")
1312             (while (progn
1313                      (goto-char (point-max))
1314                      (forward-line -1)
1315                      (not (looking-at "^\\.\r?\n")))
1316               (nntp-accept-response)
1317               (set-buffer process-buffer)))
1318           (set-buffer buf)
1319           (goto-char (point-max))
1320           (insert-buffer-substring process-buffer)
1321           (set-buffer process-buffer)
1322           (erase-buffer)
1323           (set-buffer buf))
1324
1325         ;; We remove any "." lines and status lines.
1326         (goto-char (point-min))
1327         (while (search-forward "\r" nil t)
1328           (delete-char -1))
1329         (goto-char (point-min))
1330         (delete-matching-lines "^\\.$\\|^[1-5][0-9][0-9] ")
1331         t))))
1332
1333   nntp-server-xover)
1334
1335 (defun nntp-send-xover-command (beg end &optional wait-for-reply)
1336   "Send the XOVER command to the server."
1337   (let ((range (format "%d-%d" beg end))
1338         (nntp-inhibit-erase t))
1339     (if (stringp nntp-server-xover)
1340         ;; If `nntp-server-xover' is a string, then we just send this
1341         ;; command.
1342         (if wait-for-reply
1343             (nntp-send-command-nodelete
1344              "\r?\n\\.\r?\n" nntp-server-xover range)
1345           ;; We do not wait for the reply.
1346           (nntp-send-command-nodelete nil nntp-server-xover range))
1347       (let ((commands nntp-xover-commands))
1348         ;; `nntp-xover-commands' is a list of possible XOVER commands.
1349         ;; We try them all until we get at positive response.
1350         (while (and commands (eq nntp-server-xover 'try))
1351           (nntp-send-command-nodelete "\r?\n\\.\r?\n" (car commands) range)
1352           (save-excursion
1353             (set-buffer nntp-server-buffer)
1354             (goto-char (point-min))
1355             (and (looking-at "[23]")    ; No error message.
1356                  ;; We also have to look at the lines.  Some buggy
1357                  ;; servers give back simple lines with just the
1358                  ;; article number.  How... helpful.
1359                  (progn
1360                    (forward-line 1)
1361                    (looking-at "[0-9]+\t...")) ; More text after number.
1362                  (setq nntp-server-xover (car commands))))
1363           (setq commands (cdr commands)))
1364         ;; If none of the commands worked, we disable XOVER.
1365         (when (eq nntp-server-xover 'try)
1366           (save-excursion
1367             (set-buffer nntp-server-buffer)
1368             (erase-buffer)
1369             (setq nntp-server-xover nil)))
1370         nntp-server-xover))))
1371
1372 (defun nntp-find-group-and-number ()
1373   (save-excursion
1374     (save-restriction
1375       (set-buffer nntp-server-buffer)
1376       (narrow-to-region (goto-char (point-min))
1377                         (or (search-forward "\n\n" nil t) (point-max)))
1378       (goto-char (point-min))
1379       ;; We first find the number by looking at the status line.
1380       (let ((number (and (looking-at "2[0-9][0-9] +\\([0-9]+\\) ")
1381                          (string-to-int
1382                           (buffer-substring (match-beginning 1)
1383                                             (match-end 1)))))
1384             group newsgroups xref)
1385         (and number (zerop number) (setq number nil))
1386         ;; Then we find the group name.
1387         (setq group
1388               (cond
1389                ;; If there is only one group in the Newsgroups header,
1390                ;; then it seems quite likely that this article comes
1391                ;; from that group, I'd say.
1392                ((and (setq newsgroups (mail-fetch-field "newsgroups"))
1393                      (not (string-match "," newsgroups)))
1394                 newsgroups)
1395                ;; If there is more than one group in the Newsgroups
1396                ;; header, then the Xref header should be filled out.
1397                ;; We hazard a guess that the group that has this
1398                ;; article number in the Xref header is the one we are
1399                ;; looking for.  This might very well be wrong if this
1400                ;; article happens to have the same number in several
1401                ;; groups, but that's life.
1402                ((and (setq xref (mail-fetch-field "xref"))
1403                      number
1404                      (string-match (format "\\([^ :]+\\):%d" number) xref))
1405                 (substring xref (match-beginning 1) (match-end 1)))
1406                (t "")))
1407         (when (string-match "\r" group)
1408           (setq group (substring group 0 (match-beginning 0))))
1409         (cons group number)))))
1410
1411 (defun nntp-wait-for-string (regexp)
1412   "Wait until string arrives in the buffer."
1413   (let ((buf (current-buffer)))
1414     (goto-char (point-min))
1415     (while (not (re-search-forward regexp nil t))
1416       (accept-process-output (nntp-find-connection nntp-server-buffer))
1417       (set-buffer buf)
1418       (goto-char (point-min)))))
1419
1420
1421 ;; ==========================================================================
1422 ;; Obsolete nntp-open-* connection methods -- drv
1423 ;; ==========================================================================
1424
1425 (defvoo nntp-open-telnet-envuser nil
1426   "*If non-nil, telnet session (client and server both) will support the ENVIRON option and not prompt for login name.")
1427
1428 (defvoo nntp-telnet-shell-prompt "bash\\|\$ *\r?$\\|> *\r?"
1429   "*Regular expression to match the shell prompt on the remote machine.")
1430
1431 (defvoo nntp-rlogin-program "rsh"
1432   "*Program used to log in on remote machines.
1433 The default is \"rsh\", but \"ssh\" is a popular alternative.")
1434
1435 (defvoo nntp-rlogin-parameters '("telnet" "-8" "${NNTPSERVER:=news}" "nntp")
1436   "*Parameters to `nntp-open-rlogin'.
1437 That function may be used as `nntp-open-connection-function'.  In that
1438 case, this list will be used as the parameter list given to rsh.")
1439
1440 (defvoo nntp-rlogin-user-name nil
1441   "*User name on remote system when using the rlogin connect method.")
1442
1443 (defvoo nntp-telnet-parameters
1444     '("exec" "telnet" "-8" "${NNTPSERVER:=news}" "nntp")
1445   "*Parameters to `nntp-open-telnet'.
1446 That function may be used as `nntp-open-connection-function'.  In that
1447 case, this list will be executed as a command after logging in
1448 via telnet.")
1449
1450 (defvoo nntp-telnet-user-name nil
1451   "User name to log in via telnet with.")
1452
1453 (defvoo nntp-telnet-passwd nil
1454   "Password to use to log in via telnet with.")
1455
1456 (defun nntp-open-telnet (buffer)
1457   (save-excursion
1458     (set-buffer buffer)
1459     (erase-buffer)
1460     (let ((proc (apply
1461                  'start-process
1462                  "nntpd" buffer nntp-telnet-command nntp-telnet-switches))
1463           (case-fold-search t))
1464       (when (memq (process-status proc) '(open run))
1465         (nntp-wait-for-string "^r?telnet")
1466         (process-send-string proc "set escape \^X\n")
1467         (cond
1468          ((and nntp-open-telnet-envuser nntp-telnet-user-name)
1469           (process-send-string proc (concat "open " "-l" nntp-telnet-user-name
1470                                             nntp-address "\n")))
1471          (t
1472           (process-send-string proc (concat "open " nntp-address "\n"))))
1473         (cond
1474          ((not nntp-open-telnet-envuser)
1475           (nntp-wait-for-string "^\r*.?login:")
1476           (process-send-string
1477            proc (concat
1478                  (or nntp-telnet-user-name
1479                      (setq nntp-telnet-user-name (read-string "login: ")))
1480                  "\n"))))
1481         (nntp-wait-for-string "^\r*.?password:")
1482         (process-send-string
1483          proc (concat
1484                (or nntp-telnet-passwd
1485                    (setq nntp-telnet-passwd
1486                          (mail-source-read-passwd "Password: ")))
1487                "\n"))
1488         (nntp-wait-for-string nntp-telnet-shell-prompt)
1489         (process-send-string
1490          proc (concat (mapconcat 'identity nntp-telnet-parameters " ") "\n"))
1491         (nntp-wait-for-string "^\r*20[01]")
1492         (beginning-of-line)
1493         (delete-region (point-min) (point))
1494         (process-send-string proc "\^]")
1495         (nntp-wait-for-string "^r?telnet")
1496         (process-send-string proc "mode character\n")
1497         (accept-process-output proc 1)
1498         (sit-for 1)
1499         (goto-char (point-min))
1500         (forward-line 1)
1501         (delete-region (point) (point-max)))
1502       proc)))
1503
1504 (defun nntp-open-rlogin (buffer)
1505   "Open a connection to SERVER using rsh."
1506   (let ((proc (if nntp-rlogin-user-name
1507                   (apply 'start-process
1508                          "nntpd" buffer nntp-rlogin-program
1509                          nntp-address "-l" nntp-rlogin-user-name
1510                          nntp-rlogin-parameters)
1511                 (apply 'start-process
1512                        "nntpd" buffer nntp-rlogin-program nntp-address
1513                        nntp-rlogin-parameters))))
1514     (save-excursion
1515       (set-buffer buffer)
1516       (nntp-wait-for-string "^\r*20[01]")
1517       (beginning-of-line)
1518       (delete-region (point-min) (point))
1519       proc)))
1520
1521
1522 ;; ==========================================================================
1523 ;; Replacements for the nntp-open-* functions -- drv
1524 ;; ==========================================================================
1525
1526 (defun nntp-open-telnet-stream (buffer)
1527   "Open a nntp connection by telnet'ing the news server.
1528
1529 Please refer to the following variables to customize the connection:
1530 - `nntp-pre-command',
1531 - `nntp-telnet-command',
1532 - `nntp-telnet-switches',
1533 - `nntp-address',
1534 - `nntp-port-number',
1535 - `nntp-end-of-line'."
1536   (let ((command `(,nntp-telnet-command
1537                    ,@nntp-telnet-switches
1538                    ,nntp-address ,nntp-port-number))
1539         proc)
1540     (and nntp-pre-command
1541          (push nntp-pre-command command))
1542     (setq proc (apply 'start-process "nntpd" buffer command))
1543     (save-excursion
1544       (set-buffer buffer)
1545       (nntp-wait-for-string "^\r*20[01]")
1546       (beginning-of-line)
1547       (delete-region (point-min) (point))
1548       proc)))
1549
1550 (defun nntp-open-via-rlogin-and-telnet (buffer)
1551   "Open a connection to an nntp server through an intermediate host.
1552 First rlogin to the remote host, and then telnet the real news server
1553 from there.
1554
1555 Please refer to the following variables to customize the connection:
1556 - `nntp-pre-command',
1557 - `nntp-via-rlogin-command',
1558 - `nntp-via-user-name',
1559 - `nntp-via-address',
1560 - `nntp-telnet-command',
1561 - `nntp-telnet-switches',
1562 - `nntp-address',
1563 - `nntp-port-number',
1564 - `nntp-end-of-line'."
1565   (let ((command `(,nntp-via-address
1566                    ,nntp-telnet-command
1567                    ,@nntp-telnet-switches
1568                    ,nntp-address ,nntp-port-number))
1569         proc)
1570     (and nntp-via-user-name
1571          (setq command `("-l" ,nntp-via-user-name ,@command)))
1572     (push nntp-via-rlogin-command command)
1573     (and nntp-pre-command
1574          (push nntp-pre-command command))
1575     (setq proc (apply 'start-process "nntpd" buffer command))
1576     (save-excursion
1577       (set-buffer buffer)
1578       (nntp-wait-for-string "^\r*20[01]")
1579       (beginning-of-line)
1580       (delete-region (point-min) (point))
1581       proc)))
1582
1583 (defun nntp-open-via-telnet-and-telnet (buffer)
1584   "Open a connection to an nntp server through an intermediate host.
1585 First telnet the remote host, and then telnet the real news server
1586 from there.
1587
1588 Please refer to the following variables to customize the connection:
1589 - `nntp-pre-command',
1590 - `nntp-via-telnet-command',
1591 - `nntp-via-telnet-switches',
1592 - `nntp-via-address',
1593 - `nntp-via-envuser',
1594 - `nntp-via-user-name',
1595 - `nntp-via-user-password',
1596 - `nntp-via-shell-prompt',
1597 - `nntp-telnet-command',
1598 - `nntp-telnet-switches',
1599 - `nntp-address',
1600 - `nntp-port-number',
1601 - `nntp-end-of-line'."
1602   (save-excursion
1603     (set-buffer buffer)
1604     (erase-buffer)
1605     (let ((command `(,nntp-via-telnet-command ,@nntp-via-telnet-switches))
1606           (case-fold-search t)
1607           proc)
1608       (and nntp-pre-command (push nntp-pre-command command))
1609       (setq proc (apply 'start-process "nntpd" buffer command))
1610       (when (memq (process-status proc) '(open run))
1611         (nntp-wait-for-string "^r?telnet")
1612         (process-send-string proc "set escape \^X\n")
1613         (cond
1614          ((and nntp-via-envuser nntp-via-user-name)
1615           (process-send-string proc (concat "open " "-l" nntp-via-user-name
1616                                             nntp-via-address "\n")))
1617          (t
1618           (process-send-string proc (concat "open " nntp-via-address
1619                                             "\n"))))
1620         (when (not nntp-via-envuser)
1621           (nntp-wait-for-string "^\r*.?login:")
1622           (process-send-string proc
1623                                (concat
1624                                 (or nntp-via-user-name
1625                                     (setq nntp-via-user-name
1626                                           (read-string "login: ")))
1627                                 "\n")))
1628         (nntp-wait-for-string "^\r*.?password:")
1629         (process-send-string proc
1630                              (concat
1631                               (or nntp-via-user-password
1632                                   (setq nntp-via-user-password
1633                                         (mail-source-read-passwd
1634                                          "Password: ")))
1635                               "\n"))
1636         (nntp-wait-for-string nntp-via-shell-prompt)
1637         (let ((real-telnet-command `("exec"
1638                                      ,nntp-telnet-command
1639                                      ,@nntp-telnet-switches
1640                                      ,nntp-address
1641                                      ,nntp-port-number)))
1642           (process-send-string proc
1643                                (concat (mapconcat 'identity
1644                                                   real-telnet-command " ")
1645                                        "\n")))
1646         (nntp-wait-for-string "^\r*20[01]")
1647         (beginning-of-line)
1648         (delete-region (point-min) (point))
1649         (process-send-string proc "\^]")
1650         (nntp-wait-for-string "^r?telnet")
1651         (process-send-string proc "mode character\n")
1652         (accept-process-output proc 1)
1653         (sit-for 1)
1654         (goto-char (point-min))
1655         (forward-line 1)
1656         (delete-region (point) (point-max)))
1657       proc)))
1658
1659 (provide 'nntp)
1660
1661 ;;; nntp.el ends here