• binkit & binkd on the sam

    From Dumas Walker@1:103/705 to AL on Wednesday, July 25, 2018 16:39:00
    No, I just run binkit. I have thought of that and I think that is doable but >the very few times I could use an outbox I just write the path and filename to >the flofile (.flo/.clo/.hlo/.dlo) in the outbound. In my case to send a file to
    1:153/6809 I would enter this in 00991a99.clo in my outbound..

    Ah, ok, I misunderstood. You know, I was thinking that would be manual
    work but I bet I could write a script to check for the presence of a file
    and, if found, create/append the flofile with the info I want appended.

    You can get the base name of a flo file from the linked nodes list in echocfg >between the node number and name in brackets. It needs to go in the correct >outbound directory for the zone the node is in.

    Thanks, I had seen that before. Is that the name of the flo file, or the
    name of the "packet" files (i.e. name.TH0, name.FR0, etc.)? I was not sure.

    ---
    þ SLMR 2.1a þ Keep your stick on the ice
    þ Synchronet þ CAPCITY2 * CCO BBS * capcity2.synchro.net
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Digital Man@1:103/705 to Dumas Walker on Wednesday, July 25, 2018 16:58:53
    Re: binkit & binkd on the sam
    By: Dumas Walker to AL on Wed Jul 25 2018 04:39 pm

    No, I just run binkit. I have thought of that and I think that is doable but >the very few times I could use an outbox I just write the path and filename to >the flofile (.flo/.clo/.hlo/.dlo) in the outbound. In my case to send a file to
    1:153/6809 I would enter this in 00991a99.clo in my outbound..

    Ah, ok, I misunderstood. You know, I was thinking that would be manual
    work but I bet I could write a script to check for the presence of a file and, if found, create/append the flofile with the info I want appended.

    You can get the base name of a flo file from the linked nodes list in echocfg >between the node number and name in brackets. It needs to go in the correct >outbound directory for the zone the node is in.

    Thanks, I had seen that before. Is that the name of the flo file, or the name of the "packet" files (i.e. name.TH0, name.FR0, etc.)? I was not sure.

    http://wiki.synchro.net/ref:fidonet_files

    digital man

    Synchronet/BBS Terminology Definition #38:
    NUL = ASCII 0
    Norco, CA WX: 94.9øF, 41.0% humidity, 9 mph E wind, 0.00 inches rain/24hrs
    --- SBBSecho 3.05-Linux
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Al@1:103/705 to Dumas Walker on Wednesday, July 25, 2018 15:45:52
    Re: binkit & binkd on the sam
    By: Dumas Walker to AL on Wed Jul 25 2018 04:39 pm

    Ah, ok, I misunderstood. You know, I was thinking that would be manual work but I bet I could write a script to check for the presence of a file and, if found, create/append the flofile with the info I want appended.

    That part is a bit tricky in a script. You'll want to be sure to append to an existing flofile and not overwrite it.. :)

    Thanks, I had seen that before. Is that the name of the flo file, or the name of the "packet" files (i.e. name.TH0, name.FR0, etc.)? I was not sure.

    It is the base name of the flo file. The mail bundles get different names, I'm not sure how.

    Ttyl :-),
    Al


    ... Help! I've fallen and can't reach my beer!

    ---
    þ Synchronet þ The Rusty MailBox - Penticton, BC Canada
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Tony Langdon@3:633/410 to Al on Thursday, July 26, 2018 18:56:00
    On 07-25-18 15:45, Al wrote to Dumas Walker <=-

    Ah, ok, I misunderstood. You know, I was thinking that would be manual work but I bet I could write a script to check for the presence of a file and, if found, create/append the flofile with the info I want appended.

    That part is a bit tricky in a script. You'll want to be sure to append
    to an existing flofile and not overwrite it.. :)

    Easy using the >> output redirection in shells like BASH. That creates the file if it doesn't exist, and appends otherwise. I think it works in DOS/Windows too.


    ... Mr. Spock wears vulcanized rubbers.
    === MultiMail/Win v0.51
    --- SBBSecho 3.03-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)
  • From Nightfox@1:103/705 to Tony Langdon on Thursday, July 26, 2018 15:38:27
    Re: Re: binkit & binkd on the sam
    By: Tony Langdon to Al on Thu Jul 26 2018 06:56 pm

    Easy using the >> output redirection in shells like BASH. That creates the file if it doesn't exist, and appends otherwise. I think it works in DOS/Windows too.

    Yes, DOS/Windows uses that too. You can also do 2>&1 to also redirect standard error to the file as well (otherwise, you'll have standard output going to the file and error messages going to the screen). Specifically, 2>&1 redirects standard error to the same place where you're redirecting standard output.

    Nightfox

    ---
    þ Synchronet þ Digital Distortion: digitaldistortionbbs.com
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Tony Langdon@3:633/410 to Nightfox on Friday, July 27, 2018 20:05:00
    On 07-26-18 15:38, Nightfox wrote to Tony Langdon <=-

    Yes, DOS/Windows uses that too. You can also do 2>&1 to also redirect standard error to the file as well (otherwise, you'll have standard
    output going to the file and error messages going to the screen). Specifically, 2>&1 redirects standard error to the same place where
    you're redirecting standard output.

    Yep, all standard shell I/O redirection. :)


    ... A celebrity is a person who is known for his or her well-knownness.
    === MultiMail/Win v0.51
    --- SBBSecho 3.03-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)
  • From mark lewis@1:3634/12.73 to Tony Langdon on Friday, August 03, 2018 16:40:40

    On 2018 Jul 26 18:56:00, you wrote to Al:

    Ah, ok, I misunderstood. You know, I was thinking that would be
    manual work but I bet I could write a script to check for the
    presence of a file and, if found, create/append the flofile with the
    info I want appended.

    That part is a bit tricky in a script. You'll want to be sure to
    append to an existing flofile and not overwrite it.. :)

    Easy using the >> output redirection in shells like BASH. That
    creates the file if it doesn't exist, and appends otherwise. I think
    it works in DOS/Windows too.

    i think the tricky part he was talking about is figuring out the ?LO file's basename... it is hella tricky AFAIK... my 4DOS/4OS2 and bash scripts say so ;)
    :lol:














    well... maybe not so much tricky as convoluted a bit...

    )\/(ark

    Always Mount a Scratch Monkey
    Do you manage your own servers? If you are not running an IDS/IPS yer doin' it wrong...
    ... Gawd! I HATE Toronto!
    ---
    * Origin: (1:3634/12.73)
  • From Tony Langdon@3:633/410 to mark lewis on Saturday, August 04, 2018 08:46:00
    On 08-03-18 16:40, mark lewis wrote to Tony Langdon <=-

    i think the tricky part he was talking about is figuring out the ?LO file's basename... it is hella tricky AFAIK... my 4DOS/4OS2 and bash scripts say so ;) :lol:

    Yeah that would be a little tricky - some decimal to hex conversion there. :)


    ... Vegetarian (n.), Ancient native word meaning "lousy hunter".
    === MultiMail/Win v0.51
    --- SBBSecho 3.03-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)
  • From mark lewis@1:3634/12.73 to Tony Langdon on Saturday, August 04, 2018 17:50:06

    On 2018 Aug 04 08:46:00, you wrote to me:

    i think the tricky part he was talking about is figuring out the ?LO
    file's basename... it is hella tricky AFAIK... my 4DOS/4OS2 and bash
    scripts say so ;) :lol:

    Yeah that would be a little tricky - some decimal to hex conversion
    there. :)

    that's the easy part!

    bash:
    printf "%xhex\n" 34
    22hex

    printf "%ddec\n" 0x22
    34dec


    4DOS/4OS2:
    rem : convert the zone (%zn) in decimal to hex
    rem : pad with leading zeros for three places
    rem : use lower case output
    set pzone=%@lower[%@format[03,%@convert[10,16,%zn]]]

    rem : convert the net (%nt) in decimal to hex
    rem : convert the node (%nd) in decimal to hex
    rem : pad both with leading zeros for four places
    rem : use lower case output
    rem : glue net/node together as one output xxxxyyyy form
    set paddr=%@lower[%@format[04,%@convert[10,16,%nt]]%@format[04,%@convert[10,16,%nd]]]

    rem : convert the point (%pt) in decimal to hex
    rem : pad with leading zeros for eight places
    rem : use lower case output
    set ppoint=%@lower[%@format[08,%@convert[10,16,%pt]]]


    the above 4DOS/4OS2 code is for the BSO directory stuff... %@convert[10,16,X] does the heavy lifting to convert X from decimal (10) to hex (16)... AFAIK, you
    can convert from any numbering format to any other... i have not actually tested something like base36 to base10, though... if i have, that brain cell is
    asleep at the moment... at least it isn't kicking my brain right now :lol:


    the real tricky part is the checking for and creating if needed of the BSO directories that's the tough part... especially if you're doing 4D or 5D which makes a big difference... then destination points' directories have to be managed under their boss' out.zzz/xxxxyyyy directory as pppppppp.pnt... it can be real fun to code... i've only done 5D style because nothing i have requires 4D where i have this code in place...


    )\/(ark

    Always Mount a Scratch Monkey
    Do you manage your own servers? If you are not running an IDS/IPS yer doin' it wrong...
    ... A pest is a man that can talk like an encyclopedia - and does.
    ---
    * Origin: (1:3634/12.73)
  • From Tony Langdon@3:633/410 to mark lewis on Sunday, August 05, 2018 17:16:00
    On 08-04-18 17:50, mark lewis wrote to Tony Langdon <=-

    the real tricky part is the checking for and creating if needed of the
    BSO directories that's the tough part... especially if you're doing 4D
    or 5D which makes a big difference... then destination points'
    directories have to be managed under their boss' out.zzz/xxxxyyyy directory as pppppppp.pnt... it can be real fun to code... i've only
    done 5D style because nothing i have requires 4D where i have this code
    in place...

    Should be fairly straightforward in Linux, though I haven't tried. No idea in $DOS/4OS2, because I haven't used those for 15+ year. I used to love 4DOS back in the day. I do all sorts of clever path manipulation in BASH. :)


    ... Ya know, some days life is just one non sequitur after catfish.
    === MultiMail/Win v0.51
    --- SBBSecho 3.03-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)
  • From mark lewis@1:3634/12.73 to Tony Langdon on Monday, August 06, 2018 16:14:20

    On 2018 Aug 05 17:16:00, you wrote to me:

    the real tricky part is the checking for and creating if needed of
    the BSO directories that's the tough part... especially if you're
    doing 4D or 5D which makes a big difference... then destination
    points' directories have to be managed under their boss'
    out.zzz/xxxxyyyy directory as pppppppp.pnt... it can be real fun to
    code... i've only done 5D style because nothing i have requires 4D
    where i have this code in place...

    Should be fairly straightforward in Linux, though I haven't tried. No idea in $DOS/4OS2, because I haven't used those for 15+ year. I used
    to love 4DOS back in the day. I do all sorts of clever path
    manipulation in BASH. :)

    didn't i send you my poll or freq script some time back? the code is in there because the same determinations need to be made as to where to create the poll ?LO file and what its name is as well as creating the freq data file, too... they're real close in form...

    )\/(ark

    Always Mount a Scratch Monkey
    Do you manage your own servers? If you are not running an IDS/IPS yer doin' it wrong...
    ... Scotland-men are men, women are cold, & sheep are nervous.
    ---
    * Origin: (1:3634/12.73)
  • From Tony Langdon@3:633/410 to mark lewis on Tuesday, August 07, 2018 07:09:00
    On 08-06-18 16:14, mark lewis wrote to Tony Langdon <=-

    didn't i send you my poll or freq script some time back? the code is in there because the same determinations need to be made as to where to create the poll ?LO file and what its name is as well as creating the
    freq data file, too... they're real close in form...

    Hmm, I'm not sure. I know I was going to write one, but never got around to it. Or it was one of those things that got lost.


    ... We are operating on many levels here.
    === MultiMail/Win v0.51
    --- SBBSecho 3.03-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)
  • From mark lewis@1:3634/12.73 to Tony Langdon on Monday, August 06, 2018 21:02:28

    On 2018 Aug 07 07:09:00, you wrote to me:

    didn't i send you my poll or freq script some time back? the code is
    in there because the same determinations need to be made as to where
    to create the poll ?LO file and what its name is as well as creating
    the freq data file, too... they're real close in form...

    Hmm, I'm not sure. I know I was going to write one, but never got
    around to it. Or it was one of those things that got lost.

    it may have been one of the pauls that i sent it to... i remember posting it in
    one of these echos with a warning about long lines being wrapped... oh well... if someone wants it, they can ask ;)

    )\/(ark

    Always Mount a Scratch Monkey
    Do you manage your own servers? If you are not running an IDS/IPS yer doin' it wrong...
    ... A lot of money is tainted - It taint yours and it taint mine.
    ---
    * Origin: (1:3634/12.73)
  • From Tony Langdon@3:633/410 to mark lewis on Tuesday, August 07, 2018 16:04:00
    On 08-06-18 21:02, mark lewis wrote to Tony Langdon <=-

    it may have been one of the pauls that i sent it to... i remember
    posting it in one of these echos with a warning about long lines being wrapped... oh well... if someone wants it, they can ask ;)

    I would be interested, as I never got round to writing my FREQ script. :)


    ... Honest Ma, I got it from a toilet seat...
    === MultiMail/Win v0.51
    --- SBBSecho 3.03-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)
  • From Paul Quinn@3:640/384.125 to Tony Langdon on Tuesday, August 07, 2018 17:13:27
    Hi! Tony,

    On 08/07/2018 04:04 PM, you wrote to mark lewis:

    wrapped... oh well... if someone wants it, they can ask ;)

    I would be interested, as I never got round to writing my FREQ script. :)

    No need. That wheel has already been invented by Markus Reschke, as a part of his MFreq package for binkD. There's also a matching 'sendfile' script.

    Just FREQ "MFREQ" from my main system (#384). They may need fine-tuning for your system, too.

    Cheers,
    Paul.

    --- Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.4.0
    * Origin: Funditus tortus sum! Fucatissimum! (3:640/384.125)
  • From Tony Langdon@3:633/410 to Paul Quinn on Wednesday, August 08, 2018 07:37:00
    On 08-07-18 17:13, Paul Quinn wrote to Tony Langdon <=-

    No need. That wheel has already been invented by Markus Reschke, as a part of his MFreq package for binkD. There's also a matching
    'sendfile' script.

    Cool, that sounds like the way to go. :)

    Just FREQ "MFREQ" from my main system (#384). They may need
    fine-tuning for your system, too.

    Umm, there is a bit of a Catch-22 there! :)

    Yeah, I know I can craft one manually, and I have done that before, but it's annoyingly fiddly and I have to have my head in the right place (and with less than 6 hours sleep last night, that's not likely today). :/


    ... TV Truth: All problems can be solved in 30-60 minutes.
    === MultiMail/Win v0.51
    --- SBBSecho 3.03-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)
  • From Paul Quinn@3:640/384.125 to Tony Langdon on Wednesday, August 08, 2018 09:14:22
    Hi! Tony,

    On 08/08/2018 07:37 AM, you wrote:

    Just FREQ "MFREQ" from my main system (#384). They may need
    fine-tuning for your system, too.

    Umm, there is a bit of a Catch-22 there! :)

    Oops. I always assume people have these functions in their mailer(s). (I can do FREQs and file sending with a few mouse clicks in my Radius doover.) AAMOF I FREQ-ed a possible new release of MFREQ from Markus' joint, which was forwarded to yours inside of a minute.

    Anyhow... check your insecure inbound. Enjoy. 8-)

    Cheers,
    Paul

    --- Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.4.0
    * Origin: -=[ I brake for UFOs ]=- (3:640/384.125)
  • From Tony Langdon@3:633/410 to Paul Quinn on Wednesday, August 08, 2018 12:01:00
    On 08-08-18 09:14, Paul Quinn wrote to Tony Langdon <=-

    Oops. I always assume people have these functions in their mailer(s).

    I was asking about binkd, and yes it _can_ do FREQs, but it has to be setup totally by hand or external scripting. :)

    (I can do FREQs and file sending with a few mouse clicks in my Radius doover.) AAMOF I FREQ-ed a possible new release of MFREQ from Markus' joint, which was forwarded to yours inside of a minute.

    If I could do that, I wouldn't be looking for a simple way to do it! :D

    Anyhow... check your insecure inbound. Enjoy. 8-)

    Thanks, will check it out. :)


    ... Half of conversation is listening.
    === MultiMail/Win v0.51
    --- SBBSecho 3.03-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)
  • From Paul Quinn@3:640/384.125 to Tony Langdon on Wednesday, August 08, 2018 17:04:17
    Hi! Tony,

    On 08/08/2018 12:01 PM, you wrote:

    joint, which was forwarded to yours inside of a minute.

    Ahmm... I was the victim of a relativistic gravity well this AM. After checking the logs, I found it took me 2 minutes four seconds. At the time it went whee!-whoosh! and was done. :)

    If I could do that, I wouldn't be looking for a simple way to do it! :D

    The only downside with Radius is that to do an automated FREQ via its cron would be possible but a mind-bending exercise. OTOH, using Markus' tool for such a job on my Linux box via binkD would be a *snap* (and which is essentially extra bling in his package). That's a priority #99 job for my todo
    list now. ;)

    Cheers,
    Paul.

    --- Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.4.0
    * Origin: Confucius say, Sh*t happens. (3:640/384.125)
  • From Tony Langdon@3:633/410 to Paul Quinn on Wednesday, August 08, 2018 19:23:00
    On 08-08-18 17:04, Paul Quinn wrote to Tony Langdon <=-

    Hi! Tony,

    On 08/08/2018 12:01 PM, you wrote:

    joint, which was forwarded to yours inside of a minute.

    Ahmm... I was the victim of a relativistic gravity well this AM. After checking the logs, I found it took me 2 minutes four seconds. At the
    time it went whee!-whoosh! and was done. :)

    You need to slow down, those relativistic velocities really screw up your sense of time. :D

    If I could do that, I wouldn't be looking for a simple way to do it! :D

    The only downside with Radius is that to do an automated FREQ via its
    cron would be possible but a mind-bending exercise. OTOH, using
    Markus' tool for such a job on my Linux box via binkD would be a *snap* (and which is essentially extra bling in his package). That's a
    priority #99 job for my todo list now. ;)

    Ahh OK, cool. Well, I had a look at the package, looks interesting. Will revisit when my head's in the right place. :)


    ... My modem isn't slow- it's "baudily challenged!"
    === MultiMail/Win v0.51
    --- SBBSecho 3.03-Linux
    * Origin: Freeway BBS Bendigo,Australia freeway.apana.org.au (3:633/410)