Go to file
Thomas Habets 1f4a463c0a Add SSL support. 2014-06-08 02:08:13 +02:00
AUTHORS Initial commit 2014-05-11 20:18:55 +04:00
COPYING Initial commit 2014-05-11 20:18:55 +04:00
INSTALL Initial commit 2014-05-11 20:18:55 +04:00
README Typo 2014-05-18 15:34:31 +04:00
client.go Separate 401 code answer 2014-05-13 23:56:29 +04:00
client_test.go Additional unittests 2014-05-18 15:34:19 +04:00
daemon.go Continuation after negative replies 2014-05-18 15:26:15 +04:00
daemon_test.go Additional unittests 2014-05-18 15:34:19 +04:00
events.go Initial commit 2014-05-11 20:18:55 +04:00
goircd.go Add SSL support. 2014-06-08 02:08:13 +02:00
room.go Unnecessary message broadcasting goroutines 2014-05-18 15:26:50 +04:00
room_test.go Additional unittests 2014-05-18 15:34:19 +04:00

README

     goircd -- minimalistic simple Internet Relay Chat (IRC) server
     ==============================================================

SYNOPSIS

goircd is very simple IRC server, written on Go.

DESCRIPTION

goircd is very simple IRC server, written on Go.
It is heavily inspired by miniircd daemon written on Python.
It does not aim to replace full featured mass scalable IRC networks:

* It can not connect to other servers. Just standalone installation
* It has few basic IRC commands
* There is no support for channel operators, modes, votes, invites
  and so on
* No ident lookups, reverse DNS queries

But it has some convincing features:

* Only standard Go libraries, no external requirements
* Single executable binary
* No configuration file, just few command line arguments
* IPv6 out-of-box support
* Optional channel logging to plain text files
* Optional permanent channel's state saving in plain text files
  (so you can reload daemon and all channels topics and keys won't
  disappear)

Some remarks and recommendations related to it's simplicity:

* Use either nohup or similar tools to daemonize it
* Use either crywrap or similar tools for TLS-capable connections
* Just plain logging on stderr, without syslog support

SUPPORTED IRC COMMANDS

* NICK/USER during registration workflow
* PING/PONGs
* NOTICE/PRIVMSG
* MOTD, LUSERS, WHO, WHOIS, QUIT
* LIST, JOIN, TOPIC, +k/-k channel MODE

USAGE

Just execute goircd daemon. It has following optional arguments:

* -hostname: hostname to show for client's connections
* -bind: address to bind to (:6667 be default)
* -motd: absolute path to MOTD file. It is reread every time MOTD is
         requested
* -logdir: directory where all channels messages will be saved. If
           omitted, then no logs will be kept
* -statedir: directory where all channels states will be saved and
             loaded during startup. If omitted, then states will be
             lost after daemon termination

LICENCE

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.