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
Andrew Pamment 59bc08b24c Fix motd
2017-09-29 22:41:52 +10:00
ansis_default Initial try at new file scan 2017-09-28 19:11:00 +10:00
config_default more work on utf-8 2017-04-23 12:14:14 +10:00
deps Redo Make file setup.. please standby 2017-09-25 13:27:22 +10:00
menus_default Initial try at new file scan 2017-09-28 19:11:00 +10:00
scripts_examples Initial try at new file scan 2017-09-28 19:11:00 +10:00
src add motd to magichat.. 2017-09-29 22:12:11 +10:00
utils Fix motd 2017-09-29 22:41:52 +10:00
www Stylesheet tinkering 2017-04-01 16:45:05 +10:00
.gitignore added to gitignore 2017-03-23 16:39:06 +10:00
file_id.diz Bump version to 0.7 alpha 2017-09-21 15:03:49 +10:00
LICENSE.txt Added License & FILE_ID.DIZ 2016-04-09 18:22:55 +10:00
magicka.strings Fix colour codes in magicka.strings 2017-09-29 06:17:02 +10:00
Makefile Redo Make file setup.. please standby 2017-09-25 13:27:22 +10:00
README.md Update readme to reflect new build command 2017-09-25 13:43:58 +10:00

MagickaBBS

Build Status

Linux/FreeBSD bulletin board system (Should also work on NetBSD and Mac OS X, 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, 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 libncurses5-dev and gnu make

    sudo apt-get install build-essential libsqlite3-dev libreadline-dev git libssl-dev libssh-dev libncurses5-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

  4. Make a directory for logs.

    mkdir logs

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

    cp -r config_default config

  6. Edit the config files and update essential information, like system paths and BBS name etc

  7. Copy the ansi-default directory to the one specified in your system path

    eg.

    cp -r ansi_default ansis

  8. Copy the menus-default directory to the one specified in your system path

    eg.

    cp -r menus_default menus

  9. Magicka also include optional lua scripts for menus and login / logoff. If you want to use these, copy the scripts-examples to the one specified in your system path.

    eg.

    cp -r scripts_examples scripts

  10. 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

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

    ./magicka config/bbs.ini

  12. 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. Once you have these prerequisites, you can build magicka with make 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.

Misc Notes:

  • FreeBSD requires libiconv to be installed from ports in addition to other dependencies. It also requires ipv6_ipv4mapping="YES" to be set in rc.conf

  • macOS makefiles are intended to be built with dependencies provided by macports, homebrew support will require significant changes.

  • NetBSD requires libiconv to be installed from pkgsrc in addition to other dependencies. It also requires net.inet6.ip6.v6only=0 to be set in sysctl.conf