source: code/trunk/doc/soju.1.scd@ 369

Last change on this file since 369 was 369, checked in by contact, 5 years ago

Change unix:// to irc+unix://

When Unix socket support will be added for listeners, unix:// will be
ambiguous. It won't be clear whether to setup an IRC server, or some
other kind of server (e.g. identd).

unix:// is still recognized to avoid breaking existing DBs.

File size: 6.0 KB
Line 
1soju(1)
2
3# NAME
4
5soju - IRC bouncer
6
7# SYNOPSIS
8
9*soju* [options...]
10
11# DESCRIPTION
12
13soju is a user-friendly IRC bouncer. It connects to upstream IRC servers on
14behalf of the user to provide extra features.
15
16- Multiple separate users sharing the same bouncer, each with their own
17 upstream servers
18- Clients connecting to multiple upstream servers via a single connection to
19 the bouncer
20- Sending the backlog (messages received while the user was disconnected from
21 the bouncer), with per-client buffers
22
23When joining a channel, the channel will be saved and automatically joined on
24the next connection. When registering or authenticating with NickServ, the
25credentials will be saved and automatically used on the next connection if the
26server supports SASL. When parting a channel with the reason "detach", the
27channel will be detached instead of being left.
28
29When all clients are disconnected from the bouncer, the user is automatically
30marked as away.
31
32soju supports two connection modes:
33
34- Single upstream mode: one downstream connection maps to one upstream
35 connection. To enable this mode, connect to the bouncer with the username
36 "<username>/<network>". If the bouncer isn't connected to the upstream
37 server, it will get automatically added. Then channels can be joined and
38 parted as if you were directly connected to the upstream server.
39- Multiple upstream mode: one downstream connection maps to multiple upstream
40 connections. Channels and nicks are suffixed with the network name. To join
41 a channel, you need to use the suffix too: _/join #channel/network_. Same
42 applies to messages sent to users.
43
44For per-client history to work, clients need to indicate their name. This can
45be done by adding a "@<client>" suffix to the username.
46
47# OPTIONS
48
49*-h, -help*
50 Show help message and quit.
51
52*-config* <path>
53 Path to the config file. If unset, a default config file is used.
54
55*-debug*
56 Enable debug logging (this will leak sensitive information such as
57 passwords).
58
59*-listen* <uri>
60 Listening URI (default: ":6697").
61
62# CONFIG FILE
63
64The config file has one directive per line.
65
66Example:
67
68```
69listen ircs://
70tls cert.pem key.pem
71hostname example.org
72```
73
74The following directives are supported:
75
76*listen* <uri>
77 Listening URI (default: ":6697").
78
79 The following URIs are supported:
80
81 - _[ircs://][host][:port]_ listens with TLS over TCP (default port if
82 omitted: 6697)
83 - _irc+insecure://[host][:port]_ listens with plain-text over TCP (default
84 port if omitted: 6667)
85 - _wss://[host][:port]_ listens for WebSocket connections over TLS (default
86 port: 443)
87 - _ws+insecure://[host][:port]_ listens for plain-text WebSocket
88 connections (default port: 80)
89
90 If the scheme is omitted, "ircs" is assumed. If multiple *listen*
91 directives are specified, soju will listen on each of them.
92
93*hostname* <name>
94 Server hostname (default: system hostname).
95
96*tls* <cert> <key>
97 Enable TLS support. The certificate and the key files must be PEM-encoded.
98
99*sql* <driver> <source>
100 Set the SQL driver settings. The only supported driver is "sqlite3". The
101 source is the path to the SQLite database file. By default, the path to the
102 database file is "soju.db".
103
104*log* <path>
105 Path to the bouncer logs root directory, or empty to disable logging. By
106 default, logging is disabled.
107
108*http-origin* <patterns...>
109 List of allowed HTTP origins for WebSocket listeners. The parameters are
110 interpreted as shell patterns, see *glob*(7).
111
112# IRC SERVICE
113
114soju exposes an IRC service called *BouncerServ* to manage the bouncer.
115Commands can be sent via regular private messages
116(_/msg BouncerServ <command> [args...]_). Commands may be written in full or
117abbreviated form, for instance *network* can be abbreviated as *net* or just
118*n*.
119
120*help* [command]
121 Show a list of commands. If _command_ is specified, show a help message for
122 the command.
123
124*network create* *-addr* <addr> [options...]
125 Connect to a new network at _addr_. _-addr_ is mandatory.
126
127 _addr_ supports several connection types:
128
129 - _[ircs://]<host>[:port]_ connects with TLS over TCP
130 - _irc+insecure://<host>[:port]_ connects with plain-text TCP
131 - _irc+unix:///<path>_ connects to a Unix socket
132
133 Other options are:
134
135 *-name* <name>
136 Short network name. This will be used instead of _addr_ to refer to the
137 network.
138
139 *-username* <username>
140 Connect with the specified username. By default, the nickname is used.
141
142 *-pass* <pass>
143 Connect with the specified server password.
144
145 *-realname* <realname>
146 Connect with the specified real name. By default, the nickname is used.
147
148 *-nick* <nickname>
149 Connect with the specified nickname. By default, the account's username
150 is used.
151
152*network update* <name> [options...]
153 Update an existing network. The options are the same as the
154 _network create_ command.
155
156 When this command is executed, soju will disconnect and re-connect to the
157 network.
158
159*network delete* <name>
160 Disconnect and delete a network.
161
162*network status*
163 Show a list of saved networks and their current status.
164
165*certfp generate* [options...] <network name>
166 Generate self-signed certificate and use it for authentication (via SASL
167 EXTERNAL).
168
169 Generates a RSA-3072 private key by default.
170
171 Options are:
172
173 *-key-type* <type>
174 Private key algoritm to use. Valid values are: rsa, ecdsa, ed25519.
175 ecdsa uses NIST P-521 curve.
176
177 *-bits* <bits>
178 Size of RSA key to generate. Ignored for other key types.
179
180*certfp fingerprint* <network name>
181 Show SHA-1 and SHA-256 fingerprints for the certificate
182 currently used with the network.
183
184*sasl set-plain* <network name> <username> <password>
185 Set SASL PLAIN credentials.
186
187*sasl reset* <network name>
188 Disable SASL authentication and remove stored credentials.
189
190*user create* -username <username> -password <password> [-admin]
191 Create a new soju user. Only admin users can create new accounts.
192
193*change-password* <new password>
194 Change current user password.
195
196# AUTHORS
197
198Maintained by Simon Ser <contact@emersion.fr>, who is assisted by other
199open-source contributors. For more information about soju development, see
200https://sr.ht/~emersion/soju.
Note: See TracBrowser for help on using the repository browser.