• GoldMine - Connecting from Synchronet BBS

    From Errol Casey@21:1/182 to All on Sat Aug 3 00:48:28 2024
    Thanks to echicken and JA for there help with
    figuring this out!

    NOTE: there are two hostnames involved with
    Gold Mine BBS goldminebbs.com and goldminedoors.com
    although obvious, they have different purposes and
    goldminebbs.com doesn't work for the DOOR -- LOL

    To connect to goldmine bbs door server

    Name or IP may be used:
    goldminedoors.com 143.198.58.173

    Port 2513 must be specified.

    Use rlogin in external program definition

    [tag] is a unique 3-character tag that identifies
    your bbs when your users connect.

    This will get you to the main menu

    ?rlogin.js 143.198.58.173:2513 -s [tag]%A -c %A

    This will quiet some of the output (about ctrl-] menu)

    ?rlogin.js 143.198.58.173:2513 -s [tag]%A -c %A -q

    To call a game directly
    ?rlogin.js 143.198.58.173:2513 -s [tag]%A -c %A -t xtrn=WORDLE -q

    Game CODE words can be found on the documentation site http://goldminebbs.com

    rlogin module is defined in the wiki https://wiki.synchro.net/module:rlogin
    %A is defined in the wiki https://wiki.synchro.net/config:cmdline

    Enjoy!

    Thank you JA for providing the Game Door Server!
    --- SBBSecho 3.20-Linux
    * Origin: Too Lazy BBS - toolazy.ddns.net:2323 (21:1/182)
  • From Gamgee@21:2/138 to Errol Casey on Tue Oct 15 21:40:49 2024
    Re: GoldMine - Connecting from Synchronet BBS
    By: Errol Casey to All on Sat Aug 03 2024 12:48 am

    To connect to goldmine bbs door server

    Name or IP may be used:
    goldminedoors.com 143.198.58.173

    Port 2513 must be specified.

    Use rlogin in external program definition

    [tag] is a unique 3-character tag that identifies
    your bbs when your users connect.

    This will get you to the main menu

    ?rlogin.js 143.198.58.173:2513 -s [tag]%A -c %A

    Hello Errol (and anyone else)... The above command line gets me to the main menu of the door server, but the %A part doesn't put in the username. It just displays the "current gamer" as [tag]%A. The %A isn't being "expanded" to a user name. Can you check/clarify that?

    I'm able to get to the main menu just fine, and play the doors, with just the command line:

    ?rlogin 143.198.58.173:2513 -p

    But... this doesn't show the [tag] in front of the user name displayed. I'm not sure how important that is, but it seems that most others who are logging in have that working. So, what command line are you Synchronet BBS operators using to connect to the Gold Mine server?

    Thanks!
    --- SBBSecho 3.20-Linux
    * Origin: Palantir * palantirbbs.ddns.net * Pensacola, FL * (21:2/138)
  • From Errol Casey@21:1/182 to Gamgee on Thu Oct 17 13:55:24 2024
    Re: GoldMine - Connecting from Synchronet BBS
    By: Gamgee to Errol Casey on Tue Oct 15 2024 09:40 pm

    ?rlogin.js 143.198.58.173:2513 -s [tag]%A -c %A

    Hello Errol (and anyone else)... The above command line gets me to the main menu of the door server, but the %A part doesn't put in the username. It just displays the "current gamer" as [tag]%A. The %A isn't being "expanded" to a user name. Can you check/clarify that?

    I believe it is working for me; I think I may also have -q on my command line now.

    Just logged in and my tag is displayed in front of my user name. At top
    of menu on Gold Mine.

    I know there was working rlogin to add some arguments, so don't know if I have a later version of the rlogin.js I keep things pretty updated.

    Aug 17 th is the date on my rlogin module.
    --
    Amessyroom - Sysop
    toolazy.synchro.net:22 (ssh)
    toolazy.synchro.net:2323 (telnet)
    https://toolazy.synchro.net
    --- SBBSecho 3.20-Linux
    * Origin: Too Lazy BBS - toolazy.synchro.net:2323 (21:1/182)
  • From j0hnny a1pha@21:4/158 to Gamgee on Thu Oct 17 16:19:24 2024
    I'm able to get to the main menu just fine, and play the doors, with
    just the command line:

    ?rlogin 143.198.58.173:2513 -p

    But... this doesn't show the [tag] in front of the user name
    displayed. I'm not sure how important that is, but it seems that most others who are logging in have that working. So, what command line
    are you Synchronet BBS operators using to connect to the Gold Mine
    server?

    Are you using Synchronet w/Windows? I haven't documented that, so would be great to add to goldminebbs.com documentation site once we have a working example. I'm running Linux and i use an .sh script to grab the user name directly from the dropfile (e.g. pass the node number):

    ----

    #!/bin/bash

    # Get the node number and door code from the arguments passed
    NODE_NUMBER=$1
    BBS="TAG" # Change this to your tag
    DOOR_CODE=$2

    # Define the path to the sbbs DOOR32.SYS file DOOR32_SYS_PATH=/sbbs/node${NODE_NUMBER}/DOOR32.SYS

    # Extract the alias from line 7
    USER_ALIAS=$(sed -n '7p'
    "$DOOR32_SYS_PATH" | tr ' ' '-') # replace spaces

    # Run the rsh-redone-client command
    if [ -n "$DOOR_CODE" ]; then
    TERM_PARAM="xtrn=$DOOR_CODE"
    TERM=$TERM_PARAM rlogin -p 2513 -l "$USER_ALIAS" goldminedoors.com
    else
    rlogin -p 2513 -l "$USER_ALIAS" goldminedoors.com
    fi

    ---

    |07 .'|08.
    |07 ||15o|08| |03J0hnny A1pha
    |07 .'|15o|08'. |06gOLD mINE HQ
    |07 |.-.|08| |08---------------------
    |07 '|14( |12)|08' |05SpaceJunkBBS.com|13:|052323
    |07 |12)

    --- Talisman v0.54-dev (Linux/x86_64)
    * Origin: Space Junk! BBS :: SpaceJunkBBS.com:2323 (21:4/158)
  • From Gamgee@21:2/138 to Errol Casey on Thu Oct 17 20:29:00 2024
    Errol Casey wrote to Gamgee <=-

    Re: GoldMine - Connecting from Synchronet BBS
    By: Gamgee to Errol Casey on Tue Oct 15 2024 09:40 pm

    ?rlogin.js 143.198.58.173:2513 -s [tag]%A -c %A

    Hello Errol (and anyone else)... The above command line gets me to the main menu of the door server, but the %A part doesn't put in the username. It just displays the "current gamer" as [tag]%A. The %A isn't being "expanded" to a user name. Can you check/clarify that?

    I believe it is working for me; I think I may also have -q on my
    command line now.

    Okay, could you actually check/verify it to be sure...?

    Just logged in and my tag is displayed in front of my user name. At top
    of menu on Gold Mine.

    I know there was working rlogin to add some arguments, so don't know if
    I have a later version of the rlogin.js I keep things pretty updated.

    Aug 17 th is the date on my rlogin module.

    I update fairly often too, my rlogin.js is dated Aug 10. Not likely to
    be the issue here.

    Are you on Windows? I'm on Linux and wonder if that might have an
    effect.



    ... Gone crazy, be back later, please leave message.
    === MultiMail/Linux v0.52
    --- SBBSecho 3.20-Linux
    * Origin: Palantir * palantirbbs.ddns.net * Pensacola, FL * (21:2/138)
  • From Gamgee@21:2/138 to j0hnny a1pha on Thu Oct 17 20:32:00 2024
    j0hnny a1pha wrote to Gamgee <=-

    I'm able to get to the main menu just fine, and play the doors, with
    just the command line:

    ?rlogin 143.198.58.173:2513 -p

    But... this doesn't show the [tag] in front of the user name
    displayed. I'm not sure how important that is, but it seems that most others who are logging in have that working. So, what command line
    are you Synchronet BBS operators using to connect to the Gold Mine
    server?

    Are you using Synchronet w/Windows? I haven't documented that, so would
    be great to add to goldminebbs.com documentation site once we have a working example. I'm running Linux and i use an .sh script to grab the user name directly from the dropfile (e.g. pass the node number):

    No, I am on Linux.

    #!/bin/bash

    # Get the node number and door code from the arguments passed NODE_NUMBER=$1
    BBS="TAG" # Change this to your tag
    DOOR_CODE=$2

    # Define the path to the sbbs DOOR32.SYS file DOOR32_SYS_PATH=/sbbs/node${NODE_NUMBER}/DOOR32.SYS

    # Extract the alias from line 7
    USER_ALIAS=$(sed -n '7p'
    "$DOOR32_SYS_PATH" | tr ' ' '-') # replace spaces

    # Run the rsh-redone-client command
    if [ -n "$DOOR_CODE" ]; then
    TERM_PARAM="xtrn=$DOOR_CODE"
    TERM=$TERM_PARAM rlogin -p 2513 -l "$USER_ALIAS" goldminedoors.com else
    rlogin -p 2513 -l "$USER_ALIAS" goldminedoors.com
    fi

    Okay, but I doubt anyone else is doing that, and they have a [TAG]
    displayed in front of their Username. Just wondering why mine isn't
    working, and what other (Synchronet) users are using for their command
    line...

    Is the [TAG] importaint in some way? Do you care if it's included in
    the user's login?

    Thanks.



    ... Gone crazy, be back later, please leave message.
    === MultiMail/Linux v0.52
    --- SBBSecho 3.20-Linux
    * Origin: Palantir * palantirbbs.ddns.net * Pensacola, FL * (21:2/138)
  • From Errol Casey@21:1/182 to Gamgee on Thu Oct 17 23:34:57 2024
    Re: Re: GoldMine - Connecting from Synchronet BBS
    By: Gamgee to Errol Casey on Thu Oct 17 2024 08:29 pm



    I update fairly often too, my rlogin.js is dated Aug 10. Not likely to
    be the issue here.

    Are you on Windows? I'm on Linux and wonder if that might have an
    effect.

    I'm on Linux 3.20a.
    rlogin.js 143.198.58.173:2513 -s [TLB]%A -c %A -q ÜÛÛÛÛÛßßßßßßßßßßßßßßßßßßßÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÜ
    ²ÛÛÛÛ Üßß ÜßÜ ÛÛ ÛÛß ÜÛß ÛÛGamer: [TLB]Amr ÛßÜÛÛÛÛ²ÛÛ
    Û²ÛÛÛ ßÜÛ ÛßÛ ÝÝÝÛÜÜ ÜÜß ÛÛTLeft: 3:59:54 Û Û Û Û Û ÛÛÛÛ²Û
    ßÛÜßÛÛÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÜÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛÛßÜÛÛÛ
    Û ß Û ß
    So using the above parameters for the external program it is passing the label and username.

    It does seem I have the -q option, not sure that is required.

    No reviewing the -q is just to avoid some output about the connection.

    I don't see -A in rlogin or telnet wiki pages. I think this was added to the module. Let me search emails.

    But i'm not sure why it would work for me and not you unless, it was a difference in the code.
    --
    Amessyroom - Sysop
    toolazy.synchro.net:22 (ssh)
    toolazy.synchro.net:2323 (telnet)
    https://toolazy.synchro.net
    --- SBBSecho 3.20-Linux
    * Origin: Too Lazy BBS - toolazy.synchro.net:2323 (21:1/182)
  • From Errol Casey@21:1/182 to Gamgee on Thu Oct 17 23:46:54 2024
    Re: Re: GoldMine - Connecting from Synchronet BBS
    By: Errol Casey to Gamgee on Thu Oct 17 2024 11:34 pm

    Re: Re: GoldMine - Connecting from Synchronet BBS
    I said -A I mean -s. Looking at gitlab 8/10 was when -s and -S were added
    to telgate and/or rlogin.

    So you check and confirm that your code has that option since it was added on the same date, you said your file was modified. Or hopefully you do have it, but something to check.

    Let me know if I can test anything else for you...
    --
    Amessyroom - Sysop
    toolazy.synchro.net:22 (ssh)
    toolazy.synchro.net:2323 (telnet)
    https://toolazy.synchro.net
    --- SBBSecho 3.20-Linux
    * Origin: Too Lazy BBS - toolazy.synchro.net:2323 (21:1/182)
  • From j0hnny a1pha@21:4/158 to Gamgee on Thu Oct 17 21:36:11 2024
    Okay, but I doubt anyone else is doing that, and they have a [TAG] displayed in front of their Username. Just wondering why mine isn't working, and what other (Synchronet) users are using for their command line...

    Goldmine requires you send [TAG] from whatever BBS system you use
    ("require" is used loosley here as I don't prevent you from connecting,
    but it helps identifies what BBS you and your users are connecting from).

    Is the [TAG] importaint in some way? Do you care if it's included in
    the user's login?

    Yeah, it creates a uniformity in terms of stats. I purposely set it up as
    an "open" system and I don't require sign ups or approvals, I don't lock
    down by IP address, etc. I'm sure there's a native sbbs solution, but the
    code i posted does work for sbbs w/linnux.

    Happy to help in whatever way!

    |07 .'|08.
    |07 ||15o|08| |03J0hnny A1pha
    |07 .'|15o|08'. |06gOLD mINE HQ
    |07 |.-.|08| |08---------------------
    |07 '|14( |12)|08' |05SpaceJunkBBS.com|13:|052323
    |07 |12)

    --- Talisman v0.54-dev (Linux/x86_64)
    * Origin: Space Junk! BBS :: SpaceJunkBBS.com:2323 (21:4/158)
  • From Gamgee@21:2/138 to Errol Casey on Fri Oct 18 21:37:00 2024
    Errol Casey wrote to Gamgee <=-

    Re: Re: GoldMine - Connecting from Synchronet BBS
    By: Errol Casey to Gamgee on Thu Oct 17 2024 11:34 pm

    Re: Re: GoldMine - Connecting from Synchronet BBS

    I said -A I mean -s. Looking at gitlab 8/10 was when -s and -S were
    added to telgate and/or rlogin.

    I don't understand what you mean. In your other message you said you
    use this command line:

    rlogin.js 143.198.58.173:2513 -s [TLB]%A -c %A -q

    I don't see a "-A" there, I see a "%A".

    The -s and the -c I understand, but I'm asking how you are getting the USERNAME (I think your other message showed that to be "amr") to show up
    after your TAG (which shows as "TLB".

    So you check and confirm that your code has that option since it was
    added on the same date, you said your file was modified. Or hopefully
    you do have it, but something to check.

    Yes, it has the -s option in it, if that's what you mean.

    Let me know if I can test anything else for you...

    Well, I'm just trying to get this issue explained, for now.


    ... Gone crazy, be back later, please leave message.
    === MultiMail/Linux v0.52
    --- SBBSecho 3.20-Linux
    * Origin: Palantir * palantirbbs.ddns.net * Pensacola, FL * (21:2/138)
  • From Gamgee@21:2/138 to j0hnny a1pha on Fri Oct 18 21:42:00 2024
    j0hnny a1pha wrote to Gamgee <=-

    Okay, but I doubt anyone else is doing that, and they have a [TAG]
    displayed in front of their Username. Just wondering why mine isn't working, and what other (Synchronet) users are using for their command line...

    Goldmine requires you send [TAG] from whatever BBS system you use ("require" is used loosley here as I don't prevent you from connecting, but it helps identifies what BBS you and your users are connecting
    from).

    Yes, understood, and I'm trying to get it to do that. Just to be sure
    of something - this [TAG] isn't something I have to set up (manually)
    once on your system before connecting from my BBS, right? It's just
    something that should be included on the callout command line when a
    user connects to GoldMine from my BBS... is that correct?

    Is the [TAG] importaint in some way? Do you care if it's included in
    the user's login?

    Yeah, it creates a uniformity in terms of stats. I purposely set it up
    as an "open" system and I don't require sign ups or approvals, I don't lock down by IP address, etc. I'm sure there's a native sbbs solution,
    but the code i posted does work for sbbs w/linnux.

    Understood again, and I'm currently trying to get things straight with
    another SBBS user, hopefully figured out soon.

    Happy to help in whatever way!

    Thanks, and thank you for operating GoldMine Doors!



    ... Gone crazy, be back later, please leave message.
    === MultiMail/Linux v0.52
    --- SBBSecho 3.20-Linux
    * Origin: Palantir * palantirbbs.ddns.net * Pensacola, FL * (21:2/138)
  • From StingRay@21:3/189 to j0hnny a1pha on Sat Oct 19 21:49:52 2024
    I have the same issue. I have 2 Windows Synchronet servers and I am unable to use the [TAG]. I also have a Linux Mystic and the [TAG] works fine.

    A-Net Online

    -StingRay
    --- SBBSecho 3.14-Win32
    * Origin: A-NET ONLINE - a-net-online.lol (21:3/189)
  • From Gamgee@21:2/138 to j0hnny a1pha on Mon Oct 21 11:15:35 2024
    Re: Re: GoldMine - Connecting from Synchronet BBS
    By: j0hnny a1pha to Gamgee on Thu Oct 17 2024 09:36 pm

    Okay, but I doubt anyone else is doing that, and they have a [TAG] displayed in front of their Username. Just wondering why mine isn't working, and what other (Synchronet) users are using for their command line...

    Goldmine requires you send [TAG] from whatever BBS system you use
    ("require" is used loosley here as I don't prevent you from connecting,
    but it helps identifies what BBS you and your users are connecting from).

    Just wanted to close the loop on this... I now have the [TAG]name thing working correctly.

    For anyone else's benefit, on Synchronet the working command line is:

    ?rlogin goldminedoors.com:2513 -s [TAG]%a
    --- SBBSecho 3.20-Linux
    * Origin: Palantir * palantirbbs.ddns.net * Pensacola, FL * (21:2/138)