Gnus development mailing list
 help / color / mirror / Atom feed
* About .overview file that created by gnus-agent.
@ 1998-02-14  5:47 Tatsuya Ichikawa
  1998-02-14  7:03 ` Jason R Mastaler
  0 siblings, 1 reply; 4+ messages in thread
From: Tatsuya Ichikawa @ 1998-02-14  5:47 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 835 bytes --]


;; I'm sorry for my bad English.

  I always use gnus-agent to read news and mail on unplugged state.

  But my Internet service provider's news server does not return a Xref 
  header , so nnheader-parse-nov returns nil.
  I don't know the version of INN of my Internet service provider.

  So gnus-agent-expire does not expire articles and remove .overview line.
  After gnus-agent-expire has done , .overview file contains nothing.

  This problem is very serious for me.
  So I create following patch to work with .overview file that does not have
  Xref field.

  I have one question.

  Is this a standard setting that news server returns Xref header ??
  If this is true , I ask my Internet service provider's administrator to 
  return Xref header.
  If this is not always true , pleas apply following patch to gnus-agent.el


[-- Attachment #2: gnus-agent.diff --]
[-- Type: application/octet-stream, Size: 769 bytes --]

--- gnus-agent.el.orig	Sat Feb 14 14:09:53 1998
+++ gnus-agent.el	Sat Feb 14 14:45:55 1998
@@ -693,6 +693,18 @@
 	(unless (eq 'nov (gnus-retrieve-headers articles group))
 	  (nnvirtual-convert-headers))
 	;; Save these headers for later processing.
+	;;
+	;; To gnus-agent-expire work fine with no Xref field in .overview 
+	;; Tatsuya Ichikawa <ichikawa@hv.epson.co.jp>
+	(goto-char (point-min))
+	(while (not (eobp))
+	  (and (not (nnheader-parse-nov))
+	       (goto-char (point-at-eol))
+	       (insert "\t"))
+	  (forward-line 1))
+	;; Tatsuya Ichikawa <ichikawa@hv.epson.co.jp>
+	;; To gnus-agent-expire work fine with no Xref field in .overview 
+	;;
 	(copy-to-buffer gnus-agent-overview-buffer (point-min) (point-max))
 	(let (file)
 	  (when (file-exists-p

[-- Attachment #3: Type: text/plain, Size: 270 bytes --]


  Thanks.

-- 
Tatsuya Ichikawa : Epson Software Development Lab, Inc. Nagano , Japan.
# PGP Public Key : See below url. ;-)
  http://www.icat.or.jp/cgi-bin/pgpsearchkey.pl?op=get&search=0x0A2D6599
       E-mail    : <ichikawa@hv.epson.co.jp><t-ichi@po.shiojiri.ne.jp>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: About .overview file that created by gnus-agent.
  1998-02-14  5:47 About .overview file that created by gnus-agent Tatsuya Ichikawa
@ 1998-02-14  7:03 ` Jason R Mastaler
  1998-02-14  7:24   ` Tatsuya Ichikawa
  0 siblings, 1 reply; 4+ messages in thread
From: Jason R Mastaler @ 1998-02-14  7:03 UTC (permalink / raw)


Tatsuya Ichikawa <ichikawa@hv.epson.co.jp> writes:

>   Is this a standard setting that news server returns Xref header ??
>   If this is true , I ask my Internet service provider's administrator to 
>   return Xref header.

I found the following in the "Crosspost Handling" section of the Gnus
manual.  I'd try and talk your News Admin into it.

"To check whether your NNTP server includes the `Xref' header in its
overview files, try `telnet your.nntp.server nntp', `MODE READER' on
`inn' servers, and then say `LIST overview.fmt'.  This may not work,
but if it does, and the last line you get does not read `Xref:full',
then you should shout and whine at your news admin until she includes
the `Xref' header in the overview files."



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: About .overview file that created by gnus-agent.
  1998-02-14  7:03 ` Jason R Mastaler
@ 1998-02-14  7:24   ` Tatsuya Ichikawa
  1998-02-14 19:27     ` Jason R Mastaler
  0 siblings, 1 reply; 4+ messages in thread
From: Tatsuya Ichikawa @ 1998-02-14  7:24 UTC (permalink / raw)


Thank you for your follow up.

>>>>> In <x7ra56llcd.fsf@4b.org> 
>>>>>	"Jason" = Jason R Mastaler <jason@4b.org> wrote:

Jason> I found the following in the "Crosspost Handling" section of the Gnus
Jason> manual.  I'd try and talk your News Admin into it.

Jason> "To check whether your NNTP server includes the `Xref' header in its
Jason> overview files, try `telnet your.nntp.server nntp', `MODE READER' on
Jason> `inn' servers, and then say `LIST overview.fmt'.  This may not work,
Jason> but if it does, and the last line you get does not read `Xref:full',
Jason> then you should shout and whine at your news admin until she includes
Jason> the `Xref' header in the overview files."

  Oh, this is what I want to know.
  What chapter did you get this description in info?
  I shout :-p and ask my provider's news server administrator.

  But sombody using gnus-agent will met same problem , so please apply.

  Thanks again.

-- 
Tatsuya Ichikawa : Epson Software Development Lab, Inc. Nagano , Japan.
# PGP Public Key : See below url. ;-)
  http://www.icat.or.jp/cgi-bin/pgpsearchkey.pl?op=get&search=0x0A2D6599
       E-mail    : <ichikawa@hv.epson.co.jp><t-ichi@po.shiojiri.ne.jp>



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: About .overview file that created by gnus-agent.
  1998-02-14  7:24   ` Tatsuya Ichikawa
@ 1998-02-14 19:27     ` Jason R Mastaler
  0 siblings, 0 replies; 4+ messages in thread
From: Jason R Mastaler @ 1998-02-14 19:27 UTC (permalink / raw)


Tatsuya Ichikawa <ichikawa@hv.epson.co.jp> writes:

>   What chapter did you get this description in info?

>From the top Gnus info page, go to "The Summary Buffer::", then
"Crosspost Handling::".  It's there.



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~1998-02-14 19:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-02-14  5:47 About .overview file that created by gnus-agent Tatsuya Ichikawa
1998-02-14  7:03 ` Jason R Mastaler
1998-02-14  7:24   ` Tatsuya Ichikawa
1998-02-14 19:27     ` Jason R Mastaler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).