pico

created pr with 43.1 on 2025-01-15T04:11:01Z · by c8ef7d19
added 43.2 on 2025-01-15T04:12:10Z · by c8ef7d19
1: 98b341f ! 1: 3b9b6be docs(bouncer): motd
added 43.3 on 2025-01-15T04:14:11Z · by c8ef7d19
1: 3b9b6be ! 1: a99abd2 docs(bouncer): motd
cmds
checkout latest patchset:
ssh pr.pico.sh print 43 | git am -3
checkout any patchset in a patch request:
ssh pr.pico.sh print 43.[rev] | git am -3
add changes to patch request:
git format-patch main --stdout | ssh pr.pico.sh pr add 43

Patchset 43.3 on 2025-01-15T04:14:11Z · commit a99abd2

docs(bouncer): motd
Eric Bower 2025-01-15T04:10:31Z
Reference: https://soju.im/doc/soju.1.html
Semantic diff summary
0 added, 0 modified, 0 signature changed, 0 removed across 0 analyzed files (3 files skipped: unsupported file type)
+1 -0 bouncer/Dockerfile #
......@@ -49,6 +49,7 @@ COPY --from=builder /app/soju/soju .
4949 COPY --from=builder /app/soju/sojuctl .
5050
5151 COPY soju.config .
52+COPY motd.txt .
5253
5354 EXPOSE 6697
5455 EXPOSE 8080
+29 -0 bouncer/motd.txt #
......@@ -0,0 +1,29 @@
1+Welcome to irc.pico.sh!
2+
3+This is a hosted Internet Relay Chat (IRC) bouncer service for pico users.
4+
5+Documentation for this service is available online:
6+
7+https://pico.sh/bouncer
8+
9+In order to chat with other users, you must configure an IRC network.
10+IRC networks are independent entities which are not affiliated with pico.
11+
12+The recommended network for pico users is Libera Chat: https://libera.chat
13+
14+To connect to Libera Chat now, enter the following commands:
15+
16+/msg BouncerServ help
17+
18+# in the private message
19+network create -addr irc.libera.chat -nick <user> -enabled false
20+
21+# if you don't have an account skip this step
22+sasl set-plain -network libera <user> <sasl-pass>
23+
24+network update libera -enabled true
25+/j #pico.sh
26+
27+Once connected, it is recommended to register an account with the network.
28+Type "/msg NickServ help register" to send a message to the Libera Chat account
29+registration system for details.
+1 -0 bouncer/soju.config #
......@@ -12,3 +12,4 @@ auth oauth2 https://auth.pico.sh/bouncer
1212 disable-inactive-user 30d
1313 enable-user-on-auth true
1414 max-user-networks -1
15+motd motd.txt
Back to top