https://gitlab.synchro.net/main/sbbs/-/issues/888#note_6763That sounds like a bug in itself. I would have thought it'd have to
I have figured this out and will close the issue. Apparently the
magic name defined in ../ctrl/freqit.ini (as in [ALLFILES]) must be
in lowercase. I had it in all CAPS and when I changed it to
lowercase things work as expected. Ugh.
---
â– Synchronet â– Vertrauen â– Home of Synchronet â– [vert/cvs/bbs].synchro.net
On Thu, 13 Mar 2025 14:06:07 -0700
"Daniel Clough" (VERT) <VERT!Daniel.Clough@endofthelinebbs.com> wrote:
https://gitlab.synchro.net/main/sbbs/-/issues/888#note_6763
I have figured this out and will close the issue. Apparently the
magic name defined in ../ctrl/freqit.ini (as in [ALLFILES]) must be
in lowercase. I had it in all CAPS and when I changed it to
lowercase things work as expected. Ugh.
---That sounds like a bug in itself. I would have thought it'd have to
þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
match exact case or be case insensitive rather than only matching lower case. That sort of doesn't make sense.
The code (freqit_common.js) calls wildmatch() for magic names, case-insensitively:
wildmatch(fent.name, match, true)
so it certainly *should* be case-insensitive.
nelgin wrote to All <=-
That sounds like a bug in itself. I would have thought it'd have to
match exact case or be case insensitive rather than only matching lower case. That sort of doesn't make sense.
On Thu, 13 Mar 2025 14:06:07 -0700
"Daniel Clough" (VERT) <VERT!Daniel.Clough@endofthelinebbs.com> wrote:
https://gitlab.synchro.net/main/sbbs/-/issues/888#note_6763
I have figured this out and will close the issue. Apparently the
magic name defined in ../ctrl/freqit.ini (as in [ALLFILES]) must be
in lowercase. I had it in all CAPS and when I changed it to
lowercase things work as expected. Ugh.
That sounds like a bug in itself. I would have thought it'd have to
match exact case or be case insensitive rather than only matching lower case. That sort of doesn't make sense.
The code (freqit_common.js) calls wildmatch() for magic names, case-insensitively:
wildmatch(fent.name, match, true)
so it certainly *should* be case-insensitive.
Re: Re: FreqIt doesn't respond to incoming .req files
By: Digital Man to nelgin on Thu Mar 13 2025 23:05:09
The code (freqit_common.js) calls wildmatch() for magic names, case-insensitively:
wildmatch(fent.name, match, true)
so it certainly *should* be case-insensitive.
So we're back to user error then...figures ;)
Re: Re: FreqIt doesn't respond to incoming .req files
By: Digital Man to nelgin on Thu Mar 13 2025 11:05 pm
On Thu, 13 Mar 2025 14:06:07 -0700
"Daniel Clough" (VERT) <VERT!Daniel.Clough@endofthelinebbs.com> wrote:
https://gitlab.synchro.net/main/sbbs/-/issues/888#note_6763
I have figured this out and will close the issue. Apparently the magic name defined in ../ctrl/freqit.ini (as in [ALLFILES]) must be in lowercase. I had it in all CAPS and when I changed it to lowercase things work as expected. Ugh.
That sounds like a bug in itself. I would have thought it'd have to match exact case or be case insensitive rather than only matching lower case. That sort of doesn't make sense.
The code (freqit_common.js) calls wildmatch() for magic names, case-insensitively:
wildmatch(fent.name, match, true)
so it certainly *should* be case-insensitive.
Agreed that it *should* be, but I just tested things again and it most certainly is not. I tested it by changing *ONLY* the case of the header in the freqit.ini file, and repeating the test from a remote system.
Just to be clear what I'm talking about, I'm saying the section header in the freqit.ini file (as in: [ALLFILES]) does not work if it's all caps.
When it is lowercase it works as expected.
What I am *NOT* talking about is the file request netmail itself, on the Subject line. That can be written: FR: ALLFILES ... or FR: allfiles , and either one works fine.
I welcome someone else trying this test and reporting results.
Digital Man wrote to Gamgee <=-
I have figured this out and will close the issue. Apparently the magic name defined in ../ctrl/freqit.ini (as in [ALLFILES]) must be in lowercase. I had it in all CAPS and when I changed it to lowercase things work as expected. Ugh.
The code (freqit_common.js) calls wildmatch() for magic names, case-insensitively:
wildmatch(fent.name, match, true)
so it certainly *should* be case-insensitive.
Agreed that it *should* be, but I just tested things again and it most certainly is not. I tested it by changing *ONLY* the case of the header in the freqit.ini file, and repeating the test from a remote system.
Just to be clear what I'm talking about, I'm saying the section header in the freqit.ini file (as in: [ALLFILES]) does not work if it's all caps.
When it is lowercase it works as expected.
What I am *NOT* talking about is the file request netmail itself, on the Subject line. That can be written: FR: ALLFILES ... or FR: allfiles , and either one works fine.
I welcome someone else trying this test and reporting results.
I understand. I'm just looking at the code (freqit_common.js) and I see that it's using the Sync-JS global "wildmatch" function to do the magic name and filename comparisons against the requested name and that
function (wildmatch, see https://www.synchro.net/docs/jsobjs.html for details) compares case-insensitively by default (the script author
would have had to pass "true" as the first argument to wildmatch() for
it to behave case-sensitively). So the intention of the script is for
it to be compare case-insensitively. If it's not, it could be a bug in wildmatch() or perhaps in the script itself.
Digital Man wrote to Gamgee <=-
I have figured this out and will close the issue. Apparently the magic name defined in ../ctrl/freqit.ini (as in [ALLFILES]) must be in lowercase. I had it in all CAPS and when I changed it to lowercase things work as expected. Ugh.
The code (freqit_common.js) calls wildmatch() for magic names, case-insensitively:
wildmatch(fent.name, match, true)
so it certainly *should* be case-insensitive.
Agreed that it *should* be, but I just tested things again and it most certainly is not. I tested it by changing *ONLY* the case of the header in the freqit.ini file, and repeating the test from a remote system.
Just to be clear what I'm talking about, I'm saying the section header in the freqit.ini file (as in: [ALLFILES]) does not work if it's all caps. When it is lowercase it works as expected.
What I am *NOT* talking about is the file request netmail itself, on the Subject line. That can be written: FR: ALLFILES ... or FR: allfiles , and either one works fine.
I welcome someone else trying this test and reporting results.
I understand. I'm just looking at the code (freqit_common.js) and I see that it's using the Sync-JS global "wildmatch" function to do the magic name and filename comparisons against the requested name and that function (wildmatch, see https://www.synchro.net/docs/jsobjs.html for details) compares case-insensitively by default (the script author would have had to pass "true" as the first argument to wildmatch() for it to behave case-sensitively). So the intention of the script is for it to be compare case-insensitively. If it's not, it could be a bug in wildmatch() or perhaps in the script itself.
Thank you for the reply, DM. I've looked at those various parts of the code, but am not a .js developer and don't know what I'm seeing. I do
see several references to "fname.tolowercase" in the '../exec/freqit.js script and wonder if that is relevant.
Digital Man wrote to Dan Clough <=-
Just to be clear what I'm talking about, I'm saying the section header in the freqit.ini file (as in: [ALLFILES]) does not work if it's all caps. When it is lowercase it works as expected.
What I am *NOT* talking about is the file request netmail itself, on the Subject line. That can be written: FR: ALLFILES ... or FR: allfiles , and either one works fine.
I welcome someone else trying this test and reporting results.
I understand. I'm just looking at the code (freqit_common.js) and I see that it's using the Sync-JS global "wildmatch" function to do the magic name and filename comparisons against the requested name and that function (wildmatch, see https://www.synchro.net/docs/jsobjs.html for details) compares case-insensitively by default (the script author would have had to pass "true" as the first argument to wildmatch() for it to behave case-sensitively). So the intention of the script is for it to be compare case-insensitively. If it's not, it could be a bug in wildmatch() or perhaps in the script itself.
Thank you for the reply, DM. I've looked at those various parts of the code, but am not a .js developer and don't know what I'm seeing. I do
see several references to "fname.tolowercase" in the '../exec/freqit.js script and wonder if that is relevant.
If you're using BinkIt, then you're not using freqit.js as BinkIT has
the FreqIT functionality integrated into it. freqit.js is for enabling Synchronet file request service (responding to file requests) when
*not* using BinkIT (e.g. using BinkD instead).
Sysop: | Luis Silva |
---|---|
Location: | Lisbon |
Users: | 763 |
Nodes: | 10 (0 / 10) |
Uptime: | 196:08:39 |
Calls: | 247 |
Files: | 46,971 |
Messages: | 12,329 |