Move from freenode to own IRC server for support
Remove unused modes from ISUPPORT
Store invites in "Client" instead of "Channel"
This repository contains some crates that may be helpful to the IRC smith of the 21st century! They were built around ellidri, a modern IRC server (or IRCd, for short). You will especially find:
To discuss about ellidri and cie, join the IRC channel: #ellidri on ellidri.org (port 6697 with TLS)!
The rest of this document is about ellidri, the IRC server. All other projects
have their own README.md
.
Supported extensions: account-notify
, away-notify
, batch
,
cap-notify
, echo-message
, extended-join
, invite-notify
,
labeled-response
, message-ids
, message-tags
, multi-prefix
,
server-time
, setname
, userhost-in-names
ellidri doesn't support any server-to-server (S2S) protocol. As such, it is impossible to make several instances of ellidri manage the same IRC network.
ellidri requires UTF-8 from clients, and for now it only supports ascii
as
casemapping.
Prerequisites:
Install ellidri with cargo install ellidri
, or with the AUR package.
During development, build it with cargo build
, and run it with cargo run
.
For packaging, build it with cargo build --release --locked
. The release
flag will enable optimizations and the locked
flag will require a valid lock
file (Cargo.lock
), to make sure that the same dependencies are used for
development and for release. The executable is generated at
target/release/ellidri
.
See doc/setup-guide.md
for a step-by-step guide to have a working
setup.
Patches are welcome! Here are some links to get started:
When developing ellidri, you can use the following command to generate the documentation of all items:
cargo doc --no-deps --document-private-items --open
ellidri couldn't have existed without the help of https://ircdocs.horse. Thank you Daniel Oaks and all other contributors!
Also thanks to the IRCv3 working group for all the work on modernizing the IRC protocol!
ellidri is under the ISC license. See LICENSE
for a copy.