This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2016-08-04 21:49:51 +10:00
ansis_default Read Messages Command 2016-04-23 20:32:56 +10:00
config_default Config now loads at startup not connection, ability to run as a daemon 2016-08-02 11:58:10 +10:00
inih Initial Commit 2016-03-22 11:48:59 +10:00
jamlib Ported to Minix 3.3.0 2016-08-01 10:36:53 +00:00
lua Ported to Minix 3.3.0 2016-08-01 10:36:53 +00:00
scripts_examples Add forgotten auto message to login_stanza 2016-08-04 17:50:36 +10:00
utils EXPERIMENTAL Password Hashing 2016-08-04 21:41:37 +10:00
Xmodem Added Experimental File areas 2016-04-03 09:26:17 +10:00
.gitignore Added reason for disconnect, fixed minix EINTR during accept 2016-08-01 12:03:46 +00:00
bbs_list.c Replace printf / fprintf(stderr... with dolog 2016-08-04 19:25:49 +10:00
bbs.c fix for backspace fix 2016-08-04 19:49:56 +10:00
bbs.h EXPERIMENTAL Password Hashing 2016-08-04 21:41:37 +10:00
chat_system.c Added reason for disconnect, fixed minix EINTR during accept 2016-08-01 12:03:46 +00:00
doors.c Replace printf / fprintf(stderr... with dolog 2016-08-04 19:25:49 +10:00
email.c Replace printf / fprintf(stderr... with dolog 2016-08-04 19:25:49 +10:00
file_id.diz Getting ready for 0.2a1 2016-04-14 10:42:22 +10:00
files.c Replace printf / fprintf(stderr... with dolog 2016-08-04 19:25:49 +10:00
LICENSE.txt Added License & FILE_ID.DIZ 2016-04-09 18:22:55 +10:00
lua_glue.c Add lua function bbs_get_info 2016-08-04 17:27:52 +10:00
mail_menu.c Replace printf / fprintf(stderr... with dolog 2016-08-04 19:25:49 +10:00
main_menu.c Replace printf / fprintf(stderr... with dolog 2016-08-04 19:25:49 +10:00
main.c Oops... 2016-08-04 19:42:50 +10:00
Makefile.freebsd EXPERIMENTAL Password Hashing 2016-08-04 21:41:37 +10:00
Makefile.linux EXPERIMENTAL Password Hashing 2016-08-04 21:41:37 +10:00
Makefile.minix EXPERIMENTAL Password Hashing 2016-08-04 21:41:37 +10:00
README.md Update Readme to mention new dependency, libreadline-dev 2016-04-14 11:30:06 +10:00
settings.c Added Some suggestions Avon had 2016-04-22 21:48:52 +10:00
users.c Another fix for Password Hashing 2016-08-04 21:49:51 +10:00

MagickaBBS

Linux/FreeBSD bulletin board system (Should also work on NetBSD and OpenBSD, if it doesn't it's a bug)

As I lost the code to my initial BBS flea, I've decided to start over from scratch and this time I'm using git hub so I dont lose it again!

Magicka is meant to be a modern (haha) BBS system, using modern technologies, like Sqlite3, IRC, long filenames (gasp!) etc while still retaining the classic BBS feel. ANSI & Telnet, and good old ZModem.

If you want to install Magicka BBS, follow these steps.

  1. Ensure you have git, c compiler, libsqlite3-dev, libreadline-dev and gnu make

    sudo apt-get install build-essential libsqlite3-dev libreadline-dev git

    should work on debian and debian derivatives.

  2. Clone the repo git clone https://github.com/apamment/MagickaBBS

  3. Build JamLib

cd MagickaBBS/jamlib

make -f Makefile.linux (Linux) gmake -f Makefile.linux (*BSD)

  1. Build libzmodem

cd MagickaBBS/Xmodem

make (Linux) gmake (*BSD)

  1. Build LUA

    cd MagickaBBS/lua

    make linux (Linux) gmake freebsd (FreeBSD)

  2. Build the BBS (You may have to adjust the Makefile for your system)

make -f Makefile.linux (Linux) gmake -f Makefile.freebsd (FreeBSD)

  1. Make a directory for logs.

    mkdir logs

  2. Copy the config-default directory to a config directory.

cp -r config_default config

  1. Edit the config files and update essential information, like system paths and BBS name etc
  2. Copy the ansi-default directory to the one specified in your system path

eg.

cp -r ansi_default ansis

  1. Run Magicka BBS on a port over 1024 (Below require root, and we're not ready for that).

./magicka config/bbs.ini 2300

  1. Your BBS is now running on port 2300, log in and create yourself an account! (By default there is only one security level, you can add more, but you will need to use an SQLite Manager to modify users.sq3 and set security levels, as there is no user editor yet.

For information on how to configure your BBS, check the wiki https://github.com/apamment/MagickaBBS/wiki