Go to file
Daniel Oaks 7a730e2864 New translations translation.lang.yaml (Arabic) 2020-03-18 21:32:18 +10:00
distrib/docker Fix Docker 2020-03-07 19:02:33 +10:00
docs fix history section 2020-03-01 23:54:47 -05:00
irc disallow /SAMODE nick +o 2020-03-17 13:19:27 -04:00
languages New translations translation.lang.yaml (Arabic) 2020-03-18 21:32:18 +10:00
vendor upgrade irc-go to latest master 2020-03-11 18:52:50 -04:00
.check-gofmt.sh add gofmt check to `make test` 2018-05-04 04:28:01 -04:00
.gitattributes add .gitattributes 2020-02-12 13:14:11 -05:00
.gitignore Start making builds with goreleaser 2018-01-07 12:40:26 +10:00
.gitmodules fix #782 (bring vendor into the main tree) 2020-02-12 13:19:23 -05:00
.goreleaser.yml set wrap_in_directory, fixes #563 2019-06-24 06:30:54 -04:00
.travis.yml fix #781 2020-02-25 14:50:03 -05:00
CHANGELOG.md remove erroneous changelog entry 2020-03-11 06:01:24 -04:00
DEVELOPING.md add a note about ircstress as a pre-release check 2020-03-02 06:08:52 -05:00
Dockerfile use \s instead of . for matching listener definition lines 2020-03-07 23:55:45 -05:00
LICENSE update copyright notice 2020-01-03 02:44:03 -05:00
Makefile initial persistent history implementation 2020-02-19 00:24:12 -05:00
README update documentation and branding 2020-02-26 02:39:58 -05:00
README.md update documentation and branding 2020-02-26 02:39:58 -05:00
crowdin.yml Force CrowdIn to put files in the right place 2019-02-04 04:15:45 +10:00
gencapdefs.py rename 'bouncer' to 'multiclient' 2020-02-21 00:33:55 -05:00
go.mod upgrade irc-go to latest master 2020-03-11 18:52:50 -04:00
go.sum upgrade irc-go to latest master 2020-03-11 18:52:50 -04:00
oragono.go fix #622 2019-09-11 20:18:47 -04:00
oragono.motd Add colour charts to the default MOTD, including 16-98 extended colours 2018-04-01 00:35:41 +10:00
oragono.yaml rename config keys from review feedback 2020-03-17 09:04:14 -04:00
updatetranslations.py fix #407 2019-05-29 05:11:29 -04:00

README.md

Oragono logo

Oragono is a modern IRC server written in Go. Its core design principles are:

  • Being simple to set up and use
  • Combining the features of an ircd, a services framework, and a bouncer (integrated account management, history storage, and bouncer functionality)
  • Bleeding-edge IRCv3 support, suitable for use as an IRCv3 reference implementation
  • Highly customizable via a rehashable (i.e., reloadable at runtime) YAML config

Oragono is a fork of the Ergonomadic IRC daemon <3


Go Report Card Build Status Download Latest Release Freenode #oragono Crowdin

darwin.network and testnet.oragono.io are running Oragono in production if you want to take a look.


Features

  • integrated services: NickServ for user accounts, ChanServ for channel registration, and HostServ for vanity hosts
  • bouncer-like features: storing and replaying history, allowing multiple clients to use the same nickname
  • UTF-8 nick and channel names with rfc7613 (PRECIS)
  • native TLS/SSL support, including support for client certificates
  • yaml configuration
  • updating server config and TLS certificates on-the-fly (rehashing)
  • SASL authentication
  • LDAP support
  • supports multiple languages (you can also set a default language for your network)
  • advanced security and privacy features (support for requiring SASL for all logins, cloaking IPs, and running as a Tor hidden service)
  • an extensible privilege system for IRC operators
  • ident lookups for usernames
  • automated client connection limits
  • passwords stored with bcrypt
  • banning ips/nets and masks with KLINE and DLINE
  • IRCv3 support
  • a heavy focus on developing with specifications

Installation

To go through the standard installation, download the latest release from this page: https://github.com/oragono/oragono/releases/latest

Extract it into a folder, then run the following commands:

cp oragono.yaml ircd.yaml
vim ircd.yaml  # modify the config file to your liking
oragono mkcerts

Note: For setting up proper Lets Encrypt certificates, weve got this manual entry.

Platform Packages

Some platforms/distros also have Oragono packages maintained for them:

Using Docker

A Dockerfile and example docker-compose recipe are available in the distrib/docker directory. Oragono is automatically published to Docker Hub at oragono/oragono. For more information, see the distrib/docker README file.

From Source

You can also install this repo and use that instead! However, keep some things in mind if you go that way:

devel branches are intentionally unstable, containing fixes that may not work, and they may be rebased or reworked extensively.

The master branch should usually be stable, but may contain database changes that either have not been finalised or not had database upgrade code written yet. Dont run master on a live production network.

The stable branch contains the latest release. You can run this for a production version without any trouble.

Building

Youll need an up-to-date distribution of the Go language for your OS and architecture. Once you have that, just clone the repository and run make build. If everything goes well, you should now have an executable named oragono in the base directory of the project.

Configuration

The default config file oragono.yaml helps walk you through what each option means and changes. The configurations intended to be sparse, so if there are options missing its either because that feature isnt written/configurable yet or because we dont think it should be configurable.

You can use the --conf parameter when launching Oragono to control where it looks for the config file. For instance: oragono run --conf /path/to/ircd.yaml. The configuration file also stores where the log, database, certificate, and other files are opened. Normally, all these files use relative paths, but you can change them to be absolute (such as /var/log/ircd.log) when running Oragono as a service.

Logs

By default, logs go to stderr only. They can be configured to go to a file, or you can use systemd to direct the stderr to the system journal (see the manual for details). The configuration format of logs is designed to be easily pluggable, and is inspired by the logging config provided by InspIRCd.

Passwords

Passwords (for both PASS and oper logins) are stored using bcrypt. To generate encrypted strings for use in the config, use the genpasswd subcommand as such:

oragono genpasswd

With this, you receive a blob of text which you can plug into your configuration file.

Running

After this, running the server is easy! Simply run the below command and you should see the relevant startup information pop up.

oragono run

How to register a channel

  1. Register your account with /NS REGISTER <username> <email> <password>
  2. Join the channel with /join #channel
  3. Register the channel with /CS REGISTER #channel

After this, your channel will remember the fact that youre the owner, the topic, and any modes set on it!

Make sure to setup SASL in your client to automatically login to your account when you next join the server.

Credits