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-04-11 19:42:16 +10:00
ansis_default Added Settings Menu 2016-04-10 18:45:02 +10:00
config_default Added basic logging 2016-04-10 14:10:18 +10:00
inih Initial Commit 2016-03-22 11:48:59 +10:00
jamlib Attempt to fix line endings in stdio doors 2016-04-09 10:33:05 +10:00
utils Added some utiltites, filepost and mgpost 2016-04-11 17:18:33 +10:00
Xmodem Added Experimental File areas 2016-04-03 09:26:17 +10:00
.gitignore Added basic logging 2016-04-10 14:10:18 +10:00
bbs_list.c Added BBS Listings fixed some bugs 2016-03-25 20:21:28 +10:00
bbs.c Added basic logging 2016-04-10 14:10:18 +10:00
bbs.h Added Settings Menu 2016-04-10 18:45:02 +10:00
chat_system.c Experimental WWIVnet support 2016-03-28 14:46:48 +10:00
doors.c Added basic logging 2016-04-10 14:10:18 +10:00
email.c Made email behave a bit more like messages 2016-04-09 15:29:11 +10:00
file_id.diz Added License & FILE_ID.DIZ 2016-04-09 18:22:55 +10:00
files.c Fix file area changing 2016-04-03 15:32:41 +10:00
LICENSE.txt Added License & FILE_ID.DIZ 2016-04-09 18:22:55 +10:00
mail_menu.c Attempt to fix cut off messages 2016-04-10 19:30:43 +10:00
main_menu.c Added Settings Menu 2016-04-10 18:45:02 +10:00
main.c Added basic logging 2016-04-10 14:10:18 +10:00
Makefile Added Settings Menu 2016-04-10 18:45:02 +10:00
README.md Fix typo in readme & fix new line before settings 2016-04-11 19:42:16 +10:00
settings.c Fix typo in readme & fix new line before settings 2016-04-11 19:42:16 +10:00
users.c Added Settings Menu 2016-04-10 18:45:02 +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 Sqlite, 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, sqlite-dev and gnu make
  2. Clone the repo git clone https://github.com/apamment/MagickaBBS

This is the master branch, it's recommended to check out the 0.1 branch

cd MagickaBBS/
git checkout 0.1   
  1. 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 the BBS (You may have to adjust the Makefile for your system)

make (Linux) gmake (*BSD)

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