1 ;;; nntp.el --- nntp access for Gnus Copyright (C) 1987-90,92-97 Free
2 ;;; Software Foundation, Inc.
4 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING. If not, write to
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
31 (eval-when-compile (require 'cl
))
36 (unless (fboundp 'open-network-stream
)
39 (defvoo nntp-address nil
40 "Address of the physical nntp server.")
42 (defvoo nntp-port-number
"nntp"
43 "Port number on the physical nntp server.")
45 (defvoo nntp-server-opened-hook
'(nntp-send-mode-reader)
46 "*Hook used for sending commands to the server at startup.
47 The default value is `nntp-send-mode-reader', which makes an innd
48 server spawn an nnrpd server.")
50 (defvoo nntp-authinfo-function
'nntp-send-authinfo
51 "Function used to send AUTHINFO to the server.
52 It is called with no parameters.")
54 (defvoo nntp-server-action-alist
55 '(("nntpd 1\\.5\\.11t"
56 (remove-hook 'nntp-server-opened-hook
'nntp-send-mode-reader
))
57 ("NNRP server Netscape"
58 (setq nntp-server-list-active-group nil
)))
59 "Alist of regexps to match on server types and actions to be taken.
60 For instance, if you want Gnus to beep every time you connect
61 to innd, you could say something like:
63 \(setq nntp-server-action-alist
66 You probably don't want to do that, though.")
68 (defvoo nntp-open-connection-function
'nntp-open-network-stream
69 "*Function used for connecting to a remote system.
70 It will be called with the buffer to output in.
72 Two pre-made functions are `nntp-open-network-stream', which is the
73 default, and simply connects to some port or other on the remote
74 system (see nntp-port-number). The other are `nntp-open-rlogin',
75 which does an rlogin on the remote system, and then does a telnet to
76 the NNTP server available there (see nntp-rlogin-parameters) and
77 `nntp-open-telnet' which telnets to a remote system, logs in and does
80 (defvoo nntp-rlogin-program
"rsh"
81 "*Program used to log in on remote machines.
82 The default is \"rsh\", but \"ssh\" is a popular alternative.")
84 (defvoo nntp-rlogin-parameters
'("telnet" "-8" "${NNTPSERVER:=news}" "nntp")
85 "*Parameters to `nntp-open-rlogin'.
86 That function may be used as `nntp-open-connection-function'. In that
87 case, this list will be used as the parameter list given to rsh.")
89 (defvoo nntp-rlogin-user-name nil
90 "*User name on remote system when using the rlogin connect method.")
92 (defvoo nntp-telnet-parameters
'("exec" "telnet" "-8" "${NNTPSERVER:=news}" "nntp")
93 "*Parameters to `nntp-open-telnet'.
94 That function may be used as `nntp-open-connection-function'. In that
95 case, this list will be executed as a command after logging in
98 (defvoo nntp-telnet-user-name nil
99 "User name to log in via telnet with.")
101 (defvoo nntp-telnet-passwd nil
102 "Password to use to log in via telnet with.")
104 (defvoo nntp-open-telnet-envuser nil
105 "*If non-nil, telnet session (client and server both) will support the ENVIRON option and not prompt for login name.")
107 (defvoo nntp-telnet-shell-prompt
"bash\\|\$ *\r?$\\|> *\r?"
108 "*Regular expression to match the shell prompt on the remote machine.")
110 (defvoo nntp-telnet-command
"telnet"
111 "Command used to start telnet.")
113 (defvoo nntp-telnet-switches
'("-8")
114 "Switches given to the telnet command.")
116 (defvoo nntp-end-of-line
"\r\n"
117 "String to use on the end of lines when talking to the NNTP server.
118 This is \"\\r\\n\" by default, but should be \"\\n\" when
119 using rlogin or telnet to communicate with the server.")
121 (defvoo nntp-large-newsgroup
50
122 "*The number of the articles which indicates a large newsgroup.
123 If the number of the articles is greater than the value, verbose
124 messages will be shown to indicate the current status.")
126 (defvoo nntp-maximum-request
400
127 "*The maximum number of the requests sent to the NNTP server at one time.
128 If Emacs hangs up while retrieving headers, set the variable to a
131 (defvoo nntp-nov-is-evil nil
132 "*If non-nil, nntp will never attempt to use XOVER when talking to the server.")
134 (defvoo nntp-xover-commands
'("XOVER" "XOVERVIEW")
135 "*List of strings that are used as commands to fetch NOV lines from a server.
136 The strings are tried in turn until a positive response is gotten. If
137 none of the commands are successful, nntp will just grab headers one
140 (defvoo nntp-nov-gap
5
141 "*Maximum allowed gap between two articles.
142 If the gap between two consecutive articles is bigger than this
143 variable, split the XOVER request into two requests.")
145 (defvoo nntp-prepare-server-hook nil
146 "*Hook run before a server is opened.
147 If can be used to set up a server remotely, for instance. Say you
148 have an account at the machine \"other.machine\". This machine has
149 access to an NNTP server that you can't access locally. You could
150 then use this hook to rsh to the remote machine and start a proxy NNTP
151 server there that you can connect to. See also
152 `nntp-open-connection-function'")
154 (defvoo nntp-warn-about-losing-connection t
155 "*If non-nil, beep when a server closes connection.")
157 (defvoo nntp-coding-system-for-read
'binary
158 "*Coding system to read from NNTP.")
160 (defvoo nntp-coding-system-for-write
'binary
161 "*Coding system to write to NNTP.")
163 (defcustom nntp-authinfo-file
"~/.authinfo"
164 ".netrc-like file that holds nntp authinfo passwords."
167 (repeat :tag
"Entries"
170 :value
("" ("login" .
"") ("password" .
""))
174 (const :format
"" "login")
175 (string :format
"Login: %v"))
177 (const :format
"" "password")
178 (string :format
"Password: %v")))))))
180 ;; 1997/5/4 by MORIOKA Tomohiko <morioka@jaist.ac.jp>
181 (defvoo nntp-coding-system-for-read
'binary
182 "*Coding system to read from NNTP.")
184 (defvoo nntp-coding-system-for-write
'binary
185 "*Coding system to write to NNTP.")
189 (defvoo nntp-connection-timeout nil
190 "*Number of seconds to wait before an nntp connection times out.
191 If this variable is nil, which is the default, no timers are set.")
193 ;;; Internal variables.
195 (defvar nntp-record-commands nil
196 "*If non-nil, nntp will record all commands in the \"*nntp-log*\" buffer.")
198 (defvar nntp-have-messaged nil
)
200 (defvar nntp-process-wait-for nil
)
201 (defvar nntp-process-to-buffer nil
)
202 (defvar nntp-process-callback nil
)
203 (defvar nntp-process-decode nil
)
204 (defvar nntp-process-start-point nil
)
205 (defvar nntp-inside-change-function nil
)
206 (defvoo nntp-last-command-time nil
)
207 (defvoo nntp-last-command nil
)
208 (defvoo nntp-authinfo-password nil
)
209 (defvoo nntp-authinfo-user nil
)
211 (defvar nntp-connection-list nil
)
213 (defvoo nntp-server-type nil
)
214 (defvoo nntp-connection-alist nil
)
215 (defvoo nntp-status-string
"")
216 (defconst nntp-version
"nntp 5.0")
217 (defvoo nntp-inhibit-erase nil
)
218 (defvoo nntp-inhibit-output nil
)
220 (defvoo nntp-server-xover
'try
)
221 (defvoo nntp-server-list-active-group
'try
)
224 (autoload 'nnmail-read-passwd
"nnmail")
225 (autoload 'open-ssl-stream
"ssl"))
229 ;;; Internal functions.
231 (defsubst nntp-send-string
(process string
)
232 "Send STRING to PROCESS."
233 ;; We need to store the time to provide timeouts, and
234 ;; to store the command so the we can replay the command
235 ;; if the server gives us an AUTHINFO challenge.
236 (setq nntp-last-command-time
(current-time)
237 nntp-last-command string
)
238 (when nntp-record-commands
239 (nntp-record-command string
))
240 (process-send-string process
(concat string nntp-end-of-line
)))
242 (defun nntp-record-command (string)
243 "Record the command STRING."
245 (set-buffer (get-buffer-create "*nntp-log*"))
246 (goto-char (point-max))
247 (let ((time (current-time)))
248 (insert (format-time-string "%Y%m%dT%H%M%S" time
)
249 "." (format "%03d" (/ (nth 2 time
) 1000))
250 " " nntp-address
" " string
"\n"))))
252 (defsubst nntp-wait-for
(process wait-for buffer
&optional decode discard
)
253 "Wait for WAIT-FOR to arrive from PROCESS."
255 (set-buffer (process-buffer process
))
256 (goto-char (point-min))
257 (while (and (or (not (memq (char-after (point)) '(?
2 ?
3 ?
4 ?
5)))
259 (memq (process-status process
) '(open run
)))
260 (when (looking-at "480")
261 (nntp-handle-authinfo process
))
262 (nntp-accept-process-output process
)
263 (goto-char (point-min)))
268 (nntp-snarf-error-message)
270 ((not (memq (process-status process
) '(open run
)))
271 (nnheader-report 'nntp
"Server closed connection"))
273 (goto-char (point-max))
274 (let ((limit (point-min)))
275 (while (not (re-search-backward wait-for limit t
))
276 (nntp-accept-process-output process
)
277 ;; We assume that whatever we wait for is less than 1000
279 (setq limit
(max (- (point-max) 1000) (point-min)))
280 (goto-char (point-max))))
281 (nntp-decode-text (not decode
))
285 (goto-char (point-max))
286 (insert-buffer-substring (process-buffer process
))
287 ;; Nix out "nntp reading...." message.
288 (when nntp-have-messaged
289 (setq nntp-have-messaged nil
)
290 (nnheader-message 5 ""))
295 (defsubst nntp-find-connection
(buffer)
296 "Find the connection delivering to BUFFER."
297 (let ((alist nntp-connection-alist
)
298 (buffer (if (stringp buffer
) (get-buffer buffer
) buffer
))
300 (while (setq entry
(pop alist
))
301 (when (eq buffer
(cadr entry
))
302 (setq process
(car entry
)
305 (if (memq (process-status process
) '(open run
))
307 (when (buffer-name (process-buffer process
))
308 (kill-buffer (process-buffer process
)))
309 (setq nntp-connection-alist
(delq entry nntp-connection-alist
))
312 (defsubst nntp-find-connection-entry
(buffer)
313 "Return the entry for the connection to BUFFER."
314 (assq (nntp-find-connection buffer
) nntp-connection-alist
))
316 (defun nntp-find-connection-buffer (buffer)
317 "Return the process connection buffer tied to BUFFER."
318 (let ((process (nntp-find-connection buffer
)))
320 (process-buffer process
))))
322 (defsubst nntp-retrieve-data
(command address port buffer
323 &optional wait-for callback decode
)
324 "Use COMMAND to retrieve data into BUFFER from PORT on ADDRESS."
325 (let ((process (or (nntp-find-connection buffer
)
326 (nntp-open-connection buffer
))))
328 (nnheader-report 'nntp
"Couldn't open connection to %s" address
)
329 (unless (or nntp-inhibit-erase nnheader-callback-function
)
331 (set-buffer (process-buffer process
))
334 (nntp-send-string process command
))
336 ((eq callback
'ignore
)
338 ((and callback wait-for
)
340 (set-buffer (process-buffer process
))
341 (unless nntp-inside-change-function
343 (setq nntp-process-decode decode
344 nntp-process-to-buffer buffer
345 nntp-process-wait-for wait-for
346 nntp-process-callback callback
347 nntp-process-start-point
(point-max)
348 after-change-functions
349 (list 'nntp-after-change-function-callback
)))
352 (nntp-wait-for process wait-for buffer decode
))
355 (defsubst nntp-send-command
(wait-for &rest strings
)
356 "Send STRINGS to server and wait until WAIT-FOR returns."
357 (when (and (not nnheader-callback-function
)
358 (not nntp-inhibit-output
))
360 (set-buffer nntp-server-buffer
)
363 (mapconcat 'identity strings
" ")
364 nntp-address nntp-port-number nntp-server-buffer
365 wait-for nnheader-callback-function
))
367 (defun nntp-send-command-nodelete (wait-for &rest strings
)
368 "Send STRINGS to server and wait until WAIT-FOR returns."
370 (mapconcat 'identity strings
" ")
371 nntp-address nntp-port-number nntp-server-buffer
372 wait-for nnheader-callback-function
))
374 (defun nntp-send-command-and-decode (wait-for &rest strings
)
375 "Send STRINGS to server and wait until WAIT-FOR returns."
376 (when (and (not nnheader-callback-function
)
377 (not nntp-inhibit-output
))
379 (set-buffer nntp-server-buffer
)
382 (mapconcat 'identity strings
" ")
383 nntp-address nntp-port-number nntp-server-buffer
384 wait-for nnheader-callback-function t
))
386 (defun nntp-send-buffer (wait-for)
387 "Send the current buffer to server and wait until WAIT-FOR returns."
388 (when (and (not nnheader-callback-function
)
389 (not nntp-inhibit-output
))
391 (set-buffer (nntp-find-connection-buffer nntp-server-buffer
))
394 (process-send-region (nntp-find-connection nntp-server-buffer
)
395 (point-min) (point-max))
397 nil nntp-address nntp-port-number nntp-server-buffer
398 wait-for nnheader-callback-function
))
402 ;;; Interface functions.
404 (nnoo-define-basics nntp
)
406 (defsubst nntp-next-result-arrived-p
()
408 ;; A result that starts with a 2xx code is terminated by
409 ;; a line with only a "." on it.
410 ((eq (following-char) ?
2)
411 (if (re-search-forward "\n\\.\r?\n" nil t
)
414 ;; A result that starts with a 3xx or 4xx code is terminated
417 (if (search-forward "\n" nil t
)
424 (deffoo nntp-retrieve-headers
(articles &optional group server fetch-old
)
425 "Retrieve the headers of ARTICLES."
426 (nntp-possibly-change-group group server
)
428 (set-buffer (nntp-find-connection-buffer nntp-server-buffer
))
430 (if (and (not gnus-nov-is-evil
)
431 (not nntp-nov-is-evil
)
432 (nntp-retrieve-headers-with-xover articles fetch-old
))
433 ;; We successfully retrieved the headers via XOVER.
435 ;; XOVER didn't work, so we do it the hard, slow and inefficient
437 (let ((number (length articles
))
440 (last-point (point-min))
441 (buf (nntp-find-connection-buffer nntp-server-buffer
))
442 (nntp-inhibit-erase t
)
444 ;; Send HEAD commands.
445 (while (setq article
(pop articles
))
448 "HEAD" (if (numberp article
)
449 (int-to-string article
)
450 ;; `articles' is either a list of article numbers
451 ;; or a list of article IDs.
454 ;; Every 400 requests we have to read the stream in
455 ;; order to avoid deadlocks.
456 (when (or (null articles
) ;All requests have been sent.
457 (zerop (% count nntp-maximum-request
)))
458 (nntp-accept-response)
461 (goto-char last-point
)
463 (while (nntp-next-result-arrived-p)
464 (setq last-point
(point))
467 ;; If number of headers is greater than 100, give
468 ;; informative messages.
469 (and (numberp nntp-large-newsgroup
)
470 (> number nntp-large-newsgroup
)
471 (zerop (% received
20))
472 (nnheader-message 6 "NNTP: Receiving headers... %d%%"
473 (/ (* received
100) number
)))
474 (nntp-accept-response))))
475 (and (numberp nntp-large-newsgroup
)
476 (> number nntp-large-newsgroup
)
477 (nnheader-message 6 "NNTP: Receiving headers...done"))
479 ;; Now all of replies are received. Fold continuation lines.
480 (nnheader-fold-continuation-lines)
481 ;; Remove all "\r"'s.
483 (copy-to-buffer nntp-server-buffer
(point-min) (point-max))
486 (deffoo nntp-retrieve-groups
(groups &optional server
)
487 "Retrieve group info on GROUPS."
488 (nntp-possibly-change-group nil server
)
490 (set-buffer (nntp-find-connection-buffer nntp-server-buffer
))
491 ;; The first time this is run, this variable is `try'. So we
493 (when (eq nntp-server-list-active-group
'try
)
494 (nntp-try-list-active (car groups
)))
498 (last-point (point-min))
499 (nntp-inhibit-erase t
)
500 (command (if nntp-server-list-active-group
"LIST ACTIVE" "GROUP")))
502 ;; Send the command to the server.
503 (nntp-send-command nil command
(pop groups
))
505 ;; Every 400 requests we have to read the stream in
506 ;; order to avoid deadlocks.
507 (when (or (null groups
) ;All requests have been sent.
508 (zerop (% count nntp-maximum-request
)))
509 (nntp-accept-response)
511 (goto-char last-point
)
513 (while (re-search-forward "^[0-9]" nil t
)
515 (setq last-point
(point))
517 (nntp-accept-response))))
519 ;; Wait for the reply from the final command.
520 (goto-char (point-max))
521 (re-search-backward "^[0-9]" nil t
)
522 (when (looking-at "^[23]")
524 (goto-char (point-max))
525 (if (not nntp-server-list-active-group
)
526 (not (re-search-backward "\r?\n" (- (point) 3) t
))
527 (not (re-search-backward "^\\.\r?\n" (- (point) 4) t
))))
528 (nntp-accept-response)))
530 ;; Now all replies are received. We remove CRs.
531 (goto-char (point-min))
532 (while (search-forward "\r" nil t
)
533 (replace-match "" t t
))
535 (if (not nntp-server-list-active-group
)
537 (copy-to-buffer nntp-server-buffer
(point-min) (point-max))
539 ;; We have read active entries, so we just delete the
541 (goto-char (point-min))
542 (while (re-search-forward "^[.2-5]" nil t
)
543 (delete-region (match-beginning 0)
544 (progn (forward-line 1) (point))))
545 (copy-to-buffer nntp-server-buffer
(point-min) (point-max))
548 (deffoo nntp-retrieve-articles
(articles &optional group server
)
549 (nntp-possibly-change-group group server
)
551 (let ((number (length articles
))
554 (last-point (point-min))
555 (buf (nntp-find-connection-buffer nntp-server-buffer
))
556 (nntp-inhibit-erase t
)
557 (map (apply 'vector articles
))
562 ;; Send ARTICLE command.
563 (while (setq article
(pop articles
))
566 "ARTICLE" (if (numberp article
)
567 (int-to-string article
)
568 ;; `articles' is either a list of article numbers
569 ;; or a list of article IDs.
572 ;; Every 400 requests we have to read the stream in
573 ;; order to avoid deadlocks.
574 (when (or (null articles
) ;All requests have been sent.
575 (zerop (% count nntp-maximum-request
)))
576 (nntp-accept-response)
579 (goto-char last-point
)
581 (while (nntp-next-result-arrived-p)
582 (aset map received
(cons (aref map received
) (point)))
583 (setq last-point
(point))
586 ;; If number of headers is greater than 100, give
587 ;; informative messages.
588 (and (numberp nntp-large-newsgroup
)
589 (> number nntp-large-newsgroup
)
590 (zerop (% received
20))
591 (nnheader-message 6 "NNTP: Receiving articles... %d%%"
592 (/ (* received
100) number
)))
593 (nntp-accept-response))))
594 (and (numberp nntp-large-newsgroup
)
595 (> number nntp-large-newsgroup
)
596 (nnheader-message 6 "NNTP: Receiving articles...done"))
598 ;; Now we have all the responses. We go through the results,
599 ;; wash it and copy it over to the server buffer.
600 (set-buffer nntp-server-buffer
)
602 (setq last-point
(point-min))
606 (setq point
(goto-char (point-max)))
608 (insert-buffer-substring buf last-point
(cdr entry
))
610 (setq last-point
(cdr entry
))
613 (cons (car entry
) point
))
616 (defun nntp-try-list-active (group)
617 (nntp-list-active-group group
)
619 (set-buffer nntp-server-buffer
)
620 (goto-char (point-min))
622 (looking-at "5[0-9]+"))
623 (setq nntp-server-list-active-group nil
))
625 (setq nntp-server-list-active-group t
)))))
627 (deffoo nntp-list-active-group
(group &optional server
)
628 "Return the active info on GROUP (which can be a regexp."
629 (nntp-possibly-change-group nil server
)
630 (nntp-send-command "^.*\r?\n" "LIST ACTIVE" group
))
632 (deffoo nntp-request-article
(article &optional group server buffer command
)
633 (nntp-possibly-change-group group server
)
634 (when (nntp-send-command-and-decode
635 "\r?\n\\.\r?\n" "ARTICLE"
636 (if (numberp article
) (int-to-string article
) article
))
638 (not (equal buffer nntp-server-buffer
)))
640 (set-buffer nntp-server-buffer
)
641 (copy-to-buffer buffer
(point-min) (point-max))
642 (nntp-find-group-and-number))
643 (nntp-find-group-and-number))))
645 (deffoo nntp-request-head
(article &optional group server
)
646 (nntp-possibly-change-group group server
)
647 (when (nntp-send-command
648 "\r?\n\\.\r?\n" "HEAD"
649 (if (numberp article
) (int-to-string article
) article
))
651 (nntp-find-group-and-number)
652 (nntp-decode-text))))
654 (deffoo nntp-request-body
(article &optional group server
)
655 (nntp-possibly-change-group group server
)
656 (nntp-send-command-and-decode
657 "\r?\n\\.\r?\n" "BODY"
658 (if (numberp article
) (int-to-string article
) article
)))
660 (deffoo nntp-request-group
(group &optional server dont-check
)
661 (nntp-possibly-change-group nil server
)
662 (when (nntp-send-command "^[245].*\n" "GROUP" group
)
663 (let ((entry (nntp-find-connection-entry nntp-server-buffer
)))
664 (setcar (cddr entry
) group
))))
666 (deffoo nntp-close-group
(group &optional server
)
669 (deffoo nntp-server-opened
(&optional server
)
670 "Say whether a connection to SERVER has been opened."
671 (and (nnoo-current-server-p 'nntp server
)
673 (gnus-buffer-live-p nntp-server-buffer
)
674 (nntp-find-connection nntp-server-buffer
)))
676 (deffoo nntp-open-server
(server &optional defs connectionless
)
677 (nnheader-init-server-buffer)
678 (if (nntp-server-opened server
)
680 (when (or (stringp (car defs
))
681 (numberp (car defs
)))
682 (setq defs
(cons (list 'nntp-port-number
(car defs
)) (cdr defs
))))
683 (unless (assq 'nntp-address defs
)
684 (setq defs
(append defs
(list (list 'nntp-address server
)))))
685 (nnoo-change-server 'nntp server defs
)
686 (unless connectionless
687 (or (nntp-find-connection nntp-server-buffer
)
688 (nntp-open-connection nntp-server-buffer
)))))
690 (deffoo nntp-close-server
(&optional server
)
691 (nntp-possibly-change-group nil server t
)
692 (let ((process (nntp-find-connection nntp-server-buffer
)))
694 (when (memq (process-status process
) '(open run
))
696 (nntp-send-string process
"QUIT")
697 (unless (eq nntp-open-connection-function
'nntp-open-network-stream
)
698 ;; Ok, this is evil, but when using telnet and stuff
699 ;; as the connection method, it's important that the
700 ;; QUIT command actually is sent out before we kill
703 (when (buffer-name (process-buffer process
))
704 (kill-buffer (process-buffer process
)))
705 (setq process
(car (pop nntp-connection-alist
))))
706 (nnoo-close-server 'nntp
)))
708 (deffoo nntp-request-close
()
710 (while (setq process
(pop nntp-connection-list
))
711 (when (memq (process-status process
) '(open run
))
713 (nntp-send-string process
"QUIT")
714 (unless (eq nntp-open-connection-function
'nntp-open-network-stream
)
715 ;; Ok, this is evil, but when using telnet and stuff
716 ;; as the connection method, it's important that the
717 ;; QUIT command actually is sent out before we kill
720 (when (buffer-name (process-buffer process
))
721 (kill-buffer (process-buffer process
))))))
723 (deffoo nntp-request-list
(&optional server
)
724 (nntp-possibly-change-group nil server
)
725 (nntp-send-command-and-decode "\r?\n\\.\r?\n" "LIST"))
727 (deffoo nntp-request-list-newsgroups
(&optional server
)
728 (nntp-possibly-change-group nil server
)
729 (nntp-send-command "\r?\n\\.\r?\n" "LIST NEWSGROUPS"))
731 (deffoo nntp-request-newgroups
(date &optional server
)
732 (nntp-possibly-change-group nil server
)
734 (set-buffer nntp-server-buffer
)
737 "^\\.\r?\n" "NEWGROUPS"
738 (format-time-string "%y%m%d %H%M%S" (nnmail-date-to-time date
)))
739 (nntp-decode-text))))
741 (deffoo nntp-request-post
(&optional server
)
742 (nntp-possibly-change-group nil server
)
743 (when (nntp-send-command "^[23].*\r?\n" "POST")
744 (nntp-send-buffer "^[23].*\n")))
746 (deffoo nntp-request-type
(group article
)
749 (deffoo nntp-asynchronous-p
()
754 (defun nntp-send-mode-reader ()
755 "Send the MODE READER command to the nntp server.
756 This function is supposed to be called from `nntp-server-opened-hook'.
757 It will make innd servers spawn an nnrpd process to allow actual article
759 (nntp-send-command "^.*\r?\n" "MODE READER"))
761 (defun nntp-send-authinfo (&optional send-if-force
)
762 "Send the AUTHINFO to the nntp server.
763 It will look in the \"~/.authinfo\" file for matching entries. If
764 nothing suitable is found there, it will prompt for a user name
767 If SEND-IF-FORCE, only send authinfo to the server if the
768 .authinfo file has the FORCE token."
769 (let* ((list (gnus-parse-netrc nntp-authinfo-file
))
770 (alist (gnus-netrc-machine list nntp-address
))
771 (force (gnus-netrc-get alist
"force"))
772 (user (or (gnus-netrc-get alist
"login") nntp-authinfo-user
))
773 (passwd (gnus-netrc-get alist
"password")))
774 (when (or (not send-if-force
)
777 (setq user
(read-string (format "NNTP (%s) user name: " nntp-address
))
778 nntp-authinfo-user user
))
779 (unless (member user
'(nil ""))
780 (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" user
)
781 (when t
;???Should check if AUTHINFO succeeded
783 "^2.*\r?\n" "AUTHINFO PASS"
785 nntp-authinfo-password
786 (setq nntp-authinfo-password
787 (nnmail-read-passwd (format "NNTP (%s@%s) password: "
788 user nntp-address
))))))))))
790 (defun nntp-send-nosy-authinfo ()
791 "Send the AUTHINFO to the nntp server."
792 (let ((user (read-string (format "NNTP (%s) user name: " nntp-address
))))
793 (unless (member user
'(nil ""))
794 (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" user
)
795 (when t
;???Should check if AUTHINFO succeeded
796 (nntp-send-command "^2.*\r?\n" "AUTHINFO PASS"
797 (nnmail-read-passwd "NNTP (%s@%s) password: "
798 user nntp-address
))))))
800 (defun nntp-send-authinfo-from-file ()
801 "Send the AUTHINFO to the nntp server.
803 The authinfo login name is taken from the user's login name and the
804 password contained in '~/.nntp-authinfo'."
805 (when (file-exists-p "~/.nntp-authinfo")
806 (nnheader-temp-write nil
807 (insert-file-contents "~/.nntp-authinfo")
808 (goto-char (point-min))
809 (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" (user-login-name))
811 "^2.*\r?\n" "AUTHINFO PASS"
812 (buffer-substring (point) (progn (end-of-line) (point)))))))
814 ;;; Internal functions.
816 (defun nntp-handle-authinfo (process)
817 "Take care of an authinfo response from the server."
818 (let ((last nntp-last-command
))
819 (funcall nntp-authinfo-function
)
820 ;; We have to re-send the function that was interrupted by
821 ;; the authinfo request.
823 (set-buffer nntp-server-buffer
)
825 (nntp-send-string process last
)))
827 (defun nntp-make-process-buffer (buffer)
828 "Create a new, fresh buffer usable for nntp process connections."
832 (format " *server %s %s %s*"
833 nntp-address nntp-port-number
834 (gnus-buffer-exists-p buffer
))))
835 (buffer-disable-undo (current-buffer))
836 (set (make-local-variable 'after-change-functions
) nil
)
837 (set (make-local-variable 'nntp-process-wait-for
) nil
)
838 (set (make-local-variable 'nntp-process-callback
) nil
)
839 (set (make-local-variable 'nntp-process-to-buffer
) nil
)
840 (set (make-local-variable 'nntp-process-start-point
) nil
)
841 (set (make-local-variable 'nntp-process-decode
) nil
)
844 (defun nntp-open-connection (buffer)
845 "Open a connection to PORT on ADDRESS delivering output to BUFFER."
846 (run-hooks 'nntp-prepare-server-hook
)
847 (let* ((pbuffer (nntp-make-process-buffer buffer
))
849 (and nntp-connection-timeout
850 (nnheader-run-at-time
851 nntp-connection-timeout nil
853 (when (buffer-name ,pbuffer
)
854 (kill-buffer ,pbuffer
))))))
857 (let ((coding-system-for-read nntp-coding-system-for-read
)
858 (coding-system-for-write nntp-coding-system-for-write
))
859 (funcall nntp-open-connection-function pbuffer
))
863 (nnheader-cancel-timer timer
))
864 (when (and (buffer-name pbuffer
)
866 (process-kill-without-query process
)
867 (nntp-wait-for process
"^.*\n" buffer nil t
)
868 (if (memq (process-status process
) '(open run
))
870 (caar (push (list process buffer nil
) nntp-connection-alist
))
871 (push process nntp-connection-list
)
874 (nntp-read-server-type)
876 (set-buffer nntp-server-buffer
)
877 (let ((nnheader-callback-function nil
))
878 (run-hooks 'nntp-server-opened-hook
)
879 (nntp-send-authinfo t
))))
880 (when (buffer-name (process-buffer process
))
881 (kill-buffer (process-buffer process
)))
884 (defun nntp-open-network-stream (buffer)
885 (open-network-stream "nntpd" buffer nntp-address nntp-port-number
))
887 (defun nntp-open-ssl-stream (buffer)
888 (let* ((ssl-program-arguments '("-connect" (concat host
":" service
)))
889 (proc (open-ssl-stream "nntpd" buffer nntp-address nntp-port-number
)))
892 (nntp-wait-for-string "^\r*20[01]")
894 (delete-region (point-min) (point))
897 (defun nntp-read-server-type ()
898 "Find out what the name of the server we have connected to is."
899 ;; Wait for the status string to arrive.
900 (setq nntp-server-type
(buffer-string))
901 (let ((alist nntp-server-action-alist
)
904 ;; Run server-specific commands.
906 (setq entry
(pop alist
))
907 (when (string-match (car entry
) nntp-server-type
)
908 (if (and (listp (cadr entry
))
909 (not (eq 'lambda
(caadr entry
))))
911 (funcall (cadr entry
)))))))
913 (defun nntp-after-change-function-callback (beg end len
)
914 (when nntp-process-callback
916 (if (and (= beg
(point-min))
917 (memq (char-after beg
) '(?
4 ?
5)))
918 ;; Report back error messages.
921 (if (looking-at "480")
922 (nntp-handle-authinfo nntp-process-to-buffer
)
923 (nntp-snarf-error-message)
924 (funcall nntp-process-callback nil
)))
926 (when (and (> (point) nntp-process-start-point
)
927 (re-search-backward nntp-process-wait-for
928 nntp-process-start-point t
))
929 (when (gnus-buffer-exists-p nntp-process-to-buffer
)
930 (let ((cur (current-buffer))
931 (start nntp-process-start-point
))
933 (set-buffer nntp-process-to-buffer
)
934 (goto-char (point-max))
936 (insert-buffer-substring cur start
)
937 (narrow-to-region b
(point-max))
941 (let ((callback nntp-process-callback
)
942 (nntp-inside-change-function t
))
943 (setq nntp-process-callback nil
)
945 (funcall callback
(buffer-name
946 (get-buffer nntp-process-to-buffer
))))))))))
948 (defun nntp-snarf-error-message ()
949 "Save the error message in the current buffer."
950 (let ((message (buffer-string)))
951 (while (string-match "[\r\n]+" message
)
952 (setq message
(replace-match " " t t message
)))
953 (nnheader-report 'nntp message
)
956 (defun nntp-accept-process-output (process)
957 "Wait for output from PROCESS and message some dots."
959 (set-buffer (or (nntp-find-connection-buffer nntp-server-buffer
)
961 (let ((len (/ (point-max) 1024))
964 (setq nntp-have-messaged t
)
965 (nnheader-message 7 "nntp read: %dk" len
)))
966 (accept-process-output process
1)))
968 (defun nntp-accept-response ()
969 "Wait for output from the process that outputs to BUFFER."
970 (nntp-accept-process-output (nntp-find-connection nntp-server-buffer
)))
972 (defun nntp-possibly-change-group (group server
&optional connectionless
)
973 (let ((nnheader-callback-function nil
))
975 (or (nntp-server-opened server
)
976 (nntp-open-server server nil connectionless
)))
978 (unless connectionless
979 (or (nntp-find-connection nntp-server-buffer
)
980 (nntp-open-connection nntp-server-buffer
))))
983 (let ((entry (nntp-find-connection-entry nntp-server-buffer
)))
984 (when (not (equal group
(caddr entry
)))
986 (set-buffer (process-buffer (car entry
)))
988 (nntp-send-string (car entry
) (concat "GROUP " group
))
989 ;; allow for unexpected responses, since this can be called
990 ;; from a timer with quit inhibited
991 (nntp-wait-for-string "^[245].*\n")
992 (setcar (cddr entry
) group
)
995 (defun nntp-decode-text (&optional cr-only
)
996 "Decode the text in the current buffer."
997 (goto-char (point-min))
998 (while (search-forward "\r" nil t
)
1001 ;; Remove trailing ".\n" end-of-transfer marker.
1002 (goto-char (point-max))
1004 (when (looking-at ".\n")
1006 ;; Delete status line.
1007 (goto-char (point-min))
1008 (delete-region (point) (progn (forward-line 1) (point)))
1009 ;; Remove "." -> ".." encoding.
1010 (while (search-forward "\n.." nil t
)
1013 (defun nntp-encode-text ()
1014 "Encode the text in the current buffer."
1016 ;; Replace "." at beginning of line with "..".
1017 (goto-char (point-min))
1018 (while (re-search-forward "^\\." nil t
)
1020 (goto-char (point-max))
1021 ;; Insert newline at the end of the buffer.
1024 ;; Insert `.' at end of buffer (end of text mark).
1025 (goto-char (point-max))
1027 (goto-char (point-min))
1031 (insert nntp-end-of-line
))))
1033 (defun nntp-retrieve-headers-with-xover (articles &optional fetch-old
)
1034 (set-buffer nntp-server-buffer
)
1038 ;; This server does not talk NOV.
1039 ((not nntp-server-xover
)
1042 ;; We don't care about gaps.
1043 ((or (not nntp-nov-gap
)
1045 (nntp-send-xover-command
1047 (if (numberp fetch-old
)
1048 (max 1 (- (car articles
) fetch-old
))
1051 (car (last articles
)) 'wait
)
1053 (goto-char (point-min))
1054 (when (looking-at "[1-5][0-9][0-9] ")
1055 (delete-region (point) (progn (forward-line 1) (point))))
1056 (while (search-forward "\r" nil t
)
1057 (replace-match "" t t
))
1058 (goto-char (point-max))
1060 (when (looking-at "\\.")
1061 (delete-region (point) (progn (forward-line 1) (point)))))
1063 ;; We do it the hard way. For each gap, an XOVER command is sent
1064 ;; to the server. We do not wait for a reply from the server, we
1065 ;; just send them off as fast as we can. That means that we have
1066 ;; to count the number of responses we get back to find out when we
1067 ;; have gotten all we asked for.
1068 ((numberp nntp-nov-gap
)
1071 (last-point (point-min))
1072 (buf nntp-server-buffer
)
1073 ;;(process-buffer (nntp-find-connection (current-buffer))))
1075 ;; We have to check `nntp-server-xover'. If it gets set to nil,
1076 ;; that means that the server does not understand XOVER, but we
1077 ;; won't know that until we try.
1078 (while (and nntp-server-xover articles
)
1079 (setq first
(car articles
))
1080 ;; Search forward until we find a gap, or until we run out of
1082 (while (and (cdr articles
)
1083 (< (- (nth 1 articles
) (car articles
)) nntp-nov-gap
))
1084 (setq articles
(cdr articles
)))
1086 (when (nntp-send-xover-command first
(car articles
))
1087 (setq articles
(cdr articles
)
1090 ;; Every 400 requests we have to read the stream in
1091 ;; order to avoid deadlocks.
1092 (when (or (null articles
) ;All requests have been sent.
1093 (zerop (% count nntp-maximum-request
)))
1094 (accept-process-output)
1095 ;; On some Emacs versions the preceding function has
1096 ;; a tendency to change the buffer. Perhaps. It's
1097 ;; quite difficult to reproduce, because it only
1098 ;; seems to happen once in a blue moon.
1101 (goto-char last-point
)
1103 (while (re-search-forward "^[0-9][0-9][0-9] " nil t
)
1104 (setq received
(1+ received
)))
1105 (setq last-point
(point))
1107 (accept-process-output)
1108 (set-buffer buf
)))))
1110 (when nntp-server-xover
1111 ;; Wait for the reply from the final command.
1112 (goto-char (point-max))
1113 (re-search-backward "^[0-9][0-9][0-9] " nil t
)
1114 (when (looking-at "^[23]")
1116 (goto-char (point-max))
1118 (not (looking-at "^\\.\r?\n")))
1119 (nntp-accept-response)))
1121 ;; We remove any "." lines and status lines.
1122 (goto-char (point-min))
1123 (while (search-forward "\r" nil t
)
1125 (goto-char (point-min))
1126 (delete-matching-lines "^\\.$\\|^[1-5][0-9][0-9] ")
1127 ;;(copy-to-buffer nntp-server-buffer (point-min) (point-max))
1132 (defun nntp-send-xover-command (beg end
&optional wait-for-reply
)
1133 "Send the XOVER command to the server."
1134 (let ((range (format "%d-%d" beg end
))
1135 (nntp-inhibit-erase t
))
1136 (if (stringp nntp-server-xover
)
1137 ;; If `nntp-server-xover' is a string, then we just send this
1140 (nntp-send-command-nodelete
1141 "\r?\n\\.\r?\n" nntp-server-xover range
)
1142 ;; We do not wait for the reply.
1143 (nntp-send-command-nodelete "\r?\n\\.\r?\n" nntp-server-xover range
))
1144 (let ((commands nntp-xover-commands
))
1145 ;; `nntp-xover-commands' is a list of possible XOVER commands.
1146 ;; We try them all until we get at positive response.
1147 (while (and commands
(eq nntp-server-xover
'try
))
1148 (nntp-send-command-nodelete "\r?\n\\.\r?\n" (car commands
) range
)
1150 (set-buffer nntp-server-buffer
)
1151 (goto-char (point-min))
1152 (and (looking-at "[23]") ; No error message.
1153 ;; We also have to look at the lines. Some buggy
1154 ;; servers give back simple lines with just the
1155 ;; article number. How... helpful.
1158 (looking-at "[0-9]+\t...")) ; More text after number.
1159 (setq nntp-server-xover
(car commands
))))
1160 (setq commands
(cdr commands
)))
1161 ;; If none of the commands worked, we disable XOVER.
1162 (when (eq nntp-server-xover
'try
)
1164 (set-buffer nntp-server-buffer
)
1166 (setq nntp-server-xover nil
)))
1167 nntp-server-xover
))))
1169 ;;; Alternative connection methods.
1171 (defun nntp-wait-for-string (regexp)
1172 "Wait until string arrives in the buffer."
1173 (let ((buf (current-buffer)))
1174 (goto-char (point-min))
1175 (while (not (re-search-forward regexp nil t
))
1176 (accept-process-output (nntp-find-connection nntp-server-buffer
))
1178 (goto-char (point-min)))))
1180 (defun nntp-open-telnet (buffer)
1186 "nntpd" buffer nntp-telnet-command nntp-telnet-switches
))
1187 (case-fold-search t
))
1188 (when (memq (process-status proc
) '(open run
))
1189 (process-send-string proc
"set escape \^X\n")
1191 ((and nntp-open-telnet-envuser nntp-telnet-user-name
)
1192 (process-send-string proc
(concat "open " "-l" nntp-telnet-user-name
1193 nntp-address
"\n")))
1195 (process-send-string proc
(concat "open " nntp-address
"\n"))))
1197 ((not nntp-open-telnet-envuser
)
1198 (nntp-wait-for-string "^\r*.?login:")
1199 (process-send-string
1201 (or nntp-telnet-user-name
1202 (setq nntp-telnet-user-name
(read-string "login: ")))
1204 (nntp-wait-for-string "^\r*.?password:")
1205 (process-send-string
1207 (or nntp-telnet-passwd
1208 (setq nntp-telnet-passwd
1209 (nnmail-read-passwd "Password: ")))
1212 (nntp-wait-for-string nntp-telnet-shell-prompt
)
1213 (process-send-string
1214 proc
(concat (mapconcat 'identity nntp-telnet-parameters
" ") "\n"))
1215 (nntp-wait-for-string "^\r*20[01]")
1217 (delete-region (point-min) (point))
1218 (process-send-string proc
"\^]")
1219 (nntp-wait-for-string "^telnet")
1220 (process-send-string proc
"mode character\n")
1221 (accept-process-output proc
1)
1223 (goto-char (point-min))
1225 (delete-region (point) (point-max)))
1228 (defun nntp-open-rlogin (buffer)
1229 "Open a connection to SERVER using rsh."
1230 (let ((proc (if nntp-rlogin-user-name
1231 (apply 'start-process
1232 "nntpd" buffer nntp-rlogin-program
1233 nntp-address
"-l" nntp-rlogin-user-name
1234 nntp-rlogin-parameters
)
1235 (apply 'start-process
1236 "nntpd" buffer nntp-rlogin-program nntp-address
1237 nntp-rlogin-parameters
))))
1240 (nntp-wait-for-string "^\r*20[01]")
1242 (delete-region (point-min) (point))
1245 (defun nntp-find-group-and-number ()
1248 (set-buffer nntp-server-buffer
)
1249 (narrow-to-region (goto-char (point-min))
1250 (or (search-forward "\n\n" nil t
) (point-max)))
1251 (goto-char (point-min))
1252 ;; We first find the number by looking at the status line.
1253 (let ((number (and (looking-at "2[0-9][0-9] +\\([0-9]+\\) ")
1255 (buffer-substring (match-beginning 1)
1257 group newsgroups xref
)
1258 (and number
(zerop number
) (setq number nil
))
1259 ;; Then we find the group name.
1262 ;; If there is only one group in the Newsgroups header,
1263 ;; then it seems quite likely that this article comes
1264 ;; from that group, I'd say.
1265 ((and (setq newsgroups
(mail-fetch-field "newsgroups"))
1266 (not (string-match "," newsgroups
)))
1268 ;; If there is more than one group in the Newsgroups
1269 ;; header, then the Xref header should be filled out.
1270 ;; We hazard a guess that the group that has this
1271 ;; article number in the Xref header is the one we are
1272 ;; looking for. This might very well be wrong if this
1273 ;; article happens to have the same number in several
1274 ;; groups, but that's life.
1275 ((and (setq xref
(mail-fetch-field "xref"))
1277 (string-match (format "\\([^ :]+\\):%d" number
) xref
))
1278 (substring xref
(match-beginning 1) (match-end 1)))
1280 (when (string-match "\r" group
)
1281 (setq group
(substring group
0 (match-beginning 0))))
1282 (cons group number
)))))
1286 ;;; nntp.el ends here