]> code.delx.au - gnu-emacs/blob - lisp/gnus/nntp.el
Merge changes made in Gnus trunk.
[gnu-emacs] / lisp / gnus / nntp.el
1 ;;; nntp.el --- nntp access for Gnus
2
3 ;; Copyright (C) 1987-1990, 1992-1998, 2000-2011
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: Lars Magne Ingebrigtsen <larsi@gnus.org>
7 ;; Keywords: news
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 ;; For Emacs <22.2 and XEmacs.
29 (eval-and-compile
30 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r)))
31 ;; In Emacs 24, `open-protocol-stream' is an autoloaded alias for
32 ;; `make-network-stream'.
33 (unless (fboundp 'open-protocol-stream)
34 (require 'proto-stream)))
35
36 (require 'nnheader)
37 (require 'nnoo)
38 (require 'gnus-util)
39 (require 'gnus)
40 (require 'gnus-group) ;; gnus-group-name-charset
41
42 (nnoo-declare nntp)
43
44 (eval-when-compile (require 'cl))
45
46 (autoload 'auth-source-search "auth-source")
47
48 (defgroup nntp nil
49 "NNTP access for Gnus."
50 :group 'gnus)
51
52 (defvoo nntp-address nil
53 "Address of the physical nntp server.")
54
55 (defvoo nntp-port-number "nntp"
56 "Port number on the physical nntp server.")
57
58 (defvoo nntp-server-opened-hook '(nntp-send-mode-reader)
59 "*Hook used for sending commands to the server at startup.
60 The default value is `nntp-send-mode-reader', which makes an innd
61 server spawn an nnrpd server.")
62
63 (defvoo nntp-authinfo-function 'nntp-send-authinfo
64 "Function used to send AUTHINFO to the server.
65 It is called with no parameters.")
66
67 (defvoo nntp-server-action-alist
68 '(("nntpd 1\\.5\\.11t"
69 (remove-hook 'nntp-server-opened-hook 'nntp-send-mode-reader))
70 ("NNRP server Netscape"
71 (setq nntp-server-list-active-group nil)))
72 "Alist of regexps to match on server types and actions to be taken.
73 For instance, if you want Gnus to beep every time you connect
74 to innd, you could say something like:
75
76 \(setq nntp-server-action-alist
77 '((\"innd\" (ding))))
78
79 You probably don't want to do that, though.")
80
81 (defvoo nntp-open-connection-function 'nntp-open-network-stream
82 "Method for connecting to a remote system.
83 It should be a function, which is called with the output buffer
84 as its single argument, or one of the following special values:
85
86 - `nntp-open-network-stream' specifies a network connection,
87 upgrading to a TLS connection via STARTTLS if possible.
88 - `nntp-open-plain-stream' specifies an unencrypted network
89 connection (no STARTTLS upgrade is attempted).
90 - `nntp-open-ssl-stream' or `nntp-open-tls-stream' specify a TLS
91 network connection.
92
93 Apart from the above special values, valid functions are as
94 follows; please refer to their respective doc string for more
95 information.
96 For direct connections:
97 - `nntp-open-netcat-stream'
98 - `nntp-open-telnet-stream'
99 For indirect connections:
100 - `nntp-open-via-rlogin-and-netcat'
101 - `nntp-open-via-rlogin-and-telnet'
102 - `nntp-open-via-telnet-and-telnet'")
103
104 (defvoo nntp-never-echoes-commands nil
105 "*Non-nil means the nntp server never echoes commands.
106 It is reported that some nntps server doesn't echo commands. So, you
107 may want to set this to non-nil in the method for such a server setting
108 `nntp-open-connection-function' to `nntp-open-ssl-stream' for example.
109 Note that the `nntp-open-connection-functions-never-echo-commands'
110 variable overrides the nil value of this variable.")
111
112 (defvoo nntp-open-connection-functions-never-echo-commands
113 '(nntp-open-network-stream)
114 "*List of functions that never echo commands.
115 Add or set a function which you set to `nntp-open-connection-function'
116 to this list if it does not echo commands. Note that a non-nil value
117 of the `nntp-never-echoes-commands' variable overrides this variable.")
118
119 (defvoo nntp-pre-command nil
120 "*Pre-command to use with the various nntp-open-via-* methods.
121 This is where you would put \"runsocks\" or stuff like that.")
122
123 (defvoo nntp-telnet-command "telnet"
124 "*Telnet command used to connect to the nntp server.
125 This command is used by the methods `nntp-open-telnet-stream',
126 `nntp-open-via-rlogin-and-telnet' and `nntp-open-via-telnet-and-telnet'.")
127
128 (defvoo nntp-telnet-switches '("-8")
129 "*Switches given to the telnet command `nntp-telnet-command'.")
130
131 (defvoo nntp-end-of-line "\r\n"
132 "*String to use on the end of lines when talking to the NNTP server.
133 This is \"\\r\\n\" by default, but should be \"\\n\" when using an indirect
134 connection method (nntp-open-via-*).")
135
136 (defvoo nntp-via-rlogin-command "rsh"
137 "*Rlogin command used to connect to an intermediate host.
138 This command is used by the methods `nntp-open-via-rlogin-and-telnet'
139 and `nntp-open-via-rlogin-and-netcat'. The default is \"rsh\", but \"ssh\"
140 is a popular alternative.")
141
142 (defvoo nntp-via-rlogin-command-switches nil
143 "*Switches given to the rlogin command `nntp-via-rlogin-command'.
144 If you use \"ssh\" for `nntp-via-rlogin-command', you may set this to
145 \(\"-C\") in order to compress all data connections, otherwise set this
146 to \(\"-t\" \"-e\" \"none\") or (\"-C\" \"-t\" \"-e\" \"none\") if the telnet
147 command requires a pseudo-tty allocation on an intermediate host.")
148
149 (defvoo nntp-via-telnet-command "telnet"
150 "*Telnet command used to connect to an intermediate host.
151 This command is used by the `nntp-open-via-telnet-and-telnet' method.")
152
153 (defvoo nntp-via-telnet-switches '("-8")
154 "*Switches given to the telnet command `nntp-via-telnet-command'.")
155
156 (defvoo nntp-netcat-command "nc"
157 "*Netcat command used to connect to the nntp server.
158 This command is used by the `nntp-open-netcat-stream' and
159 `nntp-open-via-rlogin-and-netcat' methods.")
160
161 (defvoo nntp-netcat-switches nil
162 "*Switches given to the netcat command `nntp-netcat-command'.")
163
164 (defvoo nntp-via-user-name nil
165 "*User name to log in on an intermediate host with.
166 This variable is used by the various nntp-open-via-* methods.")
167
168 (defvoo nntp-via-user-password nil
169 "*Password to use to log in on an intermediate host with.
170 This variable is used by the `nntp-open-via-telnet-and-telnet' method.")
171
172 (defvoo nntp-via-address nil
173 "*Address of an intermediate host to connect to.
174 This variable is used by the various nntp-open-via-* methods.")
175
176 (defvoo nntp-via-envuser nil
177 "*Whether both telnet client and server support the ENVIRON option.
178 If non-nil, there will be no prompt for a login name.")
179
180 (defvoo nntp-via-shell-prompt "bash\\|\$ *\r?$\\|> *\r?"
181 "*Regular expression to match the shell prompt on an intermediate host.
182 This variable is used by the `nntp-open-via-telnet-and-telnet' method.")
183
184 (defvoo nntp-large-newsgroup 50
185 "*The number of articles which indicates a large newsgroup.
186 If the number of articles is greater than the value, verbose
187 messages will be shown to indicate the current status.")
188
189 (defvoo nntp-maximum-request 400
190 "*The maximum number of the requests sent to the NNTP server at one time.
191 If Emacs hangs up while retrieving headers, set the variable to a
192 lower value.")
193
194 (defvoo nntp-nov-is-evil nil
195 "*If non-nil, nntp will never attempt to use XOVER when talking to the server.")
196
197 (defvoo nntp-xover-commands '("XOVER" "XOVERVIEW")
198 "*List of strings that are used as commands to fetch NOV lines from a server.
199 The strings are tried in turn until a positive response is gotten. If
200 none of the commands are successful, nntp will just grab headers one
201 by one.")
202
203 (defvoo nntp-nov-gap 5
204 "*Maximum allowed gap between two articles.
205 If the gap between two consecutive articles is bigger than this
206 variable, split the XOVER request into two requests.")
207
208 (defvoo nntp-xref-number-is-evil nil
209 "*If non-nil, Gnus never trusts article numbers in the Xref header.
210 Some news servers, e.g., ones running Diablo, run multiple engines
211 having the same articles but article numbers are not kept synchronized
212 between them. If you connect to such a server, set this to a non-nil
213 value, and Gnus never uses article numbers (that appear in the Xref
214 header and vary by which engine is chosen) to refer to articles.")
215
216 (defvoo nntp-prepare-server-hook nil
217 "*Hook run before a server is opened.
218 If can be used to set up a server remotely, for instance. Say you
219 have an account at the machine \"other.machine\". This machine has
220 access to an NNTP server that you can't access locally. You could
221 then use this hook to rsh to the remote machine and start a proxy NNTP
222 server there that you can connect to. See also
223 `nntp-open-connection-function'")
224
225 (defvoo nntp-coding-system-for-read 'binary
226 "*Coding system to read from NNTP.")
227
228 (defvoo nntp-coding-system-for-write 'binary
229 "*Coding system to write to NNTP.")
230
231 ;; Marks
232 (defvoo nntp-marks-is-evil nil
233 "*If non-nil, Gnus will never generate and use marks file for nntp groups.
234 See `nnml-marks-is-evil' for more information.")
235
236 (defvoo nntp-marks-file-name ".marks")
237 (defvoo nntp-marks nil)
238 (defvar nntp-marks-modtime (gnus-make-hashtable))
239
240 (defcustom nntp-marks-directory
241 (nnheader-concat gnus-directory "marks/")
242 "*The directory where marks for nntp groups will be stored."
243 :group 'nntp
244 :type 'directory)
245
246 (defcustom nntp-authinfo-file "~/.authinfo"
247 ".netrc-like file that holds nntp authinfo passwords."
248 :group 'nntp
249 :type
250 '(choice file
251 (repeat :tag "Entries"
252 :menu-tag "Inline"
253 (list :format "%v"
254 :value ("" ("login" . "") ("password" . ""))
255 (string :tag "Host")
256 (checklist :inline t
257 (cons :format "%v"
258 (const :format "" "login")
259 (string :format "Login: %v"))
260 (cons :format "%v"
261 (const :format "" "password")
262 (string :format "Password: %v")))))))
263
264 \f
265
266 (defvoo nntp-connection-timeout nil
267 "*Number of seconds to wait before an nntp connection times out.
268 If this variable is nil, which is the default, no timers are set.
269 NOTE: This variable is never seen to work in Emacs 20 and XEmacs 21.")
270
271 (defvoo nntp-prepare-post-hook nil
272 "*Hook run just before posting an article. It is supposed to be used
273 to insert Cancel-Lock headers.")
274
275 (defvoo nntp-server-list-active-group 'try
276 "If nil, then always use GROUP instead of LIST ACTIVE.
277 This is usually slower, but on misconfigured servers that don't
278 update their active files often, this can help.")
279
280 ;;; Internal variables.
281
282 (defvar nntp-record-commands nil
283 "*If non-nil, nntp will record all commands in the \"*nntp-log*\" buffer.")
284
285 (defvar nntp-have-messaged nil)
286
287 (defvar nntp-process-wait-for nil)
288 (defvar nntp-process-to-buffer nil)
289 (defvar nntp-process-callback nil)
290 (defvar nntp-process-decode nil)
291 (defvar nntp-process-start-point nil)
292 (defvar nntp-inside-change-function nil)
293 (defvoo nntp-last-command-time nil)
294 (defvoo nntp-last-command nil)
295 (defvoo nntp-authinfo-password nil)
296 (defvoo nntp-authinfo-user nil)
297 (defvoo nntp-authinfo-force nil)
298
299 (defvar nntp-connection-list nil)
300
301 (defvoo nntp-server-type nil)
302 (defvoo nntp-connection-alist nil)
303 (defvoo nntp-status-string "")
304 (defconst nntp-version "nntp 5.0")
305 (defvoo nntp-inhibit-erase nil)
306 (defvoo nntp-inhibit-output nil)
307
308 (defvoo nntp-server-xover 'try)
309
310 (defvar nntp-async-timer nil)
311 (defvar nntp-async-process-list nil)
312
313 (defvar nntp-authinfo-rejected nil
314 "A custom error condition used to report 'Authentication Rejected' errors.
315 Condition handlers that match just this condition ensure that the nntp
316 backend doesn't catch this error.")
317 (put 'nntp-authinfo-rejected 'error-conditions '(error nntp-authinfo-rejected))
318 (put 'nntp-authinfo-rejected 'error-message "Authorization Rejected")
319
320 \f
321
322 ;;; Internal functions.
323
324 (defsubst nntp-send-string (process string)
325 "Send STRING to PROCESS."
326 ;; We need to store the time to provide timeouts, and
327 ;; to store the command so the we can replay the command
328 ;; if the server gives us an AUTHINFO challenge.
329 (setq nntp-last-command-time (current-time)
330 nntp-last-command string)
331 (when nntp-record-commands
332 (nntp-record-command string))
333 (process-send-string process (concat string nntp-end-of-line))
334 (or (memq (process-status process) '(open run))
335 (nntp-report "Server closed connection")))
336
337 (defun nntp-record-command (string)
338 "Record the command STRING."
339 (with-current-buffer (get-buffer-create "*nntp-log*")
340 (goto-char (point-max))
341 (let ((time (current-time)))
342 (insert (format-time-string "%Y%m%dT%H%M%S" time)
343 "." (format "%03d" (/ (nth 2 time) 1000))
344 " " nntp-address " " string "\n"))))
345
346 (defun nntp-report (&rest args)
347 "Report an error from the nntp backend. The first string in ARGS
348 can be a format string. For some commands, the failed command may be
349 retried once before actually displaying the error report."
350
351 (when nntp-record-commands
352 (nntp-record-command "*** CALLED nntp-report ***"))
353
354 (nnheader-report 'nntp args)
355
356 (apply 'error args))
357
358 (defun nntp-report-1 (&rest args)
359 "Throws out to nntp-with-open-group-error so that the connection may
360 be restored and the command retried."
361
362 (when nntp-record-commands
363 (nntp-record-command "*** CONNECTION LOST ***"))
364
365 (throw 'nntp-with-open-group-error t))
366
367 (defmacro nntp-insert-buffer-substring (buffer &optional start end)
368 "Copy string from unibyte buffer to multibyte current buffer."
369 (if (featurep 'xemacs)
370 `(insert-buffer-substring ,buffer ,start ,end)
371 `(if enable-multibyte-characters
372 (insert (with-current-buffer ,buffer
373 (mm-string-to-multibyte
374 ,(if (or start end)
375 `(buffer-substring (or ,start (point-min))
376 (or ,end (point-max)))
377 '(buffer-string)))))
378 (insert-buffer-substring ,buffer ,start ,end))))
379
380 (defmacro nntp-copy-to-buffer (buffer start end)
381 "Copy string from unibyte current buffer to multibyte buffer."
382 (if (featurep 'xemacs)
383 `(copy-to-buffer ,buffer ,start ,end)
384 `(let ((string (buffer-substring ,start ,end)))
385 (with-current-buffer ,buffer
386 (erase-buffer)
387 (insert (if enable-multibyte-characters
388 (mm-string-to-multibyte string)
389 string))
390 (goto-char (point-min))
391 nil))))
392
393 (defsubst nntp-wait-for (process wait-for buffer &optional decode discard)
394 "Wait for WAIT-FOR to arrive from PROCESS."
395
396 (with-current-buffer (process-buffer process)
397 (goto-char (point-min))
398
399 (while (and (or (not (memq (char-after (point)) '(?2 ?3 ?4 ?5)))
400 (looking-at "48[02]"))
401 (memq (process-status process) '(open run)))
402 (cond ((looking-at "480")
403 (nntp-handle-authinfo process))
404 ((looking-at "482")
405 (nnheader-report 'nntp "%s"
406 (get 'nntp-authinfo-rejected 'error-message))
407 (signal 'nntp-authinfo-rejected nil))
408 ((looking-at "^.*\n")
409 (delete-region (point) (progn (forward-line 1) (point)))))
410 (nntp-accept-process-output process)
411 (goto-char (point-min)))
412 (prog1
413 (cond
414 ((looking-at "[45]")
415 (progn
416 (nntp-snarf-error-message)
417 nil))
418 ((not (memq (process-status process) '(open run)))
419 (nntp-report "Server closed connection"))
420 (t
421 (goto-char (point-max))
422 (let ((limit (point-min))
423 response)
424 (while (not (re-search-backward wait-for limit t))
425 (nntp-accept-process-output process)
426 ;; We assume that whatever we wait for is less than 1000
427 ;; characters long.
428 (setq limit (max (- (point-max) 1000) (point-min)))
429 (goto-char (point-max)))
430 (setq response (match-string 0))
431 (with-current-buffer nntp-server-buffer
432 (setq nntp-process-response response)))
433 (nntp-decode-text (not decode))
434 (unless discard
435 (with-current-buffer buffer
436 (goto-char (point-max))
437 (nntp-insert-buffer-substring (process-buffer process))
438 ;; Nix out "nntp reading...." message.
439 (when nntp-have-messaged
440 (setq nntp-have-messaged nil)
441 (nnheader-message 5 ""))))
442 t))
443 (unless discard
444 (erase-buffer)))))
445
446 (defun nntp-kill-buffer (buffer)
447 (when (buffer-name buffer)
448 (kill-buffer buffer)
449 (nnheader-init-server-buffer)))
450
451 (defun nntp-erase-buffer (buffer)
452 "Erase contents of BUFFER."
453 (with-current-buffer buffer
454 (erase-buffer)))
455
456 (defsubst nntp-find-connection (buffer)
457 "Find the connection delivering to BUFFER."
458 (let ((alist nntp-connection-alist)
459 (buffer (if (stringp buffer) (get-buffer buffer) buffer))
460 process entry)
461 (while (and alist (setq entry (pop alist)))
462 (when (eq buffer (cadr entry))
463 (setq process (car entry)
464 alist nil)))
465 (when process
466 (if (memq (process-status process) '(open run))
467 process
468 (nntp-kill-buffer (process-buffer process))
469 (setq nntp-connection-alist (delq entry nntp-connection-alist))
470 nil))))
471
472 (defsubst nntp-find-connection-entry (buffer)
473 "Return the entry for the connection to BUFFER."
474 (assq (nntp-find-connection buffer) nntp-connection-alist))
475
476 (defun nntp-find-connection-buffer (buffer)
477 "Return the process connection buffer tied to BUFFER."
478 (let ((process (nntp-find-connection buffer)))
479 (when process
480 (process-buffer process))))
481
482 (defsubst nntp-retrieve-data (command address port buffer
483 &optional wait-for callback decode)
484 "Use COMMAND to retrieve data into BUFFER from PORT on ADDRESS."
485 (let ((process (or (nntp-find-connection buffer)
486 (nntp-open-connection buffer))))
487 (if process
488 (progn
489 (unless (or nntp-inhibit-erase nnheader-callback-function)
490 (nntp-erase-buffer (process-buffer process)))
491 (condition-case err
492 (progn
493 (when command
494 (nntp-send-string process command))
495 (cond
496 ((eq callback 'ignore)
497 t)
498 ((and callback wait-for)
499 (nntp-async-wait process wait-for buffer decode callback)
500 t)
501 (wait-for
502 (nntp-wait-for process wait-for buffer decode))
503 (t t)))
504 (nntp-authinfo-rejected
505 (signal 'nntp-authinfo-rejected (cdr err)))
506 (error
507 (nnheader-report 'nntp "Couldn't open connection to %s: %s"
508 address err))
509 (quit
510 (message "Quit retrieving data from nntp")
511 (signal 'quit nil)
512 nil)))
513 (nnheader-report 'nntp "Couldn't open connection to %s" address))))
514
515 (defsubst nntp-send-command (wait-for &rest strings)
516 "Send STRINGS to server and wait until WAIT-FOR returns."
517 (when (and (not nnheader-callback-function)
518 (not nntp-inhibit-output))
519 (nntp-erase-buffer nntp-server-buffer))
520 (let* ((command (mapconcat 'identity strings " "))
521 (process (nntp-find-connection nntp-server-buffer))
522 (buffer (and process (process-buffer process)))
523 (pos (and buffer (with-current-buffer buffer (point)))))
524 (if process
525 (prog1
526 (nntp-retrieve-data command
527 nntp-address nntp-port-number
528 nntp-server-buffer
529 wait-for nnheader-callback-function)
530 ;; If nothing to wait for, still remove possibly echo'ed commands.
531 ;; We don't have echoes if `nntp-never-echoes-commands' is non-nil
532 ;; or the value of `nntp-open-connection-function' is in
533 ;; `nntp-open-connection-functions-never-echo-commands', so we
534 ;; skip this in that cases.
535 (unless (or wait-for
536 nntp-never-echoes-commands
537 (memq
538 nntp-open-connection-function
539 nntp-open-connection-functions-never-echo-commands))
540 (nntp-accept-response)
541 (with-current-buffer buffer
542 (goto-char pos)
543 (if (looking-at (regexp-quote command))
544 (delete-region pos (progn (forward-line 1)
545 (point-at-bol)))))))
546 (nnheader-report 'nntp "Couldn't open connection to %s."
547 nntp-address))))
548
549 (defun nntp-send-command-nodelete (wait-for &rest strings)
550 "Send STRINGS to server and wait until WAIT-FOR returns."
551 (let* ((command (mapconcat 'identity strings " "))
552 (process (nntp-find-connection nntp-server-buffer))
553 (buffer (and process (process-buffer process)))
554 (pos (and buffer (with-current-buffer buffer (point)))))
555 (if process
556 (prog1
557 (nntp-retrieve-data command
558 nntp-address nntp-port-number
559 nntp-server-buffer
560 wait-for nnheader-callback-function)
561 ;; If nothing to wait for, still remove possibly echo'ed commands
562 (unless wait-for
563 (nntp-accept-response)
564 (with-current-buffer buffer
565 (goto-char pos)
566 (if (looking-at (regexp-quote command))
567 (delete-region pos (progn (forward-line 1)
568 (point-at-bol)))))))
569 (nnheader-report 'nntp "Couldn't open connection to %s."
570 nntp-address))))
571
572 (defun nntp-send-command-and-decode (wait-for &rest strings)
573 "Send STRINGS to server and wait until WAIT-FOR returns."
574 (when (and (not nnheader-callback-function)
575 (not nntp-inhibit-output))
576 (nntp-erase-buffer nntp-server-buffer))
577 (let* ((command (mapconcat 'identity strings " "))
578 (process (nntp-find-connection nntp-server-buffer))
579 (buffer (and process (process-buffer process)))
580 (pos (and buffer (with-current-buffer buffer (point)))))
581 (if process
582 (prog1
583 (nntp-retrieve-data command
584 nntp-address nntp-port-number
585 nntp-server-buffer
586 wait-for nnheader-callback-function t)
587 ;; If nothing to wait for, still remove possibly echo'ed commands
588 (unless wait-for
589 (nntp-accept-response)
590 (with-current-buffer buffer
591 (goto-char pos)
592 (if (looking-at (regexp-quote command))
593 (delete-region pos (progn (forward-line 1) (point-at-bol))))
594 )))
595 (nnheader-report 'nntp "Couldn't open connection to %s."
596 nntp-address))))
597
598
599 (defun nntp-send-buffer (wait-for)
600 "Send the current buffer to server and wait until WAIT-FOR returns."
601 (when (and (not nnheader-callback-function)
602 (not nntp-inhibit-output))
603 (nntp-erase-buffer
604 (nntp-find-connection-buffer nntp-server-buffer)))
605 (nntp-encode-text)
606 ;; Make sure we did not forget to encode some of the content.
607 (assert (save-excursion (goto-char (point-min))
608 (not (re-search-forward "[^\000-\377]" nil t))))
609 (mm-disable-multibyte)
610 (process-send-region (nntp-find-connection nntp-server-buffer)
611 (point-min) (point-max))
612 (nntp-retrieve-data
613 nil nntp-address nntp-port-number nntp-server-buffer
614 wait-for nnheader-callback-function))
615
616 \f
617
618 ;;; Interface functions.
619
620 (nnoo-define-basics nntp)
621
622 (defsubst nntp-next-result-arrived-p ()
623 (cond
624 ;; A result that starts with a 2xx code is terminated by
625 ;; a line with only a "." on it.
626 ((eq (char-after) ?2)
627 (if (re-search-forward "\n\\.\r?\n" nil t)
628 (progn
629 ;; Some broken news servers add another dot at the end.
630 ;; Protect against inflooping there.
631 (while (looking-at "^\\.\r?\n")
632 (forward-line 1))
633 t)
634 nil))
635 ;; A result that starts with a 3xx or 4xx code is terminated
636 ;; by a newline.
637 ((looking-at "[34]")
638 (if (search-forward "\n" nil t)
639 t
640 nil))
641 ;; No result here.
642 (t
643 nil)))
644
645 (eval-when-compile
646 (defvar nntp-with-open-group-internal nil)
647 (defvar nntp-report-n nil))
648
649 (defun nntp-with-open-group-function (-group -server -connectionless -bodyfun)
650 "Protect against servers that don't like clients that keep idle connections opens.
651 The problem being that these servers may either close a connection or
652 simply ignore any further requests on a connection. Closed
653 connections are not detected until `accept-process-output' has updated
654 the `process-status'. Dropped connections are not detected until the
655 connection timeouts (which may be several minutes) or
656 `nntp-connection-timeout' has expired. When these occur
657 `nntp-with-open-group', opens a new connection then re-issues the NNTP
658 command whose response triggered the error."
659 (letf ((nntp-report-n (symbol-function 'nntp-report))
660 ((symbol-function 'nntp-report) (symbol-function 'nntp-report-1))
661 (nntp-with-open-group-internal nil))
662 (while (catch 'nntp-with-open-group-error
663 ;; Open the connection to the server
664 ;; NOTE: Existing connections are NOT tested.
665 (nntp-possibly-change-group -group -server -connectionless)
666
667 (let ((-timer
668 (and nntp-connection-timeout
669 (run-at-time
670 nntp-connection-timeout nil
671 (lambda ()
672 (let* ((-process (nntp-find-connection
673 nntp-server-buffer))
674 (-buffer (and -process
675 (process-buffer -process))))
676 ;; When I an able to identify the
677 ;; connection to the server AND I've
678 ;; received NO reponse for
679 ;; nntp-connection-timeout seconds.
680 (when (and -buffer (eq 0 (buffer-size -buffer)))
681 ;; Close the connection. Take no
682 ;; other action as the accept input
683 ;; code will handle the closed
684 ;; connection.
685 (nntp-kill-buffer -buffer))))))))
686 (unwind-protect
687 (setq nntp-with-open-group-internal
688 (condition-case nil
689 (funcall -bodyfun)
690 (quit
691 (unless debug-on-quit
692 (nntp-close-server))
693 (signal 'quit nil))))
694 (when -timer
695 (nnheader-cancel-timer -timer)))
696 nil))
697 (setf (symbol-function 'nntp-report) nntp-report-n))
698 nntp-with-open-group-internal))
699
700 (defmacro nntp-with-open-group (group server &optional connectionless &rest forms)
701 "Protect against servers that don't like clients that keep idle connections opens.
702 The problem being that these servers may either close a connection or
703 simply ignore any further requests on a connection. Closed
704 connections are not detected until `accept-process-output' has updated
705 the `process-status'. Dropped connections are not detected until the
706 connection timeouts (which may be several minutes) or
707 `nntp-connection-timeout' has expired. When these occur
708 `nntp-with-open-group', opens a new connection then re-issues the NNTP
709 command whose response triggered the error."
710 (declare (indent 2) (debug (form form [&optional symbolp] def-body)))
711 (when (and (listp connectionless)
712 (not (eq connectionless nil)))
713 (setq forms (cons connectionless forms)
714 connectionless nil))
715 `(nntp-with-open-group-function ,group ,server ,connectionless (lambda () ,@forms)))
716
717 (deffoo nntp-retrieve-headers (articles &optional group server fetch-old)
718 "Retrieve the headers of ARTICLES."
719 (nntp-with-open-group
720 group server
721 (with-current-buffer (nntp-find-connection-buffer nntp-server-buffer)
722 (erase-buffer)
723 (if (and (not gnus-nov-is-evil)
724 (not nntp-nov-is-evil)
725 (nntp-retrieve-headers-with-xover articles fetch-old))
726 ;; We successfully retrieved the headers via XOVER.
727 'nov
728 ;; XOVER didn't work, so we do it the hard, slow and inefficient
729 ;; way.
730 (let ((number (length articles))
731 (articles articles)
732 (count 0)
733 (received 0)
734 (last-point (point-min))
735 (buf (nntp-find-connection-buffer nntp-server-buffer))
736 (nntp-inhibit-erase t)
737 article)
738 ;; Send HEAD commands.
739 (while (setq article (pop articles))
740 (nntp-send-command
741 nil
742 "HEAD" (if (numberp article)
743 (int-to-string article)
744 ;; `articles' is either a list of article numbers
745 ;; or a list of article IDs.
746 article))
747 (incf count)
748 ;; Every 400 requests we have to read the stream in
749 ;; order to avoid deadlocks.
750 (when (or (null articles) ;All requests have been sent.
751 (zerop (% count nntp-maximum-request)))
752 (nntp-accept-response)
753 (while (progn
754 (set-buffer buf)
755 (goto-char last-point)
756 ;; Count replies.
757 (while (nntp-next-result-arrived-p)
758 (setq last-point (point))
759 (incf received))
760 (< received count))
761 ;; If number of headers is greater than 100, give
762 ;; informative messages.
763 (and (numberp nntp-large-newsgroup)
764 (> number nntp-large-newsgroup)
765 (zerop (% received 20))
766 (nnheader-message 6 "NNTP: Receiving headers... %d%%"
767 (/ (* received 100) number)))
768 (nntp-accept-response))))
769 (and (numberp nntp-large-newsgroup)
770 (> number nntp-large-newsgroup)
771 (nnheader-message 6 "NNTP: Receiving headers...done"))
772
773 ;; Now all of replies are received. Fold continuation lines.
774 (nnheader-fold-continuation-lines)
775 ;; Remove all "\r"'s.
776 (nnheader-strip-cr)
777 (nntp-copy-to-buffer nntp-server-buffer (point-min) (point-max))
778 'headers)))))
779
780 (deffoo nntp-retrieve-group-data-early (server infos)
781 "Retrieve group info on INFOS."
782 (nntp-with-open-group nil server
783 (when (nntp-find-connection-buffer nntp-server-buffer)
784 ;; The first time this is run, this variable is `try'. So we
785 ;; try.
786 (when (eq nntp-server-list-active-group 'try)
787 (nntp-try-list-active
788 (gnus-group-real-name (gnus-info-group (car infos)))))
789 (with-current-buffer (nntp-find-connection-buffer nntp-server-buffer)
790 (erase-buffer)
791 (let ((nntp-inhibit-erase t)
792 (command (if nntp-server-list-active-group
793 "LIST ACTIVE" "GROUP")))
794 (dolist (info infos)
795 (nntp-send-command
796 nil command (gnus-group-real-name (gnus-info-group info)))))
797 (length infos)))))
798
799 (deffoo nntp-finish-retrieve-group-infos (server infos count)
800 (nntp-with-open-group nil server
801 (let ((buf (nntp-find-connection-buffer nntp-server-buffer))
802 (method (gnus-find-method-for-group
803 (gnus-info-group (car infos))
804 (car infos)))
805 (received 0)
806 (last-point 1))
807 (when (and buf
808 count)
809 (with-current-buffer buf
810 (while (and (gnus-buffer-live-p buf)
811 (progn
812 (goto-char last-point)
813 ;; Count replies.
814 (while (re-search-forward
815 (if nntp-server-list-active-group
816 "^[.]"
817 "^[0-9]")
818 nil t)
819 (incf received))
820 (setq last-point (point))
821 (< received count)))
822 (nntp-accept-response))
823 ;; We now have all the entries. Remove CRs.
824 (nnheader-strip-cr)
825 (if (not nntp-server-list-active-group)
826 (progn
827 (nntp-copy-to-buffer nntp-server-buffer
828 (point-min) (point-max))
829 (gnus-groups-to-gnus-format method gnus-active-hashtb t))
830 ;; We have read active entries, so we just delete the
831 ;; superfluous gunk.
832 (goto-char (point-min))
833 (while (re-search-forward "^[.2-5]" nil t)
834 (delete-region (match-beginning 0)
835 (progn (forward-line 1) (point))))
836 (nntp-copy-to-buffer nntp-server-buffer (point-min) (point-max))
837 (with-current-buffer nntp-server-buffer
838 (gnus-active-to-gnus-format
839 ;; Kludge to use the extended method name if you have
840 ;; an extended one.
841 (if (consp (gnus-info-method (car infos)))
842 (gnus-info-method (car infos))
843 method)
844 gnus-active-hashtb nil t))))))))
845
846 (deffoo nntp-retrieve-groups (groups &optional server)
847 "Retrieve group info on GROUPS."
848 (nntp-with-open-group
849 nil server
850 (when (nntp-find-connection-buffer nntp-server-buffer)
851 (catch 'done
852 (save-excursion
853 ;; Erase nntp-server-buffer before nntp-inhibit-erase.
854 (nntp-erase-buffer nntp-server-buffer)
855 (set-buffer (nntp-find-connection-buffer nntp-server-buffer))
856 ;; The first time this is run, this variable is `try'. So we
857 ;; try.
858 (when (eq nntp-server-list-active-group 'try)
859 (nntp-try-list-active (car groups)))
860 (erase-buffer)
861 (let ((count 0)
862 (groups groups)
863 (received 0)
864 (last-point (point-min))
865 (nntp-inhibit-erase t)
866 (buf (nntp-find-connection-buffer nntp-server-buffer))
867 (command (if nntp-server-list-active-group
868 "LIST ACTIVE" "GROUP")))
869 (while groups
870 ;; Timeout may have killed the buffer.
871 (unless (gnus-buffer-live-p buf)
872 (nnheader-report 'nntp "Connection to %s is closed." server)
873 (throw 'done nil))
874 ;; Send the command to the server.
875 (nntp-send-command nil command (pop groups))
876 (incf count)
877 ;; Every 400 requests we have to read the stream in
878 ;; order to avoid deadlocks.
879 (when (or (null groups) ;All requests have been sent.
880 (zerop (% count nntp-maximum-request)))
881 (nntp-accept-response)
882 (while (and (gnus-buffer-live-p buf)
883 (progn
884 ;; Search `blue moon' in this file for the
885 ;; reason why set-buffer here.
886 (set-buffer buf)
887 (goto-char last-point)
888 ;; Count replies.
889 (while (re-search-forward "^[0-9]" nil t)
890 (incf received))
891 (setq last-point (point))
892 (< received count)))
893 (nntp-accept-response))))
894
895 ;; Wait for the reply from the final command.
896 (unless (gnus-buffer-live-p buf)
897 (nnheader-report 'nntp "Connection to %s is closed." server)
898 (throw 'done nil))
899 (set-buffer buf)
900 (goto-char (point-max))
901 (re-search-backward "^[0-9]" nil t)
902 (when (looking-at "^[23]")
903 (while (and (gnus-buffer-live-p buf)
904 (progn
905 (set-buffer buf)
906 (goto-char (point-max))
907 (if (not nntp-server-list-active-group)
908 (not (re-search-backward "\r?\n"
909 (- (point) 3) t))
910 (not (re-search-backward "^\\.\r?\n"
911 (- (point) 4) t)))))
912 (nntp-accept-response)))
913
914 ;; Now all replies are received. We remove CRs.
915 (unless (gnus-buffer-live-p buf)
916 (nnheader-report 'nntp "Connection to %s is closed." server)
917 (throw 'done nil))
918 (set-buffer buf)
919 (goto-char (point-min))
920 (while (search-forward "\r" nil t)
921 (replace-match "" t t))
922
923 (if (not nntp-server-list-active-group)
924 (progn
925 (nntp-copy-to-buffer nntp-server-buffer
926 (point-min) (point-max))
927 'group)
928 ;; We have read active entries, so we just delete the
929 ;; superfluous gunk.
930 (goto-char (point-min))
931 (while (re-search-forward "^[.2-5]" nil t)
932 (delete-region (match-beginning 0)
933 (progn (forward-line 1) (point))))
934 (nntp-copy-to-buffer nntp-server-buffer (point-min) (point-max))
935 'active)))))))
936
937 (deffoo nntp-retrieve-articles (articles &optional group server)
938 (nntp-with-open-group
939 group server
940 (save-excursion
941 (let ((number (length articles))
942 (articles articles)
943 (count 0)
944 (received 0)
945 (last-point (point-min))
946 (buf (nntp-find-connection-buffer nntp-server-buffer))
947 (nntp-inhibit-erase t)
948 (map (apply 'vector articles))
949 (point 1)
950 article)
951 (set-buffer buf)
952 (erase-buffer)
953 ;; Send ARTICLE command.
954 (while (setq article (pop articles))
955 (nntp-send-command
956 nil
957 "ARTICLE" (if (numberp article)
958 (int-to-string article)
959 ;; `articles' is either a list of article numbers
960 ;; or a list of article IDs.
961 article))
962 (incf count)
963 ;; Every 400 requests we have to read the stream in
964 ;; order to avoid deadlocks.
965 (when (or (null articles) ;All requests have been sent.
966 (zerop (% count nntp-maximum-request)))
967 (nntp-accept-response)
968 (while (progn
969 (set-buffer buf)
970 (goto-char last-point)
971 ;; Count replies.
972 (while (nntp-next-result-arrived-p)
973 (aset map received (cons (aref map received) (point)))
974 (setq last-point (point))
975 (incf received))
976 (< received count))
977 ;; If number of headers is greater than 100, give
978 ;; informative messages.
979 (and (numberp nntp-large-newsgroup)
980 (> number nntp-large-newsgroup)
981 (zerop (% received 20))
982 (nnheader-message 6 "NNTP: Receiving articles... %d%%"
983 (/ (* received 100) number)))
984 (nntp-accept-response))))
985 (and (numberp nntp-large-newsgroup)
986 (> number nntp-large-newsgroup)
987 (nnheader-message 6 "NNTP: Receiving articles...done"))
988
989 ;; Now we have all the responses. We go through the results,
990 ;; wash it and copy it over to the server buffer.
991 (set-buffer nntp-server-buffer)
992 (erase-buffer)
993 (setq last-point (point-min))
994 (mapcar
995 (lambda (entry)
996 (narrow-to-region
997 (setq point (goto-char (point-max)))
998 (progn
999 (nntp-insert-buffer-substring buf last-point (cdr entry))
1000 (point-max)))
1001 (setq last-point (cdr entry))
1002 (nntp-decode-text)
1003 (widen)
1004 (cons (car entry) point))
1005 map)))))
1006
1007 (defun nntp-try-list-active (group)
1008 (nntp-list-active-group group)
1009 (with-current-buffer nntp-server-buffer
1010 (goto-char (point-min))
1011 (cond ((or (eobp)
1012 (looking-at "5[0-9]+"))
1013 (setq nntp-server-list-active-group nil))
1014 (t
1015 (setq nntp-server-list-active-group t)))))
1016
1017 (deffoo nntp-list-active-group (group &optional server)
1018 "Return the active info on GROUP (which can be a regexp)."
1019 (nntp-with-open-group
1020 nil server
1021 (nntp-send-command "^\\.*\r?\n" "LIST ACTIVE" group)))
1022
1023 (deffoo nntp-request-group-articles (group &optional server)
1024 "Return the list of existing articles in GROUP."
1025 (nntp-with-open-group
1026 nil server
1027 (nntp-send-command "^\\.*\r?\n" "LISTGROUP" group)))
1028
1029 (deffoo nntp-request-article (article &optional group server buffer command)
1030 (nntp-with-open-group
1031 group server
1032 (when (nntp-send-command-and-decode
1033 "\r?\n\\.\r?\n" "ARTICLE"
1034 (if (numberp article) (int-to-string article) article))
1035 (when (and buffer
1036 (not (equal buffer nntp-server-buffer)))
1037 (with-current-buffer nntp-server-buffer
1038 (copy-to-buffer buffer (point-min) (point-max))))
1039 (nntp-find-group-and-number group))))
1040
1041 (deffoo nntp-request-head (article &optional group server)
1042 (nntp-with-open-group
1043 group server
1044 (when (nntp-send-command
1045 "\r?\n\\.\r?\n" "HEAD"
1046 (if (numberp article) (int-to-string article) article))
1047 (prog1
1048 (nntp-find-group-and-number group)
1049 (nntp-decode-text)))))
1050
1051 (deffoo nntp-request-body (article &optional group server)
1052 (nntp-with-open-group
1053 group server
1054 (nntp-send-command-and-decode
1055 "\r?\n\\.\r?\n" "BODY"
1056 (if (numberp article) (int-to-string article) article))))
1057
1058 (deffoo nntp-request-group (group &optional server dont-check info)
1059 (nntp-with-open-group
1060 nil server
1061 (when (nntp-send-command "^[245].*\n" "GROUP" group)
1062 (let ((entry (nntp-find-connection-entry nntp-server-buffer)))
1063 (setcar (cddr entry) group)))))
1064
1065 (deffoo nntp-close-group (group &optional server)
1066 t)
1067
1068 (deffoo nntp-server-opened (&optional server)
1069 "Say whether a connection to SERVER has been opened."
1070 (and (nnoo-current-server-p 'nntp server)
1071 nntp-server-buffer
1072 (gnus-buffer-live-p nntp-server-buffer)
1073 (nntp-find-connection nntp-server-buffer)))
1074
1075 (deffoo nntp-open-server (server &optional defs connectionless)
1076 (nnheader-init-server-buffer)
1077 (if (nntp-server-opened server)
1078 t
1079 (when (or (stringp (car defs))
1080 (numberp (car defs)))
1081 (setq defs (cons (list 'nntp-port-number (car defs)) (cdr defs))))
1082 (unless (assq 'nntp-address defs)
1083 (setq defs (append defs (list (list 'nntp-address server)))))
1084 (nnoo-change-server 'nntp server defs)
1085 (if connectionless
1086 t
1087 (or (nntp-find-connection nntp-server-buffer)
1088 (nntp-open-connection nntp-server-buffer)))))
1089
1090 (deffoo nntp-close-server (&optional server)
1091 (nntp-possibly-change-group nil server t)
1092 (let ((process (nntp-find-connection nntp-server-buffer)))
1093 (while process
1094 (when (memq (process-status process) '(open run))
1095 (ignore-errors
1096 (nntp-send-string process "QUIT")
1097 (unless (eq nntp-open-connection-function 'nntp-open-network-stream)
1098 ;; Ok, this is evil, but when using telnet and stuff
1099 ;; as the connection method, it's important that the
1100 ;; QUIT command actually is sent out before we kill
1101 ;; the process.
1102 (sleep-for 1))))
1103 (nntp-kill-buffer (process-buffer process))
1104 (setq process (car (pop nntp-connection-alist))))
1105 (nnoo-close-server 'nntp)))
1106
1107 (deffoo nntp-request-close ()
1108 (let (process)
1109 (while (setq process (pop nntp-connection-list))
1110 (when (memq (process-status process) '(open run))
1111 (ignore-errors
1112 (nntp-send-string process "QUIT")
1113 (unless (eq nntp-open-connection-function 'nntp-open-network-stream)
1114 ;; Ok, this is evil, but when using telnet and stuff
1115 ;; as the connection method, it's important that the
1116 ;; QUIT command actually is sent out before we kill
1117 ;; the process.
1118 (sleep-for 1))))
1119 (nntp-kill-buffer (process-buffer process)))))
1120
1121 (deffoo nntp-request-list (&optional server)
1122 (nntp-with-open-group
1123 nil server
1124 (nntp-send-command-and-decode "\r?\n\\.\r?\n" "LIST")))
1125
1126 (deffoo nntp-request-list-newsgroups (&optional server)
1127 (nntp-with-open-group
1128 nil server
1129 (nntp-send-command "\r?\n\\.\r?\n" "LIST NEWSGROUPS")))
1130
1131 (deffoo nntp-request-newgroups (date &optional server)
1132 (nntp-with-open-group
1133 nil server
1134 (with-current-buffer nntp-server-buffer
1135 (let* ((time (date-to-time date))
1136 (ls (- (cadr time) (nth 8 (decode-time time)))))
1137 (cond ((< ls 0)
1138 (setcar time (1- (car time)))
1139 (setcar (cdr time) (+ ls 65536)))
1140 ((>= ls 65536)
1141 (setcar time (1+ (car time)))
1142 (setcar (cdr time) (- ls 65536)))
1143 (t
1144 (setcar (cdr time) ls)))
1145 (prog1
1146 (nntp-send-command
1147 "^\\.\r?\n" "NEWGROUPS"
1148 (format-time-string "%y%m%d %H%M%S" time)
1149 "GMT")
1150 (nntp-decode-text))))))
1151
1152 (deffoo nntp-request-post (&optional server)
1153 (nntp-with-open-group
1154 nil server
1155 (when (nntp-send-command "^[23].*\r?\n" "POST")
1156 (let ((response (with-current-buffer nntp-server-buffer
1157 nntp-process-response))
1158 server-id)
1159 (when (and response
1160 (string-match "^[23].*\\(<[^\t\n @<>]+@[^\t\n @<>]+>\\)"
1161 response))
1162 (setq server-id (match-string 1 response))
1163 (narrow-to-region (goto-char (point-min))
1164 (if (search-forward "\n\n" nil t)
1165 (1- (point))
1166 (point-max)))
1167 (unless (mail-fetch-field "Message-ID")
1168 (goto-char (point-min))
1169 (insert "Message-ID: " server-id "\n"))
1170 (widen))
1171 (run-hooks 'nntp-prepare-post-hook)
1172 (nntp-send-buffer "^[23].*\n")))))
1173
1174 (deffoo nntp-request-type (group article)
1175 'news)
1176
1177 (deffoo nntp-asynchronous-p ()
1178 t)
1179
1180 (deffoo nntp-request-set-mark (group actions &optional server)
1181 (when (and (not nntp-marks-is-evil)
1182 nntp-marks-file-name)
1183 (nntp-possibly-create-directory group server)
1184 (nntp-open-marks group server)
1185 (setq nntp-marks (nnheader-update-marks-actions nntp-marks actions))
1186 (nntp-save-marks group server))
1187 nil)
1188
1189 (deffoo nntp-request-marks (group info &optional server)
1190 (when (and (not nntp-marks-is-evil)
1191 nntp-marks-file-name)
1192 (nntp-possibly-create-directory group server)
1193 (when (nntp-marks-changed-p group server)
1194 (nnheader-message 8 "Updating marks for %s..." group)
1195 (nntp-open-marks group server)
1196 ;; Update info using `nntp-marks'.
1197 (mapc (lambda (pred)
1198 (unless (memq (cdr pred) gnus-article-unpropagated-mark-lists)
1199 (gnus-info-set-marks
1200 info
1201 (gnus-update-alist-soft
1202 (cdr pred)
1203 (cdr (assq (cdr pred) nntp-marks))
1204 (gnus-info-marks info))
1205 t)))
1206 gnus-article-mark-lists)
1207 (let ((seen (cdr (assq 'read nntp-marks))))
1208 (gnus-info-set-read info
1209 (if (and (integerp (car seen))
1210 (null (cdr seen)))
1211 (list (cons (car seen) (car seen)))
1212 seen)))
1213 (nnheader-message 8 "Updating marks for %s...done" group)))
1214 nil)
1215
1216
1217
1218 ;;; Hooky functions.
1219
1220 (defun nntp-send-mode-reader ()
1221 "Send the MODE READER command to the nntp server.
1222 This function is supposed to be called from `nntp-server-opened-hook'.
1223 It will make innd servers spawn an nnrpd process to allow actual article
1224 reading."
1225 (nntp-send-command "^.*\n" "MODE READER"))
1226
1227 (declare-function netrc-parse "netrc" (&optional file))
1228 (declare-function netrc-machine "netrc"
1229 (list machine &optional port defaultport))
1230 (declare-function netrc-get "netrc" (alist type))
1231
1232 (defun nntp-send-authinfo (&optional send-if-force)
1233 "Send the AUTHINFO to the nntp server.
1234 It will look in the \"~/.authinfo\" file for matching entries. If
1235 nothing suitable is found there, it will prompt for a user name
1236 and a password.
1237
1238 If SEND-IF-FORCE, only send authinfo to the server if the
1239 .authinfo file has the FORCE token."
1240 (require 'netrc)
1241 (let* ((list (netrc-parse nntp-authinfo-file))
1242 (alist (netrc-machine list nntp-address "nntp"))
1243 (force (or (netrc-get alist "force") nntp-authinfo-force))
1244 (auth-info
1245 (nth 0 (auth-source-search :max 1
1246 ;; TODO: allow the virtual server name too
1247 :host nntp-address
1248 :port '("119" "nntp"))))
1249 (auth-user (plist-get auth-info :user))
1250 (auth-passwd (plist-get auth-info :secret))
1251 (auth-passwd (if (functionp auth-passwd)
1252 (funcall auth-passwd)
1253 auth-passwd))
1254 (user (or
1255 ;; this is preferred to netrc-*
1256 auth-user
1257 (netrc-get alist "login")
1258 nntp-authinfo-user))
1259 (passwd (or
1260 ;; this is preferred to netrc-*
1261 auth-passwd
1262 (netrc-get alist "password"))))
1263 (when (or (not send-if-force)
1264 force)
1265 (unless user
1266 (setq user (read-string (format "NNTP (%s) user name: " nntp-address))
1267 nntp-authinfo-user user))
1268 (unless (member user '(nil ""))
1269 (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" user)
1270 (when t ;???Should check if AUTHINFO succeeded
1271 (nntp-send-command
1272 "^2.*\r?\n" "AUTHINFO PASS"
1273 (or passwd
1274 nntp-authinfo-password
1275 (setq nntp-authinfo-password
1276 (read-passwd (format "NNTP (%s@%s) password: "
1277 user nntp-address))))))))))
1278
1279 (defun nntp-send-nosy-authinfo ()
1280 "Send the AUTHINFO to the nntp server."
1281 (let ((user (read-string (format "NNTP (%s) user name: " nntp-address))))
1282 (unless (member user '(nil ""))
1283 (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" user)
1284 (when t ;???Should check if AUTHINFO succeeded
1285 (nntp-send-command "^2.*\r?\n" "AUTHINFO PASS"
1286 (read-passwd (format "NNTP (%s@%s) password: "
1287 user nntp-address)))))))
1288
1289 (defun nntp-send-authinfo-from-file ()
1290 "Send the AUTHINFO to the nntp server.
1291
1292 The authinfo login name is taken from the user's login name and the
1293 password contained in '~/.nntp-authinfo'."
1294 (when (file-exists-p "~/.nntp-authinfo")
1295 (with-temp-buffer
1296 (insert-file-contents "~/.nntp-authinfo")
1297 (goto-char (point-min))
1298 (nntp-send-command "^3.*\r?\n" "AUTHINFO USER" (user-login-name))
1299 (nntp-send-command
1300 "^2.*\r?\n" "AUTHINFO PASS"
1301 (buffer-substring (point) (point-at-eol))))))
1302
1303 ;;; Internal functions.
1304
1305 (defun nntp-handle-authinfo (process)
1306 "Take care of an authinfo response from the server."
1307 (let ((last nntp-last-command))
1308 (funcall nntp-authinfo-function)
1309 ;; We have to re-send the function that was interrupted by
1310 ;; the authinfo request.
1311 (nntp-erase-buffer nntp-server-buffer)
1312 (nntp-send-string process last)))
1313
1314 (defun nntp-make-process-buffer (buffer)
1315 "Create a new, fresh buffer usable for nntp process connections."
1316 (with-current-buffer
1317 (generate-new-buffer
1318 (format " *server %s %s %s*"
1319 nntp-address nntp-port-number
1320 (gnus-buffer-exists-p buffer)))
1321 (mm-disable-multibyte)
1322 (set (make-local-variable 'after-change-functions) nil)
1323 (set (make-local-variable 'nntp-process-wait-for) nil)
1324 (set (make-local-variable 'nntp-process-callback) nil)
1325 (set (make-local-variable 'nntp-process-to-buffer) nil)
1326 (set (make-local-variable 'nntp-process-start-point) nil)
1327 (set (make-local-variable 'nntp-process-decode) nil)
1328 (current-buffer)))
1329
1330 (defun nntp-open-connection (buffer)
1331 "Open a connection to PORT on ADDRESS delivering output to BUFFER."
1332 (run-hooks 'nntp-prepare-server-hook)
1333 (let* ((pbuffer (nntp-make-process-buffer buffer))
1334 (timer
1335 (and nntp-connection-timeout
1336 (run-at-time
1337 nntp-connection-timeout nil
1338 `(lambda ()
1339 (nntp-kill-buffer ,pbuffer)))))
1340 (process
1341 (condition-case err
1342 (let ((coding-system-for-read nntp-coding-system-for-read)
1343 (coding-system-for-write nntp-coding-system-for-write)
1344 (map '((nntp-open-network-stream network)
1345 (network-only plain) ; compat
1346 (nntp-open-plain-stream plain)
1347 (nntp-open-ssl-stream tls)
1348 (nntp-open-tls-stream tls))))
1349 (if (assoc nntp-open-connection-function map)
1350 (open-protocol-stream
1351 "nntpd" pbuffer nntp-address nntp-port-number
1352 :type (cadr (assoc nntp-open-connection-function map))
1353 :end-of-command "^\\([2345]\\|[.]\\).*\n"
1354 :capability-command "CAPABILITIES\r\n"
1355 :success "^3"
1356 :starttls-function
1357 (lambda (capabilities)
1358 (if (not (string-match "STARTTLS" capabilities))
1359 nil
1360 "STARTTLS\r\n")))
1361 (funcall nntp-open-connection-function pbuffer)))
1362 (error
1363 (nnheader-report 'nntp ">>> %s" err))
1364 (quit
1365 (message "Quit opening connection to %s" nntp-address)
1366 (nntp-kill-buffer pbuffer)
1367 (signal 'quit nil)
1368 nil))))
1369 (when timer
1370 (nnheader-cancel-timer timer))
1371 (when (and process
1372 (not (memq (process-status process) '(open run))))
1373 (setq process nil))
1374 (unless process
1375 (nntp-kill-buffer pbuffer))
1376 (when (and (buffer-name pbuffer)
1377 process)
1378 (gnus-set-process-query-on-exit-flag process nil)
1379 (if (and (nntp-wait-for process "^2.*\n" buffer nil t)
1380 (memq (process-status process) '(open run)))
1381 (prog1
1382 (caar (push (list process buffer nil) nntp-connection-alist))
1383 (push process nntp-connection-list)
1384 (with-current-buffer pbuffer
1385 (nntp-read-server-type)
1386 (erase-buffer)
1387 (set-buffer nntp-server-buffer)
1388 (let ((nnheader-callback-function nil))
1389 (run-hooks 'nntp-server-opened-hook)
1390 (nntp-send-authinfo t))))
1391 (nntp-kill-buffer (process-buffer process))
1392 nil))))
1393
1394 (defun nntp-read-server-type ()
1395 "Find out what the name of the server we have connected to is."
1396 ;; Wait for the status string to arrive.
1397 (setq nntp-server-type (buffer-string))
1398 (let ((case-fold-search t))
1399 ;; Run server-specific commands.
1400 (dolist (entry nntp-server-action-alist)
1401 (when (string-match (car entry) nntp-server-type)
1402 (if (and (listp (cadr entry))
1403 (not (eq 'lambda (caadr entry))))
1404 (eval (cadr entry))
1405 (funcall (cadr entry)))))))
1406
1407 (defun nntp-async-wait (process wait-for buffer decode callback)
1408 (with-current-buffer (process-buffer process)
1409 (unless nntp-inside-change-function
1410 (erase-buffer))
1411 (setq nntp-process-wait-for wait-for
1412 nntp-process-to-buffer buffer
1413 nntp-process-decode decode
1414 nntp-process-callback callback
1415 nntp-process-start-point (point-max))
1416 (setq after-change-functions '(nntp-after-change-function))))
1417
1418 (defun nntp-async-timer-handler ()
1419 (mapcar
1420 (lambda (proc)
1421 (if (memq (process-status proc) '(open run))
1422 (nntp-async-trigger proc)
1423 (nntp-async-stop proc)))
1424 nntp-async-process-list))
1425
1426 (defun nntp-async-stop (proc)
1427 (setq nntp-async-process-list (delq proc nntp-async-process-list))
1428 (when (and nntp-async-timer (not nntp-async-process-list))
1429 (nnheader-cancel-timer nntp-async-timer)
1430 (setq nntp-async-timer nil)))
1431
1432 (defun nntp-after-change-function (beg end len)
1433 (unwind-protect
1434 ;; we only care about insertions at eob
1435 (when (and (eq 0 len) (eq (point-max) end))
1436 (save-match-data
1437 (let ((proc (get-buffer-process (current-buffer))))
1438 (when proc
1439 (nntp-async-trigger proc)))))
1440 ;; any throw from after-change-functions will leave it
1441 ;; set to nil. so we reset it here, if necessary.
1442 (when quit-flag
1443 (setq after-change-functions '(nntp-after-change-function)))))
1444
1445 (defun nntp-async-trigger (process)
1446 (with-current-buffer (process-buffer process)
1447 (when nntp-process-callback
1448 ;; do we have an error message?
1449 (goto-char nntp-process-start-point)
1450 (if (memq (following-char) '(?4 ?5))
1451 ;; wants credentials?
1452 (if (looking-at "480")
1453 (nntp-handle-authinfo process)
1454 ;; report error message.
1455 (nntp-snarf-error-message)
1456 (nntp-do-callback nil))
1457
1458 ;; got what we expect?
1459 (goto-char (point-max))
1460 (when (re-search-backward
1461 nntp-process-wait-for nntp-process-start-point t)
1462 (let ((response (match-string 0)))
1463 (with-current-buffer nntp-server-buffer
1464 (setq nntp-process-response response)))
1465 (nntp-async-stop process)
1466 ;; convert it.
1467 (when (gnus-buffer-exists-p nntp-process-to-buffer)
1468 (let ((buf (current-buffer))
1469 (start nntp-process-start-point)
1470 (decode nntp-process-decode))
1471 (with-current-buffer nntp-process-to-buffer
1472 (goto-char (point-max))
1473 (save-restriction
1474 (narrow-to-region (point) (point))
1475 (nntp-insert-buffer-substring buf start)
1476 (when decode
1477 (nntp-decode-text))))))
1478 ;; report it.
1479 (goto-char (point-max))
1480 (nntp-do-callback
1481 (buffer-name (get-buffer nntp-process-to-buffer))))))))
1482
1483 (defun nntp-do-callback (arg)
1484 (let ((callback nntp-process-callback)
1485 (nntp-inside-change-function t))
1486 (setq nntp-process-callback nil)
1487 (funcall callback arg)))
1488
1489 (defun nntp-snarf-error-message ()
1490 "Save the error message in the current buffer."
1491 (let ((message (buffer-string)))
1492 (while (string-match "[\r\n]+" message)
1493 (setq message (replace-match " " t t message)))
1494 (nnheader-report 'nntp "%s" message)
1495 message))
1496
1497 (defun nntp-accept-process-output (process)
1498 "Wait for output from PROCESS and message some dots."
1499 (with-current-buffer (or (nntp-find-connection-buffer nntp-server-buffer)
1500 nntp-server-buffer)
1501 (let ((len (/ (buffer-size) 1024))
1502 message-log-max)
1503 (unless (< len 10)
1504 (setq nntp-have-messaged t)
1505 (nnheader-message 7 "nntp read: %dk" len)))
1506 (prog1
1507 (nnheader-accept-process-output process)
1508 ;; accept-process-output may update status of process to indicate
1509 ;; that the server has closed the connection. This MUST be
1510 ;; handled here as the buffer restored by the save-excursion may
1511 ;; be the process's former output buffer (i.e. now killed)
1512 (or (and process
1513 (memq (process-status process) '(open run)))
1514 (nntp-report "Server closed connection")))))
1515
1516 (defun nntp-accept-response ()
1517 "Wait for output from the process that outputs to BUFFER."
1518 (nntp-accept-process-output (nntp-find-connection nntp-server-buffer)))
1519
1520 (defun nntp-possibly-change-group (group server &optional connectionless)
1521 (let ((nnheader-callback-function nil))
1522 (when server
1523 (or (nntp-server-opened server)
1524 (nntp-open-server server nil connectionless)))
1525
1526 (unless connectionless
1527 (or (nntp-find-connection nntp-server-buffer)
1528 (nntp-open-connection nntp-server-buffer))))
1529
1530 (when group
1531 (let ((entry (nntp-find-connection-entry nntp-server-buffer)))
1532 (cond ((not entry)
1533 (nntp-report "Server closed connection"))
1534 ((not (equal group (caddr entry)))
1535 (with-current-buffer (process-buffer (car entry))
1536 (erase-buffer)
1537 (nntp-send-command "^[245].*\n" "GROUP" group)
1538 (setcar (cddr entry) group)
1539 (erase-buffer)
1540 (nntp-erase-buffer nntp-server-buffer)))))))
1541
1542 (defun nntp-decode-text (&optional cr-only)
1543 "Decode the text in the current buffer."
1544 (goto-char (point-min))
1545 (while (search-forward "\r" nil t)
1546 (delete-char -1))
1547 (unless cr-only
1548 ;; Remove trailing ".\n" end-of-transfer marker.
1549 (goto-char (point-max))
1550 (forward-line -1)
1551 (when (looking-at ".\n")
1552 (delete-char 2))
1553 ;; Delete status line.
1554 (goto-char (point-min))
1555 (while (looking-at "[1-5][0-9][0-9] .*\n")
1556 ;; For some unknown reason, there is more than one status line.
1557 (delete-region (point) (progn (forward-line 1) (point))))
1558 ;; Remove "." -> ".." encoding.
1559 (while (search-forward "\n.." nil t)
1560 (delete-char -1))))
1561
1562 (defun nntp-encode-text ()
1563 "Encode the text in the current buffer."
1564 (save-excursion
1565 ;; Replace "." at beginning of line with "..".
1566 (goto-char (point-min))
1567 (while (re-search-forward "^\\." nil t)
1568 (insert "."))
1569 (goto-char (point-max))
1570 ;; Insert newline at the end of the buffer.
1571 (unless (bolp)
1572 (insert "\n"))
1573 ;; Insert `.' at end of buffer (end of text mark).
1574 (goto-char (point-max))
1575 (insert ".\n")
1576 (goto-char (point-min))
1577 (while (not (eobp))
1578 (end-of-line)
1579 (delete-char 1)
1580 (insert nntp-end-of-line))))
1581
1582 (defun nntp-retrieve-headers-with-xover (articles &optional fetch-old)
1583 (set-buffer nntp-server-buffer)
1584 (erase-buffer)
1585 (cond
1586
1587 ;; This server does not talk NOV.
1588 ((not nntp-server-xover)
1589 nil)
1590
1591 ;; We don't care about gaps.
1592 ((or (not nntp-nov-gap)
1593 fetch-old)
1594 (nntp-send-xover-command
1595 (if fetch-old
1596 (if (numberp fetch-old)
1597 (max 1 (- (car articles) fetch-old))
1598 1)
1599 (car articles))
1600 (car (last articles)) 'wait)
1601
1602 (goto-char (point-min))
1603 (when (looking-at "[1-5][0-9][0-9] .*\n")
1604 (delete-region (point) (progn (forward-line 1) (point))))
1605 (while (search-forward "\r" nil t)
1606 (replace-match "" t t))
1607 (goto-char (point-max))
1608 (forward-line -1)
1609 (when (looking-at "\\.")
1610 (delete-region (point) (progn (forward-line 1) (point)))))
1611
1612 ;; We do it the hard way. For each gap, an XOVER command is sent
1613 ;; to the server. We do not wait for a reply from the server, we
1614 ;; just send them off as fast as we can. That means that we have
1615 ;; to count the number of responses we get back to find out when we
1616 ;; have gotten all we asked for.
1617 ((numberp nntp-nov-gap)
1618 (let ((count 0)
1619 (received 0)
1620 last-point
1621 in-process-buffer-p
1622 (buf nntp-server-buffer)
1623 (process-buffer (nntp-find-connection-buffer nntp-server-buffer))
1624 first last status)
1625 ;; We have to check `nntp-server-xover'. If it gets set to nil,
1626 ;; that means that the server does not understand XOVER, but we
1627 ;; won't know that until we try.
1628 (while (and nntp-server-xover articles)
1629 (setq first (car articles))
1630 ;; Search forward until we find a gap, or until we run out of
1631 ;; articles.
1632 (while (and (cdr articles)
1633 (< (- (nth 1 articles) (car articles)) nntp-nov-gap))
1634 (setq articles (cdr articles)))
1635
1636 (setq in-process-buffer-p (stringp nntp-server-xover))
1637 (nntp-send-xover-command first (setq last (car articles)))
1638 (setq articles (cdr articles))
1639
1640 (when (and nntp-server-xover in-process-buffer-p)
1641 ;; Don't count tried request.
1642 (setq count (1+ count))
1643
1644 ;; Every 400 requests we have to read the stream in
1645 ;; order to avoid deadlocks.
1646 (when (or (null articles) ;All requests have been sent.
1647 (= 1 (% count nntp-maximum-request)))
1648
1649 (nntp-accept-response)
1650 ;; On some Emacs versions the preceding function has a
1651 ;; tendency to change the buffer. Perhaps. It's quite
1652 ;; difficult to reproduce, because it only seems to happen
1653 ;; once in a blue moon.
1654 (set-buffer process-buffer)
1655 (while (progn
1656 (goto-char (or last-point (point-min)))
1657 ;; Count replies.
1658 (while (re-search-forward "^\\([0-9][0-9][0-9]\\) .*\n"
1659 nil t)
1660 (incf received)
1661 (setq status (match-string 1))
1662 (if (string-match "^[45]" status)
1663 (setq status 'error)
1664 (setq status 'ok)))
1665 (setq last-point (point))
1666 (or (< received count)
1667 (if (eq status 'error)
1668 nil
1669 ;; I haven't started reading the final response
1670 (progn
1671 (goto-char (point-max))
1672 (forward-line -1)
1673 (not (looking-at "^\\.\r?\n"))))))
1674 ;; I haven't read the end of the final response
1675 (nntp-accept-response)
1676 (set-buffer process-buffer))))
1677
1678 ;; Some nntp servers seem to have an extension to the XOVER
1679 ;; extension. On these servers, requesting an article range
1680 ;; preceding the active range does not return an error as
1681 ;; specified in the RFC. What we instead get is the NOV entry
1682 ;; for the first available article. Obviously, a client can
1683 ;; use that entry to avoid making unnecessary requests. The
1684 ;; only problem is for a client that assumes that the response
1685 ;; will always be within the requested ranage. For such a
1686 ;; client, we can get N copies of the same entry (one for each
1687 ;; XOVER command sent to the server).
1688
1689 (when (<= count 1)
1690 (goto-char (point-min))
1691 (when (re-search-forward "^[0-9][0-9][0-9] .*\n\\([0-9]+\\)" nil t)
1692 (let ((low-limit (string-to-number
1693 (buffer-substring (match-beginning 1)
1694 (match-end 1)))))
1695 (while (and articles (<= (car articles) low-limit))
1696 (setq articles (cdr articles))))))
1697 (set-buffer buf))
1698
1699 (when nntp-server-xover
1700 (when in-process-buffer-p
1701 (set-buffer buf)
1702 (goto-char (point-max))
1703 (nntp-insert-buffer-substring process-buffer)
1704 (set-buffer process-buffer)
1705 (erase-buffer)
1706 (set-buffer buf))
1707
1708 ;; We remove any "." lines and status lines.
1709 (goto-char (point-min))
1710 (while (search-forward "\r" nil t)
1711 (delete-char -1))
1712 (goto-char (point-min))
1713 (delete-matching-lines "^\\.$\\|^[1-5][0-9][0-9] ")
1714 t))))
1715
1716 nntp-server-xover)
1717
1718 (defun nntp-send-xover-command (beg end &optional wait-for-reply)
1719 "Send the XOVER command to the server."
1720 (let ((range (format "%d-%d" beg end))
1721 (nntp-inhibit-erase t))
1722 (if (stringp nntp-server-xover)
1723 ;; If `nntp-server-xover' is a string, then we just send this
1724 ;; command.
1725 (if wait-for-reply
1726 (nntp-send-command-nodelete
1727 "\r?\n\\.\r?\n" nntp-server-xover range)
1728 ;; We do not wait for the reply.
1729 (nntp-send-command-nodelete nil nntp-server-xover range))
1730 (let ((commands nntp-xover-commands))
1731 ;; `nntp-xover-commands' is a list of possible XOVER commands.
1732 ;; We try them all until we get at positive response.
1733 (while (and commands (eq nntp-server-xover 'try))
1734 (nntp-send-command-nodelete "\r?\n\\.\r?\n" (car commands) range)
1735 (with-current-buffer nntp-server-buffer
1736 (goto-char (point-min))
1737 (and (looking-at "[23]") ; No error message.
1738 ;; We also have to look at the lines. Some buggy
1739 ;; servers give back simple lines with just the
1740 ;; article number. How... helpful.
1741 (progn
1742 (forward-line 1)
1743 ;; More text after number, or a dot.
1744 (looking-at "[0-9]+\t...\\|\\.\r?\n"))
1745 (setq nntp-server-xover (car commands))))
1746 (setq commands (cdr commands)))
1747 ;; If none of the commands worked, we disable XOVER.
1748 (when (eq nntp-server-xover 'try)
1749 (nntp-erase-buffer nntp-server-buffer)
1750 (setq nntp-server-xover nil))
1751 nntp-server-xover))))
1752
1753 (defun nntp-find-group-and-number (&optional group)
1754 (save-excursion
1755 (save-restriction
1756 ;; FIXME: This is REALLY FISHY: set-buffer after save-restriction?!?
1757 (set-buffer nntp-server-buffer)
1758 (narrow-to-region (goto-char (point-min))
1759 (or (search-forward "\n\n" nil t) (point-max)))
1760 (goto-char (point-min))
1761 ;; We first find the number by looking at the status line.
1762 (let ((number (and (looking-at "2[0-9][0-9] +\\([0-9]+\\) ")
1763 (string-to-number
1764 (buffer-substring (match-beginning 1)
1765 (match-end 1)))))
1766 newsgroups xref)
1767 (and number (zerop number) (setq number nil))
1768 (if number
1769 ;; Then we find the group name.
1770 (setq group
1771 (cond
1772 ;; If there is only one group in the Newsgroups
1773 ;; header, then it seems quite likely that this
1774 ;; article comes from that group, I'd say.
1775 ((and (setq newsgroups
1776 (mail-fetch-field "newsgroups"))
1777 (not (string-match "," newsgroups)))
1778 newsgroups)
1779 ;; If there is more than one group in the
1780 ;; Newsgroups header, then the Xref header should
1781 ;; be filled out. We hazard a guess that the group
1782 ;; that has this article number in the Xref header
1783 ;; is the one we are looking for. This might very
1784 ;; well be wrong if this article happens to have
1785 ;; the same number in several groups, but that's
1786 ;; life.
1787 ((and (setq xref (mail-fetch-field "xref"))
1788 number
1789 (string-match
1790 (format "\\([^ :]+\\):%d" number) xref))
1791 (match-string 1 xref))
1792 (t "")))
1793 (cond
1794 ((and (not nntp-xref-number-is-evil)
1795 (setq xref (mail-fetch-field "xref"))
1796 (string-match
1797 (if group
1798 (concat "\\(" (regexp-quote group) "\\):\\([0-9]+\\)")
1799 "\\([^ :]+\\):\\([0-9]+\\)")
1800 xref))
1801 (setq group (match-string 1 xref)
1802 number (string-to-number (match-string 2 xref))))
1803 ((and (setq newsgroups
1804 (mail-fetch-field "newsgroups"))
1805 (not (string-match "," newsgroups)))
1806 (setq group newsgroups))
1807 (group)
1808 (t (setq group ""))))
1809 (when (string-match "\r" group)
1810 (setq group (substring group 0 (match-beginning 0))))
1811 (cons group number)))))
1812
1813 (defun nntp-wait-for-string (regexp)
1814 "Wait until string arrives in the buffer."
1815 (let ((buf (current-buffer))
1816 proc)
1817 (goto-char (point-min))
1818 (while (and (setq proc (get-buffer-process buf))
1819 (memq (process-status proc) '(open run))
1820 (not (re-search-forward regexp nil t)))
1821 (accept-process-output proc 0.1)
1822 (set-buffer buf)
1823 (goto-char (point-min)))))
1824
1825
1826 ;; ==========================================================================
1827 ;; Obsolete nntp-open-* connection methods -- drv
1828 ;; ==========================================================================
1829
1830 (defvoo nntp-open-telnet-envuser nil
1831 "*If non-nil, telnet session (client and server both) will support the ENVIRON option and not prompt for login name.")
1832
1833 (defvoo nntp-telnet-shell-prompt "bash\\|\$ *\r?$\\|> *\r?"
1834 "*Regular expression to match the shell prompt on the remote machine.")
1835
1836 (defvoo nntp-rlogin-program "rsh"
1837 "*Program used to log in on remote machines.
1838 The default is \"rsh\", but \"ssh\" is a popular alternative.")
1839
1840 (defvoo nntp-rlogin-parameters '("telnet" "-8" "${NNTPSERVER:=news}" "nntp")
1841 "*Parameters to `nntp-open-rlogin'.
1842 That function may be used as `nntp-open-connection-function'. In that
1843 case, this list will be used as the parameter list given to rsh.")
1844
1845 (defvoo nntp-rlogin-user-name nil
1846 "*User name on remote system when using the rlogin connect method.")
1847
1848 (defvoo nntp-telnet-parameters
1849 '("exec" "telnet" "-8" "${NNTPSERVER:=news}" "nntp")
1850 "*Parameters to `nntp-open-telnet'.
1851 That function may be used as `nntp-open-connection-function'. In that
1852 case, this list will be executed as a command after logging in
1853 via telnet.")
1854
1855 (defvoo nntp-telnet-user-name nil
1856 "User name to log in via telnet with.")
1857
1858 (defvoo nntp-telnet-passwd nil
1859 "Password to use to log in via telnet with.")
1860
1861 (defun nntp-service-to-port (svc)
1862 (cond
1863 ((integerp svc) (number-to-string svc))
1864 ((string-match "\\`[0-9]+\\'" svc) svc)
1865 (t
1866 (with-temp-buffer
1867 (ignore-errors (insert-file-contents "/etc/services"))
1868 (goto-char (point-min))
1869 (if (re-search-forward (concat "^" (regexp-quote svc)
1870 "[ \t]+\\([0-9]+\\)/tcp"))
1871 (match-string 1)
1872 svc)))))
1873
1874 (defun nntp-open-telnet (buffer)
1875 (with-current-buffer buffer
1876 (erase-buffer)
1877 (let ((proc (apply
1878 'start-process
1879 "nntpd" buffer nntp-telnet-command nntp-telnet-switches))
1880 (case-fold-search t))
1881 (when (memq (process-status proc) '(open run))
1882 (nntp-wait-for-string "^r?telnet")
1883 (process-send-string proc "set escape \^X\n")
1884 (cond
1885 ((and nntp-open-telnet-envuser nntp-telnet-user-name)
1886 (process-send-string proc (concat "open " "-l" nntp-telnet-user-name
1887 nntp-address "\n")))
1888 (t
1889 (process-send-string proc (concat "open " nntp-address "\n"))))
1890 (cond
1891 ((not nntp-open-telnet-envuser)
1892 (nntp-wait-for-string "^\r*.?login:")
1893 (process-send-string
1894 proc (concat
1895 (or nntp-telnet-user-name
1896 (setq nntp-telnet-user-name (read-string "login: ")))
1897 "\n"))))
1898 (nntp-wait-for-string "^\r*.?password:")
1899 (process-send-string
1900 proc (concat
1901 (or nntp-telnet-passwd
1902 (setq nntp-telnet-passwd
1903 (read-passwd "Password: ")))
1904 "\n"))
1905 (nntp-wait-for-string nntp-telnet-shell-prompt)
1906 (process-send-string
1907 proc (concat (mapconcat 'identity nntp-telnet-parameters " ") "\n"))
1908 (nntp-wait-for-string "^\r*20[01]")
1909 (beginning-of-line)
1910 (delete-region (point-min) (point))
1911 (process-send-string proc "\^]")
1912 (nntp-wait-for-string "^r?telnet")
1913 (process-send-string proc "mode character\n")
1914 (accept-process-output proc 1)
1915 (sit-for 1)
1916 (goto-char (point-min))
1917 (forward-line 1)
1918 (delete-region (point) (point-max)))
1919 proc)))
1920
1921 (defun nntp-open-rlogin (buffer)
1922 "Open a connection to SERVER using rsh."
1923 (let ((proc (if nntp-rlogin-user-name
1924 (apply 'start-process
1925 "nntpd" buffer nntp-rlogin-program
1926 nntp-address "-l" nntp-rlogin-user-name
1927 nntp-rlogin-parameters)
1928 (apply 'start-process
1929 "nntpd" buffer nntp-rlogin-program nntp-address
1930 nntp-rlogin-parameters))))
1931 (with-current-buffer buffer
1932 (nntp-wait-for-string "^\r*20[01]")
1933 (beginning-of-line)
1934 (delete-region (point-min) (point))
1935 proc)))
1936
1937
1938 ;; ==========================================================================
1939 ;; Replacements for the nntp-open-* functions -- drv
1940 ;; ==========================================================================
1941
1942 (defun nntp-open-telnet-stream (buffer)
1943 "Open a nntp connection by telnet'ing the news server.
1944 `nntp-open-netcat-stream' is recommended in place of this function
1945 because it is more reliable.
1946
1947 Please refer to the following variables to customize the connection:
1948 - `nntp-pre-command',
1949 - `nntp-telnet-command',
1950 - `nntp-telnet-switches',
1951 - `nntp-address',
1952 - `nntp-port-number',
1953 - `nntp-end-of-line'."
1954 (let ((command `(,nntp-telnet-command
1955 ,@nntp-telnet-switches
1956 ,nntp-address
1957 ,(nntp-service-to-port nntp-port-number)))
1958 proc)
1959 (and nntp-pre-command
1960 (push nntp-pre-command command))
1961 (setq proc (apply 'start-process "nntpd" buffer command))
1962 (with-current-buffer buffer
1963 (nntp-wait-for-string "^\r*20[01]")
1964 (beginning-of-line)
1965 (delete-region (point-min) (point))
1966 proc)))
1967
1968 (defun nntp-open-via-rlogin-and-telnet (buffer)
1969 "Open a connection to an nntp server through an intermediate host.
1970 First rlogin to the remote host, and then telnet the real news server
1971 from there.
1972 `nntp-open-via-rlogin-and-netcat' is recommended in place of this function
1973 because it is more reliable.
1974
1975 Please refer to the following variables to customize the connection:
1976 - `nntp-pre-command',
1977 - `nntp-via-rlogin-command',
1978 - `nntp-via-rlogin-command-switches',
1979 - `nntp-via-user-name',
1980 - `nntp-via-address',
1981 - `nntp-telnet-command',
1982 - `nntp-telnet-switches',
1983 - `nntp-address',
1984 - `nntp-port-number',
1985 - `nntp-end-of-line'."
1986 (let ((command `(,nntp-via-address
1987 ,nntp-telnet-command
1988 ,@nntp-telnet-switches))
1989 proc)
1990 (when nntp-via-user-name
1991 (setq command `("-l" ,nntp-via-user-name ,@command)))
1992 (when nntp-via-rlogin-command-switches
1993 (setq command (append nntp-via-rlogin-command-switches command)))
1994 (push nntp-via-rlogin-command command)
1995 (and nntp-pre-command
1996 (push nntp-pre-command command))
1997 (setq proc (apply 'start-process "nntpd" buffer command))
1998 (with-current-buffer buffer
1999 (nntp-wait-for-string "^r?telnet")
2000 (process-send-string proc (concat "open " nntp-address " "
2001 (nntp-service-to-port nntp-port-number)
2002 "\n"))
2003 (nntp-wait-for-string "^\r*20[01]")
2004 (beginning-of-line)
2005 (delete-region (point-min) (point))
2006 (process-send-string proc "\^]")
2007 (nntp-wait-for-string "^r?telnet")
2008 (process-send-string proc "mode character\n")
2009 (accept-process-output proc 1)
2010 (sit-for 1)
2011 (goto-char (point-min))
2012 (forward-line 1)
2013 (delete-region (point) (point-max)))
2014 proc))
2015
2016 (defun nntp-open-via-rlogin-and-netcat (buffer)
2017 "Open a connection to an nntp server through an intermediate host.
2018 First rlogin to the remote host, and then connect to the real news
2019 server from there using the netcat command.
2020
2021 Please refer to the following variables to customize the connection:
2022 - `nntp-pre-command',
2023 - `nntp-via-rlogin-command',
2024 - `nntp-via-rlogin-command-switches',
2025 - `nntp-via-user-name',
2026 - `nntp-via-address',
2027 - `nntp-netcat-command',
2028 - `nntp-netcat-switches',
2029 - `nntp-address',
2030 - `nntp-port-number'."
2031 (let ((command `(,@(when nntp-pre-command
2032 (list nntp-pre-command))
2033 ,nntp-via-rlogin-command
2034 ,@nntp-via-rlogin-command-switches
2035 ,@(when nntp-via-user-name
2036 (list "-l" nntp-via-user-name))
2037 ,nntp-via-address
2038 ,nntp-netcat-command
2039 ,@nntp-netcat-switches
2040 ,nntp-address
2041 ,(nntp-service-to-port nntp-port-number))))
2042 ;; A non-nil connection type results in mightily odd behavior where
2043 ;; (process-send-string proc "\^M") ends up sending a "\n" to the
2044 ;; ssh process. --Stef
2045 ;; Also a nil connection allow ssh-askpass to work under X11.
2046 (let ((process-connection-type nil))
2047 (apply 'start-process "nntpd" buffer command))))
2048
2049 (defun nntp-open-netcat-stream (buffer)
2050 "Open a connection to an nntp server through netcat.
2051 I.e. use the `nc' command rather than Emacs's builtin networking code.
2052
2053 Please refer to the following variables to customize the connection:
2054 - `nntp-pre-command',
2055 - `nntp-netcat-command',
2056 - `nntp-netcat-switches',
2057 - `nntp-address',
2058 - `nntp-port-number'."
2059 (let ((command `(,nntp-netcat-command
2060 ,@nntp-netcat-switches
2061 ,nntp-address
2062 ,(nntp-service-to-port nntp-port-number))))
2063 (and nntp-pre-command (push nntp-pre-command command))
2064 (let ((process-connection-type nil)) ;See `nntp-open-via-rlogin-and-netcat'.
2065 (apply 'start-process "nntpd" buffer command))))
2066
2067
2068 (defun nntp-open-via-telnet-and-telnet (buffer)
2069 "Open a connection to an nntp server through an intermediate host.
2070 First telnet the remote host, and then telnet the real news server
2071 from there.
2072
2073 Please refer to the following variables to customize the connection:
2074 - `nntp-pre-command',
2075 - `nntp-via-telnet-command',
2076 - `nntp-via-telnet-switches',
2077 - `nntp-via-address',
2078 - `nntp-via-envuser',
2079 - `nntp-via-user-name',
2080 - `nntp-via-user-password',
2081 - `nntp-via-shell-prompt',
2082 - `nntp-telnet-command',
2083 - `nntp-telnet-switches',
2084 - `nntp-address',
2085 - `nntp-port-number',
2086 - `nntp-end-of-line'."
2087 (with-current-buffer buffer
2088 (erase-buffer)
2089 (let ((command `(,nntp-via-telnet-command ,@nntp-via-telnet-switches))
2090 (case-fold-search t)
2091 proc)
2092 (and nntp-pre-command (push nntp-pre-command command))
2093 (setq proc (apply 'start-process "nntpd" buffer command))
2094 (when (memq (process-status proc) '(open run))
2095 (nntp-wait-for-string "^r?telnet")
2096 (process-send-string proc "set escape \^X\n")
2097 (cond
2098 ((and nntp-via-envuser nntp-via-user-name)
2099 (process-send-string proc (concat "open " "-l" nntp-via-user-name
2100 nntp-via-address "\n")))
2101 (t
2102 (process-send-string proc (concat "open " nntp-via-address
2103 "\n"))))
2104 (when (not nntp-via-envuser)
2105 (nntp-wait-for-string "^\r*.?login:")
2106 (process-send-string proc
2107 (concat
2108 (or nntp-via-user-name
2109 (setq nntp-via-user-name
2110 (read-string "login: ")))
2111 "\n")))
2112 (nntp-wait-for-string "^\r*.?password:")
2113 (process-send-string proc
2114 (concat
2115 (or nntp-via-user-password
2116 (setq nntp-via-user-password
2117 (read-passwd "Password: ")))
2118 "\n"))
2119 (nntp-wait-for-string nntp-via-shell-prompt)
2120 (let ((real-telnet-command `("exec"
2121 ,nntp-telnet-command
2122 ,@nntp-telnet-switches
2123 ,nntp-address
2124 ,(nntp-service-to-port nntp-port-number))))
2125 (process-send-string proc
2126 (concat (mapconcat 'identity
2127 real-telnet-command " ")
2128 "\n")))
2129 (nntp-wait-for-string "^\r*20[01]")
2130 (beginning-of-line)
2131 (delete-region (point-min) (point))
2132 (process-send-string proc "\^]")
2133 (nntp-wait-for-string "^r?telnet")
2134 (process-send-string proc "mode character\n")
2135 (accept-process-output proc 1)
2136 (sit-for 1)
2137 (goto-char (point-min))
2138 (forward-line 1)
2139 (delete-region (point) (point-max)))
2140 proc)))
2141
2142 ;; Marks handling
2143
2144 (defun nntp-marks-directory (server)
2145 (expand-file-name server nntp-marks-directory))
2146
2147 (defvar nntp-server-to-method-cache nil
2148 "Alist of servers and select methods.")
2149
2150 (defun nntp-group-pathname (server group &optional file)
2151 "Return an absolute file name of FILE for GROUP on SERVER."
2152 (let ((method (cdr (assoc server nntp-server-to-method-cache))))
2153 (unless method
2154 (push (cons server (setq method (or (gnus-server-to-method server)
2155 (gnus-find-method-for-group group))))
2156 nntp-server-to-method-cache))
2157 (nnmail-group-pathname
2158 (mm-decode-coding-string group
2159 (inline (gnus-group-name-charset method group)))
2160 (nntp-marks-directory server)
2161 file)))
2162
2163 (defun nntp-possibly-create-directory (group server)
2164 (let ((dir (nntp-group-pathname server group))
2165 (file-name-coding-system nnmail-pathname-coding-system))
2166 (unless (file-exists-p dir)
2167 (make-directory (directory-file-name dir) t)
2168 (nnheader-message 5 "Creating nntp marks directory %s" dir))))
2169
2170 (autoload 'time-less-p "time-date")
2171
2172 (defun nntp-marks-changed-p (group server)
2173 (let ((file (nntp-group-pathname server group nntp-marks-file-name))
2174 (file-name-coding-system nnmail-pathname-coding-system))
2175 (if (null (gnus-gethash file nntp-marks-modtime))
2176 t ;; never looked at marks file, assume it has changed
2177 (time-less-p (gnus-gethash file nntp-marks-modtime)
2178 (nth 5 (file-attributes file))))))
2179
2180 (defun nntp-save-marks (group server)
2181 (let ((file-name-coding-system nnmail-pathname-coding-system)
2182 (file (nntp-group-pathname server group nntp-marks-file-name)))
2183 (condition-case err
2184 (progn
2185 (nntp-possibly-create-directory group server)
2186 (with-temp-file file
2187 (erase-buffer)
2188 (gnus-prin1 nntp-marks)
2189 (insert "\n"))
2190 (gnus-sethash file
2191 (nth 5 (file-attributes file))
2192 nntp-marks-modtime))
2193 (error (or (gnus-yes-or-no-p
2194 (format "Could not write to %s (%s). Continue? " file err))
2195 (error "Cannot write to %s (%s)" file err))))))
2196
2197 (defun nntp-open-marks (group server)
2198 (let ((file (nntp-group-pathname server group nntp-marks-file-name))
2199 (file-name-coding-system nnmail-pathname-coding-system))
2200 (if (file-exists-p file)
2201 (condition-case err
2202 (with-temp-buffer
2203 (gnus-sethash file (nth 5 (file-attributes file))
2204 nntp-marks-modtime)
2205 (nnheader-insert-file-contents file)
2206 (setq nntp-marks (read (current-buffer)))
2207 (dolist (el gnus-article-unpropagated-mark-lists)
2208 (setq nntp-marks (gnus-remassoc el nntp-marks))))
2209 (error (or (gnus-yes-or-no-p
2210 (format "Error reading nntp marks file %s (%s). Continuing will use marks from .newsrc.eld. Continue? " file err))
2211 (error "Cannot read nntp marks file %s (%s)" file err))))
2212 ;; User didn't have a .marks file. Probably first time
2213 ;; user of the .marks stuff. Bootstrap it from .newsrc.eld.
2214 (let ((info (gnus-get-info
2215 (gnus-group-prefixed-name
2216 group
2217 (gnus-server-to-method (format "nntp:%s" server)))))
2218 (decoded-name (mm-decode-coding-string
2219 group
2220 (gnus-group-name-charset
2221 (gnus-server-to-method server) group))))
2222 (nnheader-message 7 "Bootstrapping marks for %s..." decoded-name)
2223 (setq nntp-marks (gnus-info-marks info))
2224 (push (cons 'read (gnus-info-read info)) nntp-marks)
2225 (dolist (el gnus-article-unpropagated-mark-lists)
2226 (setq nntp-marks (gnus-remassoc el nntp-marks)))
2227 (nntp-save-marks group server)
2228 (nnheader-message 7 "Bootstrapping marks for %s...done"
2229 decoded-name)))))
2230
2231 (provide 'nntp)
2232
2233 ;;; nntp.el ends here