Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  login

Fundamentally, there may be no basis for anything.


computers / rocksolid.nodes.help / [rslight] Where is the setting for the history range for pulling messages?

SubjectAuthor
* [rslight] Where is the setting for the history range for pullingSyber Shock
+- Re: [rslight] Where is the setting for the history range for pullingRetro Guy
`* Re: [rslight] Where is the setting for the history range forSyber Shock
 `- Re: [rslight] Where is the setting for the history range for pullingRetro Guy

1
[rslight] Where is the setting for the history range for pulling messages?
  rocksolid.nodes.help
Path: i2pn2.org!rocksolid2!.POSTED.nightbulb.net!not-for-mail
From: admin@sybershock.com (Syber Shock)
Newsgroups: rocksolid.nodes.help
Subject: [rslight] Where is the setting for the history range for pulling
messages?
Date: Thu, 13 Apr 2023 21:42:33 -0500
Organization: sybershock.com
Message-ID: <e1e269119b510b8bcad7abbc087f0f11$1@sybershock.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Injection-Info: novabbs.org; posting-account="sybershock"; posting-host="nightbulb.net:216.24.252.247";
logging-data="20836"; mail-complaints-to="usenet@novabbs.org"
Xref: rslight2 rocksolid.nodes.help:311
 by: Syber Shock - Fri, 14 Apr 2023 02:42 UTC

I configured some Usenet test groups to watch the synchronization. It
seems that rslight pulls only 1000 messages from a group with 10K+
messages and does not pull any further back in the history. It
continues to update newer messages that come into the groups but does
not finish synchronizing the entire history.

Example here:
https://sybershock.com/forum/random/thread.php?group=alt.anonymous.messages&first=1201&last=1400

Is there a configuration option to change this and make rslight pull
older messages from a peer? I want it to update the past three years of
messages then ignore older ones. I can't find anything relevant in the
config so some help would be appreciated.

--

SugarBug | https://sybershock.com

Re: [rslight] Where is the setting for the history range for pulling messages?
  rocksolid.nodes.help
Path: i2pn2.org!.POSTED.novabbs-org!not-for-mail
From: retro.guy@rocksolidbbs.com (Retro Guy)
Newsgroups: rocksolid.nodes.help
Subject: Re: [rslight] Where is the setting for the history range for pulling
messages?
Date: Fri, 14 Apr 2023 03:03:58 +0000
Organization: Rocksolid Light
Message-ID: <c0fc09d962f35d40e1740a55742770bf@news.novabbs.org>
References: <e1e269119b510b8bcad7abbc087f0f11$1@sybershock.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Info: i2pn2.i2pn2.org; posting-account="novabbs.org"; posting-host="novabbs-org:10.136.143.187";
logging-data="17123"; mail-complaints-to="usenet@i2pn2.org"
User-Agent: Rocksolid Light 0.7.2
X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on novabbs.org
X-Rslight-Site: $2y$10$Qd8fxQyEoJWbHPaEYTMs6O7zaqGIT/7KHFvnYZZ9RSzN6vKwfPN92
X-Rslight-Posting-User: 91053d4a47d51b416144568e5a1040f05e31ed1b
X-Face: .&YR-G(w(DZ$$,}%k=]*5*!p'=(anr"IT`wZG'2VWdfl\r)l[42u7JH`n(JUQ*e5*A|XCDf
?&\X&uwkl38"CYX3O8m}C8E4p'%N$2#kSTVzx{Ly|DjLT\Vk7NE}NQ(VC$Yq]i:7|z[.9iv^g>*8_B
H0=hZt'[%)4kG|
Xref: rslight2 rocksolid.nodes.help:312
 by: Retro Guy - Fri, 14 Apr 2023 03:03 UTC

Syber Shock wrote:

> I configured some Usenet test groups to watch the synchronization. It
> seems that rslight pulls only 1000 messages from a group with 10K+
> messages and does not pull any further back in the history. It
> continues to update newer messages that come into the groups but does
> not finish synchronizing the entire history.

> Example here:
> https://sybershock.com/forum/random/thread.php?group=alt.anonymous.messages&first=1201&last=1400

> Is there a configuration option to change this and make rslight pull
> older messages from a peer? I want it to update the past three years of
> messages then ignore older ones. I can't find anything relevant in the
> config so some help would be appreciated.

This is set in $maxfirstrequest rslight/scripts/spoolnews.php:

if(!isset($maxarticles_per_run)) {
$maxarticles_per_run = 100;
} if(!isset($maxfirstrequest)) {
$maxfirstrequest = 1000;
}

if(!isset($CONFIG['enable_nntp']) || $CONFIG['enable_nntp'] != true) {
$maxfirstrequest = $maxarticles;
$maxarticles_per_run = $maxfetch;
}

There is currently no configure option to change it, it's hard coded, but you can change
it in the file around line 38:

if(!isset($maxarticles_per_run)) {
$maxarticles_per_run = 100;
} if(!isset($maxfirstrequest)) {
$maxfirstrequest = 10000;
}

if(!isset($CONFIG['enable_nntp']) || $CONFIG['enable_nntp'] != true) {
$maxfirstrequest = $maxarticles;
$maxarticles_per_run = $maxfetch;
}

--
Retro Guy

Re: [rslight] Where is the setting for the history range for pulling
  rocksolid.nodes.help
Path: i2pn2.org!rocksolid2!.POSTED.nightbulb.net!not-for-mail
From: admin@sybershock.com (Syber Shock)
Newsgroups: rocksolid.nodes.help
Subject: Re: [rslight] Where is the setting for the history range for
pulling
Date: Thu, 13 Apr 2023 22:14:12 -0500
Organization: sybershock.com
Message-ID: <3434cd8f829c07d6cbbf54c0caefcf49$1@sybershock.com>
References: <e1e269119b510b8bcad7abbc087f0f11$1@sybershock.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Injection-Info: novabbs.org; posting-account="sybershock"; posting-host="nightbulb.net:216.24.252.247";
logging-data="26146"; mail-complaints-to="usenet@novabbs.org"
Xref: rslight2 rocksolid.nodes.help:313
 by: Syber Shock - Fri, 14 Apr 2023 03:14 UTC

<snip>

I did find this:

scripts/spoolnews.php: $maxfirstrequest = 1000;

If I increase this number does that pull further back in history?

And is there a date setting rather than a number? I'd prefer to set it
for 3 years back from whatever the current day is. This way when I add
a new group it will just start syncing 3 years of history.

--

SugarBug | https://sybershock.com

Re: [rslight] Where is the setting for the history range for pulling
  rocksolid.nodes.help
Path: i2pn2.org!.POSTED.novabbs-org!not-for-mail
From: retro.guy@rocksolidbbs.com (Retro Guy)
Newsgroups: rocksolid.nodes.help
Subject: Re: [rslight] Where is the setting for the history range for pulling
Date: Fri, 14 Apr 2023 04:14:58 +0000
Organization: Rocksolid Light
Message-ID: <0d3a689a250f1b8b2f58f2e0b65a9bf0@news.novabbs.org>
References: <e1e269119b510b8bcad7abbc087f0f11$1@sybershock.com> <3434cd8f829c07d6cbbf54c0caefcf49$1@sybershock.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Info: i2pn2.i2pn2.org; posting-account="novabbs.org"; posting-host="novabbs-org:10.136.143.187";
logging-data="24657"; mail-complaints-to="usenet@i2pn2.org"
User-Agent: Rocksolid Light 0.7.2
X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on novabbs.org
X-Rslight-Site: $2y$10$HR9v8xwvU8e0p3We5R3z/uU09eGARcWopGuDSnprJE58RI03H1tr6
X-Rslight-Posting-User: 91053d4a47d51b416144568e5a1040f05e31ed1b
X-Face: .&YR-G(w(DZ$$,}%k=]*5*!p'=(anr"IT`wZG'2VWdfl\r)l[42u7JH`n(JUQ*e5*A|XCDf
?&\X&uwkl38"CYX3O8m}C8E4p'%N$2#kSTVzx{Ly|DjLT\Vk7NE}NQ(VC$Yq]i:7|z[.9iv^g>*8_B
H0=hZt'[%)4kG|
Xref: rslight2 rocksolid.nodes.help:314
 by: Retro Guy - Fri, 14 Apr 2023 04:14 UTC

Syber Shock wrote:

> <snip>

> I did find this:

> scripts/spoolnews.php: $maxfirstrequest = 1000;

That should work.

> If I increase this number does that pull further back in history?

Yes, it just takes the highest number from the server and subtracts
$maxfirstrequest and starts requesting from that number.

> And is there a date setting rather than a number? I'd prefer to set it
> for 3 years back from whatever the current day is. This way when I add
> a new group it will just start syncing 3 years of history.

There is currently no setting to pull by date.

--
Retro Guy

1
server_pubkey.txt

rocksolid light 0.9.1
clearnet tor