salty-ircd/README.md

43 lines
1.9 KiB
Markdown
Raw Normal View History

2017-03-17 21:23:36 +01:00
# salty-ircd
salty-ircd is an [Internet Relay Chat](https://en.wikipedia.org/wiki/Internet_Relay_Chat) daemon written in [D](https://dlang.org/).
## Goals
The main goals of salty-ircd are strict RFC compliance and security.
### RFC compliance
salty-ircd aims to be fully compliant with the IRC RFCs (by default), specifically [RFC 1459](https://tools.ietf.org/html/rfc1459), [RFC 2811](https://tools.ietf.org/html/rfc2811), [RFC 2812](https://tools.ietf.org/html/rfc2812), and [RFC 2813](https://tools.ietf.org/html/rfc2813) (planned), including all errata.
2020-11-14 23:08:27 +01:00
Newer RFCs take precedence over older RFCs.
Any additional features breaking RFC compliance are available through compile-time options.
### Security
The following rules apply when any compile-time option is enabled (breaking strict RFC compliance):
* TLS is required for all connections, except connections from localhost (useful for running a Tor hidden service, which already has encryption)
* TLS client certificates are required for oper and vhost authentication
## Building
Build dependencies:
* A D compiler
* dub
* fish
* git
Build command:
* RFC compliant: `dub build`
* Modern (all additional features): `dub build -c=modern`
2020-11-14 23:08:27 +01:00
The 'modern' configuration aims to be mostly compatible with UnrealIRCd user modes/chars.
When `-d=ProxyV1` is added to the build command, salty-ircd can accept traffic through the PROXY protocol (version 1), e.g. from an UnrealIRCd server running with [a custom module](https://github.com/lesderid/unrealircd5_proxyv1_copy). Please see this module's readme for more information. Note that this is simply a development/debugging option and should not be used for a production server.
TODO: Add a method to supply a custom list of compile-time options.
2017-03-17 21:23:36 +01:00
2020-11-14 23:08:27 +01:00
## Running
First, create the configuration file, `config.sdl`. You can find a template in `config.template.sdl`.
2017-03-17 21:23:36 +01:00
2020-11-14 23:08:27 +01:00
Then, simply run `./out/salty-ircd`.
2017-03-17 21:23:36 +01:00
## License
[University of Illinois/NCSA Open Source License](LICENSE).