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
2017-03-19 14:38:01 +10:00
ansis_default Another bulletin tweak 2016-12-07 16:32:47 +10:00
config_default Added IP whitelist/blacklisting for telnet only 2016-12-11 14:42:28 +10:00
deps Add jsmn to deps 2017-03-19 13:39:03 +10:00
hashmap Added IP whitelist/blacklisting for telnet only 2016-12-11 14:42:28 +10:00
inih Initial Commit 2016-03-22 11:48:59 +10:00
scripts_examples Fix lua logout script example 2016-12-05 13:58:18 +10:00
utils Update ticproc to new build system 2017-03-19 14:38:01 +10:00
www widen the last 10 callers a bit :) 2016-08-21 15:19:52 +10:00
.gitignore Updated build system and now bundle libb64 2017-03-18 14:37:16 +10:00
bbs_list.c Swallow Escaped Input on menus... like arrow keys. 2016-12-02 15:31:29 +10:00
bbs.c broadcast json fixes 2017-03-19 13:48:50 +10:00
bbs.h Added IP whitelist/blacklisting for telnet only 2016-12-11 14:42:28 +10:00
bluewave.c Move MSG_* defines to JAM_* defines to build on OSX 2017-03-16 17:50:06 +10:00
bluewave.h Added EXPERIMENTAL bluewave support 2016-12-06 17:06:28 +10:00
chat_system.c Move Strings into a String file so they can be customized 2016-08-14 19:56:15 +10:00
doors.c Improved IAC non-handling :) 2016-12-12 11:32:57 +10:00
email.c Fix for cursor position on mail listings 2017-03-17 21:18:59 +10:00
file_id.diz Made some improvements to fileapprove utility 2016-12-07 12:46:55 +10:00
files.c fixes for SSH 2016-12-11 22:14:36 +10:00
LICENSE.txt Added License & FILE_ID.DIZ 2016-04-09 18:22:55 +10:00
lua_glue.c Attempt to make doors, chat and files work with ssh 2016-08-07 13:45:52 +10:00
magicka.strings Added home to rest of the strings 2016-12-10 20:12:41 +10:00
mail_menu.c Fix for cursor position on mail listings 2017-03-17 21:18:59 +10:00
main_menu.c Swallow Escaped Input on menus... like arrow keys. 2016-12-02 15:31:29 +10:00
main.c Fix crash on startup 2016-12-14 19:27:57 +10:00
Makefile.freebsd Update ticproc to new build system 2017-03-19 14:38:01 +10:00
Makefile.freebsd.WWW Update ticproc to new build system 2017-03-19 14:38:01 +10:00
Makefile.linux Update ticproc to new build system 2017-03-19 14:38:01 +10:00
Makefile.linux.WWW Update ticproc to new build system 2017-03-19 14:38:01 +10:00
Makefile.netbsd Update ticproc to new build system 2017-03-19 14:38:01 +10:00
Makefile.netbsd.WWW Update ticproc to new build system 2017-03-19 14:38:01 +10:00
Makefile.osx Update ticproc to new build system 2017-03-19 14:38:01 +10:00
Makefile.osx.WWW Update ticproc to new build system 2017-03-19 14:38:01 +10:00
README.md Update README.md 2017-03-18 14:45:39 +10:00
settings.c Big update for uploading with external protocols. May or may not work with SSH,tested with lrzsz 2016-12-10 17:55:47 +10:00
strings.c Move Strings into a String file so they can be customized 2016-08-14 19:56:15 +10:00
users.c Big update for uploading with external protocols. May or may not work with SSH,tested with lrzsz 2016-12-10 17:55:47 +10:00
www_email.c fix bug 2016-08-21 19:33:17 +10:00
www_last10.c add css for last 10 2016-08-21 15:06:59 +10:00
www_msgs.c FreeBSD fixes 2017-03-17 19:50:37 +10:00
www.c FreeBSD fixes 2017-03-17 19:50:37 +10:00

MagickaBBS

Build Status

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, libssl-dev, libssh-dev and gnu make

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

    should work on debian and debian derivatives.

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

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

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

  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. If you are going to run SSH, you will need to create keys. To do this

mkdir keys

`ssh-keygen -f keys/ssh_host_rsa_key -N '' -t rsa`

`ssh-keygen -f keys/ssh_host_dsa_key -N '' -t dsa`
  1. Run Magicka BBS on a port over 1024 (Below require root, and we're not ready for that).

./magicka config/bbs.ini

  1. Your BBS is now running on the port you specified in the config.ini, 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/MagickaBBS/MagickaBBS/wiki

About the webserver

Magicka now includes a built in webserver based on libmicrohttpd. It is not built by default, if you'd like to build it you will need a recent version of libmicrohttpd (raspbian doesn't have a recent enough version, and you will need to build it from source). You will also need libb64-dev. Once you have these prerequisites, you can build magicka with make -f Makefile.linux.WWW or make -f Makefile.freebsd.WWW be sure to do this from a clean source tree.

The webserver will use templates in the www/ folder to create internal webpages on the fly, anything in www/static/ is served up as is.