• drop file

    From Doctor Wade@618:300/50 to Andrew Leary on Thu Oct 26 10:46:00 2023
    Hi Andrew:
    I used your suggeted settings for SIO2K and config.sys and have noticed a strange issue. When Iceedit is loaded I can see this on the local computer:
    X00 loads
    IceEdit reports that it found its config file in c:\ele
    IceEdit also shows the SHARE is loaded
    Iceedit main screen loads
    after a few seconds Iceedit reports carrier lost
    IceEdit returns screen to EleBBS
    My bbs dirctory is c:\ele with c:\ele\node1 as the node directory. The drop file in c:\ele\node1 dorinfo1.def and door.sys reports the comport as COM1. Elconfig shows the modem comport as COM2. The call waiting status screen for EleBBS shows Node1 and the Port as Com2. I am not sure why the drop file shows COM1 instead of COM2.I have maually changed the drop file from COM1 to COM2
    but it changes back to COM1 after a user logs in.
    Why would drop file show COM1?
    Thnks!

    Doctorwade


    *** THE READER V4.50 [freeware]
    ---
    * Origin: (618:300/50)
  • From Andrew Leary@618:100/1 to Doctor Wade on Thu Oct 26 13:27:14 2023
    Hello Doctor!

    Thursday October 26 2023 10:46, Doctor Wade wrote to Andrew Leary:

    I used your suggeted settings for SIO2K and config.sys and have
    noticed a strange issue. When Iceedit is loaded I can see this on the local computer: X00 loads IceEdit reports that it found its config
    file in c:\ele IceEdit also shows the SHARE is loaded Iceedit main
    screen loads after a few seconds Iceedit reports carrier lost IceEdit returns screen to EleBBS My bbs dirctory is c:\ele with c:\ele\node1
    as the node directory. The drop file in c:\ele\node1 dorinfo1.def and door.sys reports the comport as COM1. Elconfig shows the modem comport
    as COM2. The call waiting status screen for EleBBS shows Node1 and the Port as Com2. I am not sure why the drop file shows COM1 instead of
    COM2.I have maually changed the drop file from COM1 to COM2 but it
    changes back to COM1 after a user logs in. Why would drop file show
    COM1? Thnks!

    If the drop file is showing COM1, then that is what is causing your issue with IceEdit reporting a lost carrier. What is your command line for the editor in ELCONFIG? What is the command line used to load EleBBS?

    Andrew

    ---
    * Origin: Bits & Bytes BBS * bbs.bnbbbs.net (618:100/1)
  • From Doctor Wade@618:300/50 to Andrew Leary on Fri Oct 27 09:26:00 2023

    Hello Doctor!

    If the drop file is showing COM1, then that is what is causing your issue with IceEdit reporting a lost carrier. What is your command line for the editor in ELCONFIG? What is the command line used to load EleBBS?

    Andrew

    --- * Origin: Bits & Bytes BBS * bbs.bnbbbs.net (618:100/1)
    My command line is c:\ele\ice.cmd
    ice.cmd -> @echo off
    c:\ele\iceedit.exe /P C:\ele\node\N*

    Elebbs command line is runele.cmd
    runele.cmd ->
    @echo off
    c:
    set ELEBBS=C:\ELE
    :start
    cd \ele
    elebbs -E5
    if errorlevel 10 goto maint
    if errorlevel 5 goto start
    if errorlevel 4 goto echo
    if errorlevel 3 goto netmail
    if errorlevel 0 goto quit
    etc..
    I start the telnet server with
    c:\ele\eleserv -telnet

    Doctorwade


    *** THE READER V4.50 [freeware]
    ---
    * Origin: (618:300/50)
  • From Martin Kazmaier@618:300/50 to Doctor Wade on Fri Oct 27 10:40:00 2023

    Hello Doctor!

    If the drop file is showing COM1, then that is what is causing your
    issue
    with IceEdit reporting a lost carrier. What is your command line for
    the
    editor in ELCONFIG? What is the command line used to load EleBBS?

    Andrew

    --- * Origin: Bits & Bytes BBS * bbs.bnbbbs.net (618:100/1)
    My command line is c:\ele\ice.cmd
    ice.cmd -> @echo off
    c:\ele\iceedit.exe /P C:\ele\node\N*
    Was that a typo? Should be /D:C:\ele\node*N

    ---
    Shurato, Sysop Shurato's Heavenly Sphere (ssh, telnet, pop3, ftp,nntp)
    (ports 22, 23, 110, 21, 119) (ssh: login bbs password shsbbs)


    *** THE READER V4.50 [freeware]
    ---
    * Origin: (618:300/50)
  • From Sean Dennis@618:618/1 to Andrew Leary on Fri Oct 27 19:02:56 2023
    Hello Andrew,

    Friday October 27 2023 09:26, Doctor Wade wrote to you:

    My command line is c:\ele\ice.cmd

    IIRC, using a CMD to call a BAT causes the information passed to the CMD not to be passed to the BAT correctly. I think DW needs to use a .BAT directly, not a .CMD to call the .BAT.

    -- Sean

    ... I call things as I see them; if I didn't see them, I make them up!
    --- GoldED/2 3.0.1
    * Origin: Outpost BBS * Johnson City, TN * bbs.outpostbbs.net:1032 (618:618/1)
  • From Andrew Leary@618:100/2 to Sean Dennis on Sat Oct 28 00:50:52 2023
    Hello Sean!

    27 Oct 23 19:02, you wrote to me:

    My command line is c:\ele\ice.cmd

    IIRC, using a CMD to call a BAT causes the information passed to the
    CMD not to be passed to the BAT correctly. I think DW needs to use a
    .BAT directly, not a .CMD to call the .BAT.

    The OS/2 version of EleBBS needs a .CMD file there. All of my DOS doors under EleBBS/OS2 are started with a 1 line .CMD file that uses the 4OS2 Start command to start a DOS session with the door .BAT file. For example:

    CEDIT.CMD:

    @echo off
    Start "CheepEdit Node %1" /DOS=E:\RA\DOSDOOR.INI /WAIT E:\RA\CEDIT.BAT %1

    CEDIT.BAT:

    @echo off
    E:\RA\CEdit\CEdit.EXE -! -N%1
    Exit

    The /WAIT instructs the OS/2 session to wait for the DOS session to terminate.

    For reference, here is the DOSDOOR.INI:

    DOS_DEVICE=c:\os2\mdos\ansi.sys
    DOS_DEVICE=c:\sio2k\vx00.sys
    IDLE_SECONDS=0
    IDLE_SENSITIVITY=100

    These settings just ensure that the DOS session is started with ANSI and FOSSIL support.

    It's worked fine for me this way for years. The vast majority of my doors are only passed a node number; the batch files handle what is needed from there to locate the correct dropfile, etc.

    If you don't use 4OS2, you can use HSTART (available from Hobbes) to accomplish the same thing (starting a DOS session with specific settings.) You can also just load ANSI.SYS and VX00.SYS with DEVICE= lines in CONFIG.SYS, which means that they will be available in all DOS sessions.

    Andrew

    --- GoldED+/LNX 1.1.5-b20230826
    * Origin: Phoenix BBS * phoenix.bnbbbs.net (618:100/2)
  • From Doctor Wade@618:300/50 to Martin Kazmaier on Sat Oct 28 08:06:00 2023

    My command line is c:\ele\ice.cmd @echo off c:\ele\iceedit.exe
    /P C:\ele\node\N*
    Was that a typo? Should be /D:C:\ele\node*N

    --- Shurato, Sysop Shurato's Heavenly Sphere (ssh, telnet, pop3,
    ftp,nntp) (ports 22, 23, 110, 21, 119) (ssh: login bbs password
    shsbbs)


    Nope. That us what I had, I'll change it to /D:C:\ele\node*N
    Rhanks!

    Doctorwade


    *** THE READER V4.50 [freeware]
    ---
    * Origin: (618:300/50)
  • From Martin Kazmaier@618:300/50 to Doctor Wade on Sat Oct 28 12:58:00 2023

    My command line is c:\ele\ice.cmd @echo off c:\ele\iceedit.exe
    /P C:\ele\node\N*
    Was that a typo? Should be /D:C:\ele\node*N

    --- Shurato, Sysop Shurato's Heavenly Sphere (ssh, telnet, pop3, ftp,nntp) (ports 22, 23, 110, 21, 119) (ssh: login bbs password shsbbs)


    Nope. That us what I had, I'll change it to /D:C:\ele\node*N Rhanks!
    Sorry, should be %1 instead of *N, and *N should be passed as the first argument from the BBS type 7 command.

    Doctorwade


    *** THE READER V4.50 [freeware]

    ---
    Shurato, Sysop Shurato's Heavenly Sphere (ssh, telnet, pop3, ftp,nntp)
    (ports 22, 23, 110, 21, 119) (ssh: login bbs password shsbbs)


    *** THE READER V4.50 [freeware]
    ---
    * Origin: (618:300/50)
  • From Doctor Wade@618:300/50 to Martin Kazmaier on Mon Oct 30 12:32:00 2023

    Sorry, should be %1 instead of *N, and *N should be passed as the first argument from the BBS type 7 command.

    Shurato, Sysop Shurato's Heavenly Sphere (ssh, telnet, pop3,
    ftp,nntp) (ports 22, 23, 110, 21, 119) (ssh: login bbs password
    shsbbs)


    *** THE READER V4.50 [freeware]

    Tried that. No luck. If I don't add /P I don't see X00 loading in the SIO2K log. Screen goes blank for a second and then back to message menu.
    What I have now is *N in the type 7 entry and c:\ele\iceedit.exe /P /D:C:\ele\node%1
    I think IcceEdit would work if I could figure out a way to keep it from
    losing carrier. I changed the com port in elconfig to com1 since the drop
    file always insists on having that as the comport.

    Doctorwade


    *** THE READER V4.50 [freeware]
    ---
    * Origin: (618:300/50)
  • From Martin Kazmaier@618:300/50 to Doctor Wade on Mon Oct 30 12:37:00 2023

    Sorry, should be %1 instead of *N, and *N should be passed as the
    first
    argument from the BBS type 7 command.

    Shurato, Sysop Shurato's Heavenly Sphere (ssh, telnet, pop3,
    ftp,nntp) (ports 22, 23, 110, 21, 119) (ssh: login bbs password shsbbs)


    *** THE READER V4.50 [freeware]

    Tried that. No luck. If I don't add /P I don't see X00 loading in the SIO2K log. Screen goes blank for a second and then back to message
    menu. What I have now is *N in the type 7 entry and
    c:\ele\iceedit.exe /P /D:C:\ele\node%1 I think IcceEdit would work
    if I could figure out a way to keep it from losing carrier. I
    changed the com port in elconfig to com1 since the drop file always insists on having that as the comport.

    /P is to specify the com port, so something like /P:2 would work, or /P:1,
    but I don't know what /P by itself would do.

    ---
    Shurato, Sysop Shurato's Heavenly Sphere (ssh, telnet, pop3, ftp,nntp)
    (ports 22, 23, 110, 21, 119) (ssh: login bbs password shsbbs)


    *** THE READER V4.50 [freeware]
    ---
    * Origin: (618:300/50)
  • From Digimaus@618:618/1 to Doctor Wade on Mon Oct 30 21:30:18 2023
    Doctor Wade wrote to Martin Kazmaier <=-

    I think IcceEdit would work if I could figure out a way to keep it from losing carrier. I changed the com port in elconfig to com1 since the
    drop file always insists on having that as the comport.

    Odd question, but are you doing this on a Dell computer??

    -- Sean

    ... Computer (n): a device designed to speed and automate errors.
    --- MultiMail/Win v0.52
    * Origin: Outpost BBS * Johnson City, TN (618:618/1)
  • From Doctor Wade@618:300/50 to Digimaus on Tue Oct 31 07:46:00 2023



    Odd question, but are you doing this on a Dell computer??

    -- Sean

    ... Computer (n): a device designed to speed and automate errors.
    --- MultiMail/Win v0.52
    * Origin: Outpost BBS * Johnson City, TN (618:618/1)

    It is a HP EliteDesk 800 with 16 gigs of ram and a I-5. I am using Linux and virtualbox to run OS/2 4.52 VM.

    Doctorwade


    *** THE READER V4.50 [freeware]
    ---
    * Origin: (618:300/50)
  • From Sean Dennis@618:618/1 to Doctor Wade on Tue Oct 31 14:11:44 2023
    It is a HP EliteDesk 800 with 16 gigs of ram and a I-5. I am using Linux and virtualbox to run OS/2 4.52 VM.

    Good choice in hardware (I was a factory certified HP tech). I recently found out that Arca Noae recommends not to use ArcaOS on a Dell.

    -- Sean

    --- ProBoard v2.17 [Reg]
    * Origin: Outpost BBS * Johnson City, TN (618:618/1)