rickparrish / TelnetDoor

A BBS door to allow users to connect to other telnet servers
12 stars 8 forks source link

Once you RLogin no more telnet #1

Closed GaryAiles closed 7 months ago

GaryAiles commented 2 years ago

Hi, I have net2bbs spawning telnet door. There are 5 servers in the config, 4 are telnet and TW2002 is Rlogin. Once you've Rlogin to TW, after exiting selecting any other server will fail "doesn't accept Rlogin connection" (or similar). Can be seen at (http or telnet) web.bbsgametime.com . Thanks.

DesotoFireflite commented 2 years ago

Gary, as far as I remember,  you can't have both telnet and rogin in the same config file, or the program crashes. You will need to run two config files like I do on Valhalla. Rick might have a work around by now however.

⁣Get BlueMail for Android ​

On Jan 8, 2022, 5:45 PM, at 5:45 PM, GaryAiles @.***> wrote:

Hi, I have net2bbs spawning telnet door. There are 5 servers in the config, 4 are telnet and TW2002 is Rlogin. Once you've Rlogin to TW, after exiting selecting any other server will fail "doesn't accept Rlogin connection" (or similar). Can be seen at (http or telnet) web.bbsgametime.com . Thanks.

-- Reply to this email directly or view it on GitHub: https://github.com/rickparrish/TelnetDoor/issues/1 You are receiving this because you are subscribed to this thread.

Message ID: @.***>

rickparrish commented 2 years ago

This was a stupid mistake on my part -- I should have been resetting the app settings between each connection attempt. By not resetting them, making an rlogin connection set the "is this an rlogin connection flag", and there was no way to reset that flag, so all subsequent telnet connections were treated as rlogin connections too.

I've updated things so a reset now happens before each connection, so this should be fixed. It took me longer than expected to fix it because the new Visual Studio doesn't support the old framework I was using before, so I didn't have time to actually test it out. Hopefully it works, but please back up your old version just in case it doesn't. And I'll take a closer look later tonight if it needs further fixing.

And since the framework version had to change to 4.6.2 (the oldest VS 2022 supports), you may need to install that version of the framework on your computer before it'll run.

DesotoFireflite commented 2 years ago

Awesome,  thanks Rick. It didn't really bother me, as I figured a work around years ago, but I'll switch to the newer version in a few days. Thanks for all your hard work.

⁣Get BlueMail for Android ​

On Jan 9, 2022, 12:50 PM, at 12:50 PM, rickparrish @.***> wrote:

This was a stupid mistake on my part -- I should have been resetting the app settings between each connection attempt. By not resetting them, making an rlogin connection set the "is this an rlogin connection flag", and there was no way to reset that flag, so all subsequent telnet connections were treated as rlogin connections too.

I've updated things so a reset now happens before each connection, so this should be fixed. It took me longer than expected to fix it because the new Visual Studio doesn't support the old framework I was using before, so I didn't have time to actually test it out. Hopefully it works, but please back up your old version just in case it doesn't. And I'll take a closer look later tonight if it needs further fixing.

And since the framework version had to change to 4.6.2 (the oldest VS 2022 supports), you may need to install that version of the framework on your computer before it'll run.

-- Reply to this email directly or view it on GitHub: https://github.com/rickparrish/TelnetDoor/issues/1#issuecomment-1008344240 You are receiving this because you commented.

Message ID: @.***>

GaryAiles commented 2 years ago

Wow! Thank you!