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