Masahisa Hori | 4 Nov 2003 05:58
Picon
Picon

Re: Problem compiling on Sparc/Solaris

hi Alex.

On Fri, 24 Oct 2003 14:05:35 -0500
"Alex Moen" <alexm <at> ndtel.com> wrote:

> the "bison -y parsedate.y" break, I dropped into the directory that
> parsedate.y lives and ran "yacc parsedate.y".  This happened one other time

I always compiled inn on solaris 2.6/8 system. and met this case
ever. In this case. the problem is that configure script finds
bison instead of yacc. So, please insert '/usr/ccs/bin' or
appropriate path of yacc to the head of PATH environment
variable, and run configure script.

But, you may think it is not correct way. This is nonessential
solution of this problem i think.

--
Masahisa Hori(HRM)

Tommy van Leeuwen | 5 Nov 2003 21:14
Picon

xpat changes between 2.3 and 2.4?

Hi,

In the past few weeks we've been upgrading about 7 or 8 inn 2.3.x servers
to 2.4 stable from cvs. Now it seems that XPAT doesn't work anymore, at
all.  Well, at least it doesn't give any errors, but it doesn't give any
results either.

Has anything changed between 2.3 and 2.4 regarding XPAT?

group alt.test
211 57159 2877337 2951242 alt.test
xover 2951242
224 2951242 fields follow
2951242 testing Kent M Pitman <pitman <at> nhplace.com>      05 Nov 2003
14:19:09 -0500      <wkbrrqsjwy.fsf <at> nhplace.com>            998     1
Xref: news-x2.support.nl alt.test:2951242
.
xpat Subject 1- *[tT][eE][sS][tT]*
221 Subject matches follow (NOV)
.

221 Subject matches follow (NOV) is always the result, without any
matches.

Also, by using article searches instead of overview searches we get the
same result:

group nl.test
211 12946 383031 398746 nl.test
head 398746
(Continue reading)

Pavel V. Knyazev | 6 Nov 2003 12:41
Picon

resend messages

Hi.

Let's imagine the following. I need to resend some articles
from one feeder to another. If i knew the tokens, that would
be very simple. However, the only thing i know - Message IDs.

How do i retrieve articles by its message-ids and put their
tokens back into an outoing queue for nntpsend?

That second feeder has rejected some messages
due to misconfiguration on its side, that's why i have
to refeed those messages.

Thanks.

--
Pavel V. Knyazev

Pavel V. Knyazev | 6 Nov 2003 12:46
Picon

Re: Any free feeds available?

Of course there are no free feeds. However, if you are able
to get and send articles, that is *exchange*, you can try
to find some peers.

Take a look at: http://www.usenet-se.net/peering

--
Pavel V. Knyazev

----- Original Message ----- 
From: "Henry Ritzert" <a10hlr1 <at> wpo.cso.niu.edu>
To: <inn-workers <at> isc.org>
Sent: Tuesday, October 28, 2003 10:07 PM
Subject: Any free feeds available?

> Hi,
> The university I work for is asking if there are any free feeds out
> there?  Any suggestions where I can look?  Thanks.  
> 

Jeffrey M. Vinocur | 6 Nov 2003 12:50

Re: resend messages

On Thu, 6 Nov 2003, Pavel V. Knyazev wrote:

> Let's imagine the following. I need to resend some articles
> from one feeder to another. If i knew the tokens, that would
> be very simple. However, the only thing i know - Message IDs.

$pathbin/grephistory will convert Message-IDs to storage tokens.

($pathbin/sm will convert storage tokens to article text, if you need.)

--

-- 
Jeffrey M. Vinocur
jeff <at> litech.org

Artur R. Czechowski | 6 Nov 2003 12:53
Picon
Gravatar

Re: resend messages

On Thu, Nov 06, 2003 at 04:41:32PM +0500, Pavel V. Knyazev wrote:
> How do i retrieve articles by its message-ids and put their
> tokens back into an outoing queue for nntpsend?
grephistory should help

Cheers
	Artur

Pavel V. Knyazev | 6 Nov 2003 13:09
Picon

Re: resend messages

> > Let's imagine the following. I need to resend some articles
> > from one feeder to another. If i knew the tokens, that would
> > be very simple. However, the only thing i know - Message IDs.
> 
> $pathbin/grephistory will convert Message-IDs to storage tokens.

Great!
I didn't find any links from man pages to it, though.

> ($pathbin/sm will convert storage tokens to article text, if you need.)

No, i don't.

Thanks a lot again.

> -- 
> Jeffrey M. Vinocur
> jeff <at> litech.org

--
Pavel V. Knyazev

Miquel van Smoorenburg | 6 Nov 2003 13:16
Picon

Re: resend messages

In article <021801c3a45a$ed59c0c0$4201800a <at> surnet.local>,
Pavel V. Knyazev <pasha <at> surnet.ru> wrote:
>Hi.
>
>Let's imagine the following. I need to resend some articles
>from one feeder to another. If i knew the tokens, that would
>be very simple. However, the only thing i know - Message IDs.

Use 'grephistory' to get at the token.

Mike.

--

-- 
The From: and Reply-To: addresses are internal news2mail gateway addresses.
Reply to the list or to "Miquel van Smoorenburg" <miquels <at> cistron.nl>

Tommy van Leeuwen | 6 Nov 2003 14:20
Picon

Re: xpat changes between 2.3 and 2.4?

Hi Again,

After having a quick debug session we came to the conclusion that the
Glom() function from misc.c is broken. The allocated save variable is not
initialized. If it contains garbage, the pattern from xpat is also
garbage. Here's a small fix using calloc instead of alloc to initialize
the pointer and magically xpat is working.

Index: misc.c
===================================================================
RCS file: /cvs/inn/nnrpd/misc.c,v
retrieving revision 1.75.2.1
diff -u -r1.75.2.1 misc.c
--- misc.c      31 May 2003 19:48:27 -0000      1.75.2.1
+++ misc.c      6 Nov 2003 13:17:37 -0000
 <at>  <at>  -78,7 +78,7  <at>  <at> 
        i += strlen(*v) + 1;
     i++;

-    save = xmalloc(i);
+    save = xcalloc(1,i);
     for (v = av; *v; v++) {
        if (v > av)
             strlcat(save, " ", i);

Cheers,
Tommy van Leeuwen
News-Service.com

On Wed, 5 Nov 2003, Tommy van Leeuwen wrote:
(Continue reading)

Javier Henderson | 6 Nov 2003 15:31

Re: Any free feeds available?

Well, there are -some- free feeds. For hobbyists, I'd be glad
to feed you via NNTP. Just drop me a note privately.

-jav

* Pavel V. Knyazev <pasha <at> surnet.ru> [031106 03:47]:
> Of course there are no free feeds. However, if you are able
> to get and send articles, that is *exchange*, you can try
> to find some peers.
> 
> Take a look at: http://www.usenet-se.net/peering
> 
> --
> Pavel V. Knyazev
> 
> 
> ----- Original Message ----- 
> From: "Henry Ritzert" <a10hlr1 <at> wpo.cso.niu.edu>
> To: <inn-workers <at> isc.org>
> Sent: Tuesday, October 28, 2003 10:07 PM
> Subject: Any free feeds available?
> 
> 
> > Hi,
> > The university I work for is asking if there are any free feeds out
> > there?  Any suggestions where I can look?  Thanks.  
> > 


Gmane