• BBSLink

    From Mindsurfer@21:3/119 to All on Tue Sep 29 01:04:50 2020
    Someone has BBSLink running with MagickaBBS? It seems to exptect a
    usernumber as a parameter. not sure if it realy expects a integer or if a
    hash of the username would do it also.

    http://www.bbslink.net/sysop/linux.php

    Mindsurfer

    --- MagickaBBS v0.15alpha (Linux/armv7l)
    * Origin: FuNToPia telnet://funtopia.ddnss.eu:2023 (21:3/119)
  • From Mindsurfer@21:3/119 to Mindsurfer on Wed Sep 30 22:08:54 2020
    Someone has BBSLink running with MagickaBBS? It seems to exptect a usernumber as a parameter. not sure if it realy expects a integer
    or if a hash of the username would do it also.

    or maybe a lua script that reads the id from the users.sq3 using the
    Username as the "where" statement?

    i have tried to find some examples in regards of lua and sq3 files, but
    had no luck to make anything work yet.

    Mindsurfer

    --- MagickaBBS v0.15alpha (Linux/armv7l)
    * Origin: FuNToPia telnet://funtopia.ddnss.eu:2023 (21:3/119)
  • From apam@21:1/126 to Mindsurfer on Thu Oct 1 11:33:00 2020
    or maybe a lua script that reads the id from the users.sq3 using the Username as the "where" statement?

    i have tried to find some examples in regards of lua and sq3 files, but
    had no luck to make anything work yet.

    door.sys has the user id in it, you could just use sed to pull it out.

    Andrew

    === TitanMail/winnt v1.0.7

    --- TitanFTN (Linux/x86_64)
    * Origin: Wunderlust BBS - wunderlust.ddns.net:2023 (21:1/126)
  • From Mindsurfer@21:3/119 to apam on Mon Oct 5 21:33:38 2020
    door.sys has the user id in it, you could just use sed to pull it

    this seems to work for the door script

    #!/bin/sh

    NODE=$1
    SOCKET=$2
    USER=$(sed '26!d' /home/bbs/MagickaBBS/node${NODE}/door.sys)

    cd /home/bbs/MagickaBBS/doors/
    ./bbslink.sh dkns ${USER}


    Mindsurfer

    --- MagickaBBS v0.15alpha (Linux/armv7l)
    * Origin: FuNToPia telnet://funtopia.ddnss.eu:2023 (21:3/119)