soju/README.md

92 lines
2.7 KiB
Markdown
Raw Normal View History

2020-06-10 14:00:50 -07:00
# [soju]
2020-02-04 01:50:28 -08:00
2020-07-24 00:49:54 -07:00
[![builds.sr.ht status](https://builds.sr.ht/~emersion/soju/commits.svg)](https://builds.sr.ht/~emersion/soju/commits?)
2020-05-01 12:58:29 -07:00
A user-friendly IRC bouncer.
- Multi-user
- Support multiple clients for a single user, with proper backlog
synchronization
- Support connecting to multiple upstream servers via a single IRC connection
to the bouncer
## Usage
See the man page for more information.
2020-06-12 05:06:15 -07:00
### Server side
To create an admin user and start soju, run these commands:
sojuctl create-user <soju username> -admin
soju -listen irc+insecure://127.0.0.1:6667
2020-07-22 04:36:19 -07:00
If you're migrating from ZNC, a tool is available to import users, networks and
channels from a ZNC config file:
go run ./contrib/znc-import.go <znc config file>
2020-06-12 05:06:15 -07:00
### Client side
2020-03-12 13:28:09 -07:00
2020-06-12 05:06:15 -07:00
soju can operate in two different modes: multi upstream and single upstream.
#### Single upstream mode
In this mode, 1 upstream connection to a irc server = 1 connection to your soju
bouncer.
The easiest and fastest way to use this is to specify the address of the server
in your username in your client configuration. For example to connect to
Freenode, your username will be: `<soju username>/chat.freenode.net`. Also set
your soju password in the password field of your client configuration.
This will autoconfigure soju by adding a network with the address
`chat.freenode.net` and then autoconnect to it. You will now be able to join
any channel like you would normally do.
#### Multi upstream mode
In this mode, a single connection to your soju bouncer can handle multiple
upstream connections. You will need to manually configure each upstream
connection using the the special `BouncerServ` user.
Connect to your soju server by specifying your soju username in the username
field in your client and your password in the password field.
You should now be able to send private messages to the `BouncerServ`. You can
send it commands to configure soju. Create new networks:
/msg BouncerServ network create -addr chat.freenode.net -name freenode
/msg BouncerServ network create -addr irc.rizon.net -name rizon
You will now be able to join channels on these networks by specifying their
name:
/join #soju/freenode
/join #somechannel/rizon
## Building and installing
2020-06-12 05:06:15 -07:00
For end users, a `Makefile` is provided:
make
sudo make install
For development, you can use `go run ./cmd/soju` as usual.
## Contributing
Send patches on the [mailing list] or on [GitHub], report bugs on the
2020-03-20 02:42:17 -07:00
[issue tracker]. Discuss in #soju on Freenode.
2020-02-04 01:50:28 -08:00
## License
2020-02-07 08:41:51 -08:00
AGPLv3, see LICENSE.
Copyright (C) 2020 The soju Contributors
2020-06-10 14:00:50 -07:00
[soju]: https://soju.im
2020-07-24 00:49:54 -07:00
[mailing list]: https://lists.sr.ht/~emersion/soju-dev
[GitHub]: https://github.com/emersion/soju
2020-03-13 10:13:03 -07:00
[issue tracker]: https://todo.sr.ht/~emersion/soju