Your message dated Sun, 13 Apr 2008 23:54:36 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#440556: emacs22: gnus fails to fetch parent article
with some nntp servers
has caused the Debian Bug report #440556,
regarding emacs22: gnus fails to fetch parent article with some nntp servers
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
440556: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440556
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: emacs22
Version: 22.1+1-2
Severity: normal
Tags: patch
Fetching the parent article from the summary buffer with
gnus-summary-refer-parent-article will fail with some nntp servers.
The attached patch from upstream [1] fixes this. Please include it in
the next Debian package for emacs.
Ansgar
[1]
http://cvs.savannah.gnu.org/viewvc/emacs/lisp/gnus/nntp.el?root=emacs&r1=1.33.2.2&r2=1.33.2.3&pathrev=EMACS_22_BASE
--- lisp/gnus/nntp.el~ 2007-07-18 12:07:39 +0000
+++ lisp/gnus/nntp.el 2007-08-08 10:12:33 +0000
@@ -203,6 +203,14 @@
server there that you can connect to. See also
`nntp-open-connection-function'")
+(defvoo nntp-xref-number-is-evil nil
+ "*If non-nil, Gnus never trusts article numbers in the Xref header.
+Some news servers, e.g., ones running Diablo, run multiple engines
+having the same articles but article numbers are not kept synchronized
+between them. If you connect to such a server, set this to t, and Gnus
+never uses article numbers (that appear in the Xref header and vary by
+which engine is chosen) in order to refer to articles.")
+
(defvoo nntp-coding-system-for-read 'binary
"*Coding system to read from NNTP.")
@@ -1702,7 +1710,8 @@
(match-string 1 xref))
(t "")))
(cond
- ((and (setq xref (mail-fetch-field "xref"))
+ ((and (not nntp-xref-number-is-evil)
+ (setq xref (mail-fetch-field "xref"))
(string-match
(if group
(concat "\\(" (regexp-quote group) "\\):\\([0-9]+\\)")
--- End Message ---
--- Begin Message ---
package: emacs22
version: 22.2+1-1
On 2007-09-02 20:44 +0200, Ansgar Burchardt wrote:
> Package: emacs22
> Version: 22.1+1-2
> Severity: normal
> Tags: patch
>
> Fetching the parent article from the summary buffer with
> gnus-summary-refer-parent-article will fail with some nntp servers.
>
> The attached patch from upstream [1] fixes this. Please include it in
> the next Debian package for emacs.
The patch is in included Emacs 22.2, closing the bug.
Cheers,
Sven
--- End Message ---