Subj : GoldMine - Connecting from Synchronet BBS
To   : Gamgee
From : j0hnny a1pha
Date : Thu Oct 17 2024 04:19 pm

> 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)