• Dropfile Issues

    From Daryl Stout@1:103/705 to All on Thu Dec 7 09:53:44 2017
    I normally use either DORINFO1.DEF or DOOR.SYS for the door dropfiles.
    But, when a user with a one word alias tries to enter a door (I have
    real names turned OFF), the door crashes, and locks the node, because
    it doesn't know what to do with a one word alias/name in the dropfile.

    The only options are to either turn real names on (some have requested
    that this NOT be done), have them change their one word alias to a two
    word alias (i.e. from Warrior to Grimy Trader), or they are just "locked
    out" of the doors.

    Has anyone else experienced this?? If so, how do you handle it??

    Daryl

    ---
    * Synchronet * The Thunderbolt BBS - wx1der.dyndns.org
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Digital Man@1:103/705 to Daryl Stout on Thu Dec 7 12:33:24 2017
    Re: Dropfile Issues
    By: Daryl Stout to All on Thu Dec 07 2017 09:53 am

    I normally use either DORINFO1.DEF or DOOR.SYS for the door dropfiles. But, when a user with a one word alias tries to enter a door (I have
    real names turned OFF), the door crashes, and locks the node, because
    it doesn't know what to do with a one word alias/name in the dropfile.

    Which doors crash? Certainly not *all* doors crash under this condition.

    The only options are to either turn real names on (some have requested that this NOT be done), have them change their one word alias to a two
    word alias (i.e. from Warrior to Grimy Trader), or they are just "locked out" of the doors.

    Has anyone else experienced this?? If so, how do you handle it??

    Perhaps if you mentioned which doors this happens with, that would trigger (heh) other sysops into remembering if they have that particular door and then test it and see what happens.

    digital man

    Synchronet/BBS Terminology Definition #41:
    R0DENT = Derogatory reference to a young BBS user of the 1990's
    Norco, CA WX: 71.6oF, 8.0% humidity, 16 mph SE wind, 0.00 inches rain/24hrs
    --- SBBSecho 3.03-Win32
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Nightfox@1:103/705 to Daryl Stout on Thu Dec 7 12:32:40 2017
    Re: Dropfile Issues
    By: Daryl Stout to All on Thu Dec 07 2017 09:53 am

    I normally use either DORINFO1.DEF or DOOR.SYS for the door dropfiles. But, when a user with a one word alias tries to enter a door (I have
    real names turned OFF), the door crashes, and locks the node, because
    it doesn't know what to do with a one word alias/name in the dropfile.

    The only options are to either turn real names on (some have requested that this NOT be done), have them change their one word alias to a two word alias (i.e. from Warrior to Grimy Trader), or they are just "locked out" of the doors.

    Does that happen with all doors or a specific door? I haven't seen that happen and haven't heard of that before. Most doors I've installed can use the users' handles just fine. That sounds like a bug that would be with a specific door rather than all doors in general.

    Nightfox

    ---
    * Synchronet * Digital Distortion: digitaldistortionbbs.com
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From DaiTengu@1:103/705 to Daryl Stout on Thu Dec 7 16:53:06 2017
    Re: Dropfile Issues
    By: Daryl Stout to All on Thu Dec 07 2017 09:53 am

    I normally use either DORINFO1.DEF or DOOR.SYS for the door dropfiles. But, when a user with a one word alias tries to enter a door (I have
    real names turned OFF), the door crashes, and locks the node, because
    it doesn't know what to do with a one word alias/name in the dropfile.

    What door?

    I could probably easily handle this on Linux, using a bash script with
    awk/sed to just forcibly write the user's handle twice in the dropfile. I'm not sure if you could do something similar in windows/dos.

    For instance, line 10 in DOOR.SYS is the username.

    #!/bin/bash
    # dropfile name needs to be passed to this script as first argument
    # to avoid case issues.
    dropfile="$1"
    username="$(sed '10q;d' $SBBSNODE/$dropfile)"
    numwords="$(echo $username | wc -w)"

    if [ $numwords -eq 1 ] ; then
    newusername="$username $username"
    sed -i "10s/.*/$newusername/" $SBBSNODE/$dropfile
    elif [ $numwords -eq 0 ] ; then
    echo "BAIL OUT! SOMETHING HORRIBLE HAPPENED! USERNAME NOT FOUND!"
    exit 1;
    else
    echo "more than one username found, continuing..."
    fi

    =====================

    So, what that does is it checks line 10 of $dropfile (the name of which is passed to the script) for the number of words, if it only finds one, it replaces the line with the username twice (eg: DAITENGU DAITENGU). otherwise it leaves it alone. if it does not find any words on line 0, it bails out.

    This script probably isn't ready for production, as I'm not quite sure where it would get called. a batch file probably could do something similar, but I'm not familiar enough with batch files anymore to write one.

    DaiTengu

    ... A professor is one who talks in someone else's sleep.

    ---
    * Synchronet * War Ensemble BBS - The sport is war, total war - warensemble.com
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From KK4QBN@1:103/705 to Digital Man on Thu Dec 7 23:44:30 2017
    Re: Dropfile Issues
    By: Digital Man to Daryl Stout on Thu Dec 07 2017 12:33:24

    Perhaps if you mentioned which doors this happens with, that would trigger (heh) other sysops into remembering if they have that particular door and then test it and see what happens.


    Yeah, what he said... and truthfully.. some Sysops may actually get TRIGGERED :)

    --

    Tim Smith (KK4QBN)
    KK4QBN BBS

    ---
    * Synchronet * KK4QBN BBS - kk4qbn.com - kk4qbn.synchro.net - Chatsworth GA USA
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From DesotoFireflite@1:103/705 to Daryl Stout on Fri Dec 8 06:39:56 2017
    Re: Dropfile Issues
    By: Daryl Stout to All on Thu Dec 07 2017 09:53 am

    I normally use either DORINFO1.DEF or DOOR.SYS for the door dropfiles. But, when a user with a one word alias tries to enter a door (I have
    real names turned OFF), the door crashes, and locks the node, because
    it doesn't know what to do with a one word alias/name in the dropfile.

    The only options are to either turn real names on (some have requested that this NOT be done), have them change their one word alias to a two word alias (i.e. from Warrior to Grimy Trader), or they are just "locked out" of the doors.

    Has anyone else experienced this?? If so, how do you handle it??

    I run about 200 doors, some old, some new, and have never encountered this on Synchronet or GAP. My handle is desotofireflite, (one Word), and I've never seen the issue. What doors are choking on one word handles. It may be a dorinfo1.def thing. I use door.sys when at all possable. If it's BRE, FE or TAL like we discussed yesterday, Synchronet has the option of making the doorfile.sr that is need by these 3 doors, just put them in the door directory.

    Synchronet is one of the easiest systems around to set up doors.

    SysOp: C.G. Learn, AKA: DesotoFireflite
    Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com
    Valhalla II! - (GAP) - bbs.valhallabbs.com:24
    A Gamers Paradise - Over 150 Registered Online Game Doors!

    Play Trade Wars Between 10 Other BBS's On Valhalla's Trade Wars Game Server!

    Featuring Legion, A New RPG, Available On Both Systems!

    --- FART(n): An audio test of one's waste-disposal system.
    * Synchronet * Valhalla Home Services * USA * http://valhalla.synchro.net
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From mark lewis@1:3634/12.73 to DesotoFireflite on Fri Dec 8 10:22:44 2017

    On 2017 Dec 08 06:39:56, you wrote to Daryl Stout:

    The only options are to either turn real names on (some have requested
    that this NOT be done), have them change their one word alias to a two
    word alias (i.e. from Warrior to Grimy Trader), or they are just
    "locked out" of the doors.

    Has anyone else experienced this?? If so, how do you handle it??

    I run about 200 doors, some old, some new, and have never encountered this on Synchronet or GAP. My handle is desotofireflite, (one Word), and I've never seen the issue. What doors are choking on one word handles.

    i suspect the problem is that daryl is using the new capability to swap real names with handles and that the complaining doors are expecting two word real names... so the door sees a single word handle in the real name field and complains because it is not two words like it expects...

    in other words, the door is not complaining about one word handles... it is complaining about one word real names...

    )\/(ark

    Always Mount a Scratch Monkey
    Do you manage your own servers? If you are not running an IDS/IPS yer doin' it wrong...
    ... The UN reacting to crisis with unusual swiftness resolves to do nothing. ---
    * Origin: (1:3634/12.73)
  • From Digital Man@1:103/705 to mark lewis on Fri Dec 8 10:23:17 2017
    Re: Dropfile Issues
    By: mark lewis to DesotoFireflite on Fri Dec 08 2017 10:22 am


    On 2017 Dec 08 06:39:56, you wrote to Daryl Stout:

    The only options are to either turn real names on (some have requested
    that this NOT be done), have them change their one word alias to a two
    word alias (i.e. from Warrior to Grimy Trader), or they are just
    "locked out" of the doors.

    Has anyone else experienced this?? If so, how do you handle it??

    I run about 200 doors, some old, some new, and have never encountered this on Synchronet or GAP. My handle is desotofireflite, (one Word), and I've never seen the issue. What doors are choking on one word handles.

    i suspect the problem is that daryl is using the new capability to swap real names with handles and that the complaining doors are expecting two word real names... so the door sees a single word handle in the real name field and complains because it is not two words like it expects...

    in other words, the door is not complaining about one word handles... it is complaining about one word real names...

    What capability is this? Synchronet has only one option with regards to names/aliases in drop files, and that is to place the user's real name wheir their alias/handle/id would normally go (in some drop files). The "real name" field in the drop file (if it has one) always contains the user's "real name" from the BBS database. There is no Synchronet option to "swap" these values.

    digital man

    Synchronet/BBS Terminology Definition #57:
    XOFF = Transmit Off (ASCII 19, Ctrl-S)
    Norco, CA WX: 73.5oF, 13.0% humidity, 6 mph WSW wind, 0.00 inches rain/24hrs --- SBBSecho 3.03-Win32
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Daryl Stout@1:103/705 to DIGITAL MAN on Fri Dec 8 10:24:00 2017
    Rob,

    Which doors crash? Certainly not *all* doors crash under this condition.

    All of them. I mainly use DOOR.SYS or DORINFO1.DEF as the dropfile.

    Perhaps if you mentioned which doors this happens with, that would trigger DM>(heh) other sysops into remembering if they have that particular door and th DM>test it and see what happens.

    Except for the Synchronet doors that came with the setup, every other
    door that I have crashes, if there's a one word alias...either with DORINFO1.DEF or DOOR.SYS as the dropfile.

    Daryl

    ---
    * OLX 1.53 * You know it's cold out, when you go out, and it's cold.
    * Synchronet * The Thunderbolt BBS - wx1der.dyndns.org
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Daryl Stout@1:103/705 to NIGHTFOX on Fri Dec 8 10:24:00 2017
    Does that happen with all doors or a specific door? I haven't seen that happ N>and haven't heard of that before. Most doors I've installed can use the user N>handles just fine. That sounds like a bug that would be with a specific door N>rather than all doors in general.

    All of them...either with DORINFO1.DEF or DOOR.SYS as the dropfile.
    I'm running Windows 7 32-bit.

    If they use a 2 word alias or their first and last name, everything is
    fine.

    Daryl
    ---
    * OLX 1.53 * You'll have no other Sysop before me (just kidding).
    * Synchronet * The Thunderbolt BBS - wx1der.dyndns.org
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Daryl Stout@1:103/705 to DESOTOFIREFLITE on Fri Dec 8 10:26:00 2017
    C.G.,

    I run about 200 doors, some old, some new, and have never encountered this on D>Synchronet or GAP. My handle is desotofireflite, (one Word), and I've never D>seen the issue. What doors are choking on one word handles. It may be a D>dorinfo1.def thing. I use door.sys when at all possable. If it's BRE, FE or T D>like we discussed yesterday, Synchronet has the option of making the D>doorfile.sr that is need by these 3 doors, just put them in the door director

    It may be just with DORINFO1.DEF -- but awhile back when I tried it
    with the DOOR.SYS doors, it did likewise.

    Synchronet is one of the easiest systems around to set up doors.

    That is correct. You don't need batchfiles to run the doors, and you
    can set up non-fossil doors like a fossil door, and use them. It's the
    ONLY BBS package I know of that does this.

    Daryl

    ---
    * OLX 1.53 * You'll win the lottery, & spend the winnings on The Sysop
    * Synchronet * The Thunderbolt BBS - wx1der.dyndns.org
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Nightfox@1:103/705 to Daryl Stout on Fri Dec 8 12:47:16 2017
    Re: Dropfile Issues
    By: Daryl Stout to DESOTOFIREFLITE on Fri Dec 08 2017 10:26 am

    That is correct. You don't need batchfiles to run the doors, and you
    can set up non-fossil doors like a fossil door, and use them. It's the ONLY BBS package I know of that does this.

    I was in the habit of using batch files, but I like that you don't have to use them with Synchronet. One thing I think a batch file is useful for, though, is if there's a problem with the door, you can put a "pause" statement in the batch file after the door command, and Windows will keep the command prompt window open so you can see whatever error the door might be outputting. But then if you want to switch to a batch file, you have to change the command in SCFG, and if anyone is logged in, you have to wait for them to log off so Synchronet can recycle its configuration..

    Nightfox

    ---
    * Synchronet * Digital Distortion: digitaldistortionbbs.com
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From mark lewis@1:3634/12.73 to Digital Man on Fri Dec 8 15:55:42 2017

    On 2017 Dec 08 10:23:16, you wrote to me:

    i suspect the problem is that daryl is using the new capability to swap
    real names with handles and that the complaining doors are expecting
    two word real names... so the door sees a single word handle in the
    real name field and complains because it is not two words like it
    expects... in other words, the door is not complaining about one word
    handles... it is complaining about one word real names...

    What capability is this? Synchronet has only one option with regards to names/aliases in drop files, and that is to place the user's real name wheir their alias/handle/id would normally go (in some drop files). The "real name" field in the drop file (if it has one) always contains the user's "real name" from the BBS database. There is no Synchronet option to "swap" these values.

    didn't you just (six weeks ago or so?) add an option for the door command line in sbbs that places the handle where the real name used to be in the drop file?
    it was something daryl had asked for, IIRC... i'll have to hunt down the topic to be more specific... i can't even recall the two or three character sequence desginated for this... %S or i dunno...

    )\/(ark

    Always Mount a Scratch Monkey
    Do you manage your own servers? If you are not running an IDS/IPS yer doin' it wrong...
    ... Use subdirectories; keep your FAT thin!
    ---
    * Origin: (1:3634/12.73)
  • From Digital Man@1:103/705 to mark lewis on Fri Dec 8 13:18:45 2017
    Re: Dropfile Issues
    By: mark lewis to Digital Man on Fri Dec 08 2017 03:55 pm


    On 2017 Dec 08 10:23:16, you wrote to me:

    i suspect the problem is that daryl is using the new capability to swap
    real names with handles and that the complaining doors are expecting
    two word real names... so the door sees a single word handle in the
    real name field and complains because it is not two words like it
    expects... in other words, the door is not complaining about one word
    handles... it is complaining about one word real names...

    What capability is this? Synchronet has only one option with regards to names/aliases in drop files, and that is to place the user's real name wheir their alias/handle/id would normally go (in some drop files). The "real name" field in the drop file (if it has one) always contains the user's "real name" from the BBS database. There is no Synchronet option to "swap" these values.

    didn't you just (six weeks ago or so?) add an option for the door command line in sbbs that places the handle where the real name used to be in the drop file?
    it was something daryl had asked for, IIRC... i'll have to hunt down the topic to be more specific... i can't even recall the two or three character sequence desginated for this... %S or i dunno...

    I think you're thinking of the RLogin gateway option (TG_RLOGINSWAP) - has no effect on drop files created by Synchronet.

    digital man

    Synchronet/BBS Terminology Definition #28:
    IHA = Ille Homine Albe (Steve Deppe)
    Norco, CA WX: 77.4oF, 10.0% humidity, 5 mph ESE wind, 0.00 inches rain/24hrs --- SBBSecho 3.03-Win32
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From John McCoy@1:249/400 to Daryl Stout on Fri Dec 8 16:12:53 2017
    Hi Daryl,

    I seem to recall that when using Maximus way back it detected and dealt with this by appending NLN (no last name) to any single-word names in its
    dropfiles. Some doors even expected this and referred to the user by their single-word name if they saw this in the dropfile.

    Does Synchronet have any similar option?

    On 12/08/17, Daryl Stout said the following...

    Rob,

    Which doors crash? Certainly not *all* doors crash under this condition

    All of them. I mainly use DOOR.SYS or DORINFO1.DEF as the dropfile.

    Perhaps if you mentioned which doors this happens with, that would trig DM>(heh) other sysops into remembering if they have that particular door a DM>test it and see what happens.

    Except for the Synchronet doors that came with the setup, every other door that I have crashes, if there's a one word alias...either with DORINFO1.DEF or DOOR.SYS as the dropfile.

    --- Mystic BBS v1.12 A36 2017/12/03 (Linux/64)
    * Origin: Subcarrier BBS (1:249/400)
  • From DesotoFireflite@1:103/705 to mark lewis on Fri Dec 8 15:47:24 2017
    Re: Dropfile Issues
    By: mark lewis to DesotoFireflite on Fri Dec 08 2017 10:22 am

    i suspect the problem is that daryl is using the new capability to swap real names with handles and that the complaining doors are expecting two word real names... so the door sees a single word handle in the real name field and complains because it is not two words like it expects...

    in other words, the door is not complaining about one word handles... it is complaining about one word real names...

    You may have a point, although I thought the new swap command only worked with telgate and rlogin. He need to just tell it to use handles in the actual sync config for the door, which I assumed he was doing.

    SysOp: C.G. Learn, AKA: DesotoFireflite
    Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com
    Valhalla II! - (GAP) - bbs.valhallabbs.com:24
    A Gamers Paradise - Over 150 Registered Online Game Doors!

    Play Trade Wars Between 10 Other BBS's On Valhalla's Trade Wars Game Server!

    Featuring Legion, A New RPG, Available On Both Systems!

    --- FART(n): An audio test of one's waste-disposal system.
    * Synchronet * Valhalla Home Services * USA * http://valhalla.synchro.net
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From mark lewis@1:3634/12.73 to Digital Man on Fri Dec 8 17:08:14 2017

    On 2017 Dec 08 13:18:44, you wrote to me:

    didn't you just (six weeks ago or so?) add an option for the door
    command line in sbbs that places the handle where the real name used
    to be in the drop file? it was something daryl had asked for, IIRC...
    i'll have to hunt down the topic to be more specific... i can't even
    recall the two or three character sequence desginated for this... %S
    or i dunno...

    I think you're thinking of the RLogin gateway option (TG_RLOGINSWAP) -
    has no effect on drop files created by Synchronet.

    ahhhh!! yes! i think you're right... sorry for the noise :oops:

    )\/(ark

    Always Mount a Scratch Monkey
    Do you manage your own servers? If you are not running an IDS/IPS yer doin' it wrong...
    ... Everyone becomes disabled - unless they die first.
    ---
    * Origin: (1:3634/12.73)
  • From mark lewis@1:3634/12.73 to DesotoFireflite on Fri Dec 8 17:09:18 2017

    On 2017 Dec 08 15:47:24, you wrote to me:

    in other words, the door is not complaining about one word handles...
    it is complaining about one word real names...

    You may have a point, although I thought the new swap command only
    worked with telgate and rlogin. He need to just tell it to use handles
    in the actual sync config for the door, which I assumed he was doing.

    yes, i was confused and DM just pointed me in the right direction...

    but there is still the thing of some doors working as i pointed out... i've run
    into it numerous times in the past... that because the main system i work with didn't offer similar so i wrote a script that would swap the real names and handles and got bit by some doors... it was so long ago that i don't even remember which ones they were... the fix was simple, though... revert the switch on them and hope they displayed the user's handle for everything no matter if it kept their record based on their real name or their handle... some
    did, some didn't... we don't run many doors any more, these days...

    )\/(ark

    Always Mount a Scratch Monkey
    Do you manage your own servers? If you are not running an IDS/IPS yer doin' it wrong...
    ... Ring bell for maid service. If no answer, do it yourself!
    ---
    * Origin: (1:3634/12.73)
  • From KK4QBN@1:103/705 to Daryl Stout on Fri Dec 8 21:21:03 2017
    Re: Dropfile Issues
    By: Daryl Stout to DESOTOFIREFLITE on Fri Dec 08 2017 10:26:00

    That is correct. You don't need batchfiles to run the doors, and you
    can set up non-fossil doors like a fossil door, and use them. It's the ONLY BBS package I know of that does this.


    maybe drop the realname requirment on all the doors except legue doos.

    --

    Tim Smith (KK4QBN)
    KK4QBN BBS

    ---
    * Synchronet * KK4QBN BBS - kk4qbn.com - kk4qbn.synchro.net - Chatsworth GA USA
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From KK4QBN@1:103/705 to Nightfox on Fri Dec 8 21:26:33 2017
    Re: Dropfile Issues
    By: Nightfox to Daryl Stout on Fri Dec 08 2017 12:47:16

    That is correct. You don't need batchfiles to run the doors, and you
    can set up non-fossil doors like a fossil door, and use them. It's
    the ONLY BBS package I know of that does this.

    I was in the habit of using batch files, but I like that you don't have to use them with Synchronet. One thing I think a batch file is useful for, though, is if there's a problem with the door, you can put a "pause" statement in the batch file after the door command, and Windows will keep the command prompt window open so you can see whatever error the door might be outputting. But then if you want to switch to a batch file, you have to change the command in SCFG, and if anyone is logged in, you have to wait for them to log off so Synchronet can recycle its configuration..

    I still use batchfiles most of the time also, one asupi stated, for debugging, and 2 incase I want to add some sort of stub, or addon to the batch.

    --

    Tim Smith (KK4QBN)
    KK4QBN BBS

    ---
    * Synchronet * KK4QBN BBS - kk4qbn.com - kk4qbn.synchro.net - Chatsworth GA USA
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From DesotoFireflite@1:103/705 to mark lewis on Sat Dec 9 06:39:58 2017
    Re: Dropfile Issues
    By: mark lewis to DesotoFireflite on Fri Dec 08 2017 05:09 pm

    but there is still the thing of some doors working as i pointed out... i've run into it numerous times in the past... that because the main system i work with didn't offer similar so i wrote a script that would swap the real names and handles and got bit by some doors... it was so long ago that i don't even remember which ones they were... the fix was simple, though... revert the switch on them and hope they displayed the user's handle for everything no matter if it kept their record based on their real name or their handle... some did, some didn't... we don't run many doors any more, these days...

    Yes, door usage is down regretably. If a certian door gives problems with handles, I would just use real names. Like you said, some doors let you chose a handle anyway, so it's really not a big thing in my eyes. I'd like to help him, but he won't tell us the door or doors that are giving him the problems. It may be a simple fix.

    SysOp: C.G. Learn, AKA: DesotoFireflite
    Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com
    Valhalla II! - (GAP) - bbs.valhallabbs.com:24
    A Gamers Paradise - Over 150 Registered Online Game Doors!

    Play Trade Wars Between 10 Other BBS's On Valhalla's Trade Wars Game Server!

    Featuring Legion, A New RPG, Available On Both Systems!

    --- CAT (n.), Furry keyboard cover.
    * Synchronet * Valhalla Home Services * USA * http://valhalla.synchro.net
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From echicken@1:103/705 to DesotoFireflite on Sat Dec 9 13:54:47 2017
    Re: Dropfile Issues
    By: DesotoFireflite to mark lewis on Sat Dec 09 2017 06:39:58

    Yes, door usage is down regretably. If a certian door gives problems with handles, I would just use real names. Like you said, some doors let you

    Could be a problem if you didn't collect real names from users when they signed up in the first place, but that could be worked around.

    to help him, but he won't tell us the door or doors that are giving him

    I got the impression from previous messages that it was Solar Realms doors. If memory serves, exclusive access is important here (only one node can run one of these games at a time), but I may be wrong. Also it sounded like he was using some utility to convert between one dropfile format and the SRDOOR type; don't know if he tried just having Synchronet create the appropriate dropfile to start with - at the very least this would simplify things.

    ---
    echicken
    electronic chicken bbs - bbs.electronicchicken.com - 416-273-7230
    * Synchronet * electronic chicken bbs - bbs.electronicchicken.com
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Daryl Stout@1:103/705 to NIGHTFOX on Sat Dec 9 14:04:00 2017
    I was in the habit of using batch files, but I like that you don't have to us N>them with Synchronet. One thing I think a batch file is useful for, though, N>if there's a problem with the door, you can put a "pause" statement in the N>batch file after the door command, and Windows will keep the command prompt N>window open so you can see whatever error the door might be outputting. But N>then if you want to switch to a batch file, you have to change the command in N>SCFG, and if anyone is logged in, you have to wait for them to log off so N>Synchronet can recycle its configuration..

    With a new door usage utility (DoorStat), in the "cleanup batchfile",
    I'm typing the name of the "batchfile" I would've used for the door, to
    a log file, that DoorStat will look at. Each time it sees that
    particular doorname, it'll log it, as it were.

    While I'm using "Door Fury" from Shining Star Software (I'm afraid
    that's abandonware now, as the website domain for it has lapsed), I'd
    like to get a graphical interface for the doors as well...so, that's
    why I'm working on DoorStat.

    Daryl

    ---
    * OLX 1.53 * 100% of people who breathe, die.
    * Synchronet * The Thunderbolt BBS - wx1der.dyndns.org
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Daryl Stout@1:103/705 to JOHN MCCOY on Sat Dec 9 14:05:00 2017
    Hi Daryl,

    Hi, John...

    I seem to recall that when using Maximus way back it detected and dealt with JM>this by appending NLN (no last name) to any single-word names in its JM>dropfiles. Some doors even expected this and referred to the user by their JM>single-word name if they saw this in the dropfile.

    Does Synchronet have any similar option?

    That I don't know. Once I get the DoorStat utility setup, I'm going to
    go through and test all the doors (over 350 of them) with a special
    account, and see if it "barfs" with a 1 word alias.

    Daryl

    ---
    * OLX 1.53 * 113 grams, 10 milliliters -- He's lead, Jim.
    * Synchronet * The Thunderbolt BBS - wx1der.dyndns.org
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Daryl Stout@1:103/705 to KK4QBN on Sat Dec 9 14:06:00 2017
    Tim,

    That is correct. You don't need batchfiles to run the doors, and you
    can set up non-fossil doors like a fossil door, and use them. It's the ONLY BBS package I know of that does this.

    maybe drop the realname requirment on all the doors except legue doos.

    Well, if the league coordinator doesn't require real names, there's no
    need to have them. But, once I get DoorStat setup, I'll test all the
    doors with a "one word alias", and see if they "barf" on me.

    Daryl

    ---
    * OLX 1.53 * 12 Steps Chocolate Diet: 12 or less steps from chocolate.
    * Synchronet * The Thunderbolt BBS - wx1der.dyndns.org
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Daryl Stout@1:103/705 to DESOTOFIREFLITE on Sat Dec 9 14:11:00 2017
    C.G.,

    Yes, door usage is down regretably. If a certian door gives problems with D>handles, I would just use real names. Like you said, some doors let you chose D>handle anyway, so it's really not a big thing in my eyes. I'd like to help hi D>but he won't tell us the door or doors that are giving him the problems. It m D>be a simple fix.

    OK, once I get the DoorStat deal set up, I'll personally go through
    all 350 doors, and see which ones "barf" on the one word alias...then,
    I'll post a list.

    It might be just with DORINFO1.DEF. but I know there are 2 different
    types of DOOR.SYS files (one is longer).

    Daryl

    ---
    * OLX 1.53 * 3 kinds of people: those who can count, & those who can't
    * Synchronet * The Thunderbolt BBS - wx1der.dyndns.org
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From DesotoFireflite@1:103/705 to echicken on Sun Dec 10 06:37:41 2017
    Re: Dropfile Issues
    By: echicken to DesotoFireflite on Sat Dec 09 2017 01:54 pm

    Re: Dropfile Issues
    Could be a problem if you didn't collect real names from users when they signed up in the first place, but that could be worked around.

    Never though about that, but just the same, it's just him having the issue.

    I got the impression from previous messages that it was Solar Realms doors. If memory serves, exclusive access is important here (only one node can run one of these games at a time), but I may be wrong. Also it sounded like he was using some utility to convert between one dropfile format and the SRDOOR type; don't know if he tried just having Synchronet create the appropriate dropfile to start with - at the very least this would simplify things.

    Yes, I've told him about using synchronets system to make the drop file. It is a one user door, but with synchronet, thats not a problem either. I think we have got him fixed now, as we sent him a screen shot on the setup. Hopefully that will solve all the issues. Fingers Crossed.

    SysOp: C.G. Learn, AKA: DesotoFireflite
    Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com
    Valhalla II! - (GAP) - bbs.valhallabbs.com:24
    A Gamers Paradise - Over 150 Registered Online Game Doors!

    Play Trade Wars Between 10 Other BBS's On Valhalla's Trade Wars Game Server!

    Featuring Legion, A New RPG, Available On Both Systems!

    --- A true friend knows who you are... But likes you anyway.
    * Synchronet * Valhalla Home Services * USA * http://valhalla.synchro.net
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From DesotoFireflite@1:103/705 to Daryl Stout on Sun Dec 10 06:43:40 2017
    Re: Dropfile Issues
    By: Daryl Stout to DESOTOFIREFLITE on Sat Dec 09 2017 02:11 pm

    OK, once I get the DoorStat deal set up, I'll personally go through
    all 350 doors, and see which ones "barf" on the one word alias...then, I'll post a list.

    Not to slow you down, but I would get one problem fixed before you start a new project. Adding this doorstat when your already having an issue with handles, may create a new problem. If you get your games working correctly first, you will have a base line to work with. Just thinking outloud.

    It might be just with DORINFO1.DEF. but I know there are 2 different
    types of DOOR.SYS files (one is longer).

    I try to always use the long 52 line door.sys, as it works most of the time.

    SysOp: C.G. Learn, AKA: DesotoFireflite
    Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com
    Valhalla II! - (GAP) - bbs.valhallabbs.com:24
    A Gamers Paradise - Over 150 Registered Online Game Doors!

    Play Trade Wars Between 10 Other BBS's On Valhalla's Trade Wars Game Server!

    Featuring Legion, A New RPG, Available On Both Systems!

    --- Don't eat the yellow snow!
    * Synchronet * Valhalla Home Services * USA * http://valhalla.synchro.net
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Daryl Stout@1:103/705 to DESOTOFIREFLITE on Sun Dec 10 08:58:00 2017
    C.G.,

    Not to slow you down, but I would get one problem fixed before you start a ne D>project. Adding this doorstat when your already having an issue with handles, D>may create a new problem. If you get your games working correctly first, you D>will have a base line to work with. Just thinking outloud.

    I think I have to add a parameter in the "door clean batchfile"...but
    at least I've found some doors that didn't have one of these, and had to
    create one. I'm suspecting the problem is with DORINFO1.DEF -- but, I
    never could figure out what the difference was (except for node number)
    in DORINFO1.DEF and DORINFOx.DEF -- where x was the node number. Under
    dial-up, that made a difference, but on telnet, the comport is basically ignored.

    It might be just with DORINFO1.DEF. but I know there are 2 different types of DOOR.SYS files (one is longer).

    I try to always use the long 52 line door.sys, as it works most of the time.

    I don't remember which one the Doorway program (originally done by
    Marshall Dudley...now done by Mike Ehlert) requires with the DOOR.SYS
    file, or if there's a parameter for it, offhand. Doorway does also work
    with other dropfiles, but I'd have to look at the docs to be sure. I do
    know that unregistered, you only have 10 minutes in the
    door...registration removes that. I had registered it when Marshall
    Dudley was still supporting it, before the rights were sold/transferred
    to Mike Ehlert.

    Daryl

    ---
    * OLX 1.53 * A coin. Good. I will replicate one immediately. - Data
    * Synchronet * The Thunderbolt BBS - wx1der.dyndns.org
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From DesotoFireflite@1:103/705 to Daryl Stout on Mon Dec 11 06:33:49 2017
    Re: Dropfile Issues
    By: Daryl Stout to DESOTOFIREFLITE on Sun Dec 10 2017 08:58 am

    I think I have to add a parameter in the "door clean batchfile"...but
    at least I've found some doors that didn't have one of these, and had to create one. I'm suspecting the problem is with DORINFO1.DEF -- but, I never could figure out what the difference was (except for node number)
    in DORINFO1.DEF and DORINFOx.DEF -- where x was the node number. Under dial-up, that made a difference, but on telnet, the comport is basically ignored.

    I always use the 52 line door.sys if possable. In Synchronet it's:

    BBS Drop File Type GAP DOOR.SYS

    Door.sys gives more info, and just works better with multinode doors. If you are using dorinfo1.def, and the door only reads dorinfo1.def, then it's a very old RA or RBBS door, and you should make it single node. I have several old ra door like this on my system, and they run fine, but are limited to one user at a time. Sometimes the older dorinfox.dif door can read multiple dorinfo files like dorinfo1.def, dorinfo2.def, dorinfo3.def, then in this case it's may be a multinode door, but it's just easier to yous door.sys if the door will use it.

    I don't remember which one the Doorway program (originally done by Marshall Dudley...now done by Mike Ehlert) requires with the DOOR.SYS file, or if there's a parameter for it, offhand. Doorway does also work with other dropfiles, but I'd have to look at the docs to be sure. I do know that unregistered, you only have 10 minutes in the door...registration removes that. I had registered it when Marshall
    Dudley was still supporting it, before the rights were sold/transferred
    to Mike Ehlert.

    It uses the long version, and the regs that Marshal Dudly gave you work with Mikes version.

    SysOp: C.G. Learn, AKA: DesotoFireflite
    Valhalla Home Services! - (Synchronet) - bbs.valhallabbs.com
    Valhalla II! - (GAP) - bbs.valhallabbs.com:24
    A Gamers Paradise - Over 150 Registered Online Game Doors!

    Play Trade Wars Between 10 Other BBS's On Valhalla's Trade Wars Game Server!

    Featuring Legion, A New RPG, Available On Both Systems!

    --- FART(n): An audio test of one's waste-disposal system.
    * Synchronet * Valhalla Home Services * USA * http://valhalla.synchro.net
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)
  • From Daryl Stout@1:103/705 to DESOTOFIREFLITE on Mon Dec 11 12:23:00 2017
    C.G.,

    I always use the 52 line door.sys if possable. In Synchronet it's:

    BBS Drop File Type GAP DOOR.SYS

    That's the one I normally use, unless it requires DORINFO1.DEF or the
    SR dropfile (Solar Realms).

    It uses the long version, and the regs that Marshal Dudly gave you work with D>Mikes version.

    For whatever reason, the key I had with 2.31 didn't work with 2.32 --
    I can't remember if the registered name changed case (upper to lower),
    or what. But, it does work, and that's all I care about.

    Daryl

    ---
    * OLX 1.53 * A new cemetery opened in town: folks are dying to enter.
    * Synchronet * The Thunderbolt BBS - wx1der.dyndns.org
    * Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)