Tagged in
PerlProjects
SimpleIRC

by Joseph Huckaby

Published on 19 January, 2014

SimpleIRC is an easy-to-install and easy-to-use IRC server, written in Perl. It was designed around the idea that setting up and running an IRC server should be simple. SimpleIRC should run on any modern Linux server, and comes with a full web interface for administration (although you can also admin the server from the IRC console if you want). SimpleIRC is built on the awesome POE::Component::Server::IRC framework.
Features at a glance:
Web User Interface
Single-Command Install
To install SimpleIRC, execute this command as root on your server:
curl -s "http://pixlcore.com/software/simpleirc/install-latest-stable.txt" | bash
Or, if you don't have curl, you can use wget:
wget -O - "http://pixlcore.com/software/simpleirc/install-latest-stable.txt" | bash
This will install the latest stable version of SimpleIRC. Change the word “stable” to “dev” to install the development branch. This single command installer should work fine on any modern Linux RedHat (RHEL, Fedora, CentOS) or Debian (Ubuntu) operating system. Basically, anything that has “yum” or “apt-get” should be happy. See the manual installation instructions for other OSes, or if the single-command installer doesn't work for you.
After installation, you will be provided instructions for logging in as an administrator.
Differences from "Standard" IRC
If you have used IRC before, then you may notice that SimpleIRC does things a little bit differently. While it still supports the IRC protocol, and should work with nearly all IRC client applications, there are indeed some key differences from “standard” IRC.
The most important difference is, your nickname is your identity. SimpleIRC completely ignores the IRC “username” you log in with, and relies solely on your nickname for identification. If you change your nick while logged in, you have effectively logged out and logged in as a new user, and all your privileges (modes) are instantly changed to reflect that. If you have Ops in a channel and change your nick, your Ops are taken away. If you nick back and re-identify, your original modes are restored.
SimpleIRC only implements a few select user modes, to keep things simple. Voice (+v), Half-Op (+h), and Op (+o) are the only modes supported in channels. There is the concept of a server administrator, which gets server-wide +o (O-Line) and +o in all channels too, but appears to others as a standard Op.
You can optionally configure your server to require nicks and/or channels to be registered. You can also lock it down so only server administrators can create new channels, and even make them private (invite only). Users added to channels (given a mode, or added in the web UI) are permanently invited.
Open Source
SimpleIRC is open source, and available on GitHub:
https://github.com/jhuckaby/simpleirc
Copyright and Legal
SimpleIRC is copyright (c) 2013 by Joseph Huckaby and PixlCore.com. It is released under the MIT License (see below).
Note that this software ships with some bundled 3rd party software libraries which have different licenses:
SimpleIRC relies on the following non-core Perl modules, which are automatically installed, along with their prerequisites, using cpanm:
MIT License
Copyright (c) 2013 Joseph Huckaby
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
comments powered by Disqus