diff options
| author | Pratyush Desai | 2021-12-24 20:08:42 +0530 | 
|---|---|---|
| committer | Pratyush Desai | 2021-12-24 20:08:42 +0530 | 
| commit | 5564ffb20798d45bf87910feea39bf02b0d2dee4 (patch) | |
| tree | 1a4deea0ecbb582e1efe6eb8cabadb679dccfa42 /static/irc.html | |
| parent | 5725181871aab1b84ddb0cbccc7d6f033210c2cb (diff) | |
| download | website-5564ffb20798d45bf87910feea39bf02b0d2dee4.tar.gz website-5564ffb20798d45bf87910feea39bf02b0d2dee4.tar.bz2 website-5564ffb20798d45bf87910feea39bf02b0d2dee4.zip | |
django initdjango
Diffstat (limited to 'static/irc.html')
| -rw-r--r-- | static/irc.html | 106 | 
1 files changed, 106 insertions, 0 deletions
| diff --git a/static/irc.html b/static/irc.html new file mode 100644 index 0000000..5babe9c --- /dev/null +++ b/static/irc.html @@ -0,0 +1,106 @@ +<!DOCTYPE html> +<html> + +<head> +<meta charset="UTF-8"> +  <link rel="stylesheet" href="styles.css"> +<title>LibertaCasa</title> +</head> + +<body> +<pre> +┬   ┌┬┐ ┬─┐ ┬─┐ ┬─┐ ┌┐┐ ┬─┐ +│    │  │─│ │─  │┬┘  │  │─┤ +┘─┘ └┴┘ │─┘ ┴─┘ │└┘  ┘  ┘ │ + +┌─┐ ┬─┐ ┐─┐ ┬─┐ +│   │─┤ └─┐ │─┤ +└─┘ ┘ │ ──┘ ┘ │ +</pre> + +<h3>IRC</h3> +<pre> + +<a href="/register">Registration</a> + +<a href="/kiwi">KiwiIRC Webchat</a> | <a href="/gamja">Gamja Webchat</a> | <a href="/convos">Convos Webchat/Bouncer</a> + + +Connection Details: +=================== + +Hostnames are cryptographically cloaked so that your IP address information is not visible to others. +It is still visible to server administrators. +To connect configure your IRC client as follows: + +Host:       irc.liberta.casa +Port:       6697 +SSL/TLS:    True + + +If you would like to anonymize the connection against the administrators, +you can access the network via +1. TOR: + +   Host:     cr36xbvmgjwnfw4sly4kuc6c3ozhesjre3y5pggq5xdkkmbrq6dz4fad.onion +   Port:     6667 +   SSL/TLS:  False + +Webchat via Tor is available through the links on the top - KiwiIRC will offer the best experience. + +2. I2P + +  Guide to setting up i2p <a href="/i2p.html">here</a> + +  Use the samle configuration shown above. +  Destination: fzsgc66e52ve5phrcktrekqtko423ihau42u72v4cfg6bg4osuda.b32.i2p +  Port:        6668 +  SSL/TLS:     False + +Account registration FAQ +======================== + +1. How do I register my nickname / account? + +Use this command, substituting your desired password: + +  /msg NickServ register mySecretPassword + +You can also register on this page <a href="/register">here</a> + +Once you register your nick it becomes your account name. It is the name with which you are expected to login. + + +2. How do I authenticate to my nickname? + +You should enable SASL in your client.  + + + - If your client doesn't support SASL, then update to a good client! + - Alternatively, you can use the "PASS" method + +3. What are the benefits of registering my nickname? + +The primary benefit of nickname registration is that the server can act +as an "IRC bouncer" on your behalf. Specifically: + +  a. No one else will be able to use your nickname +  b. If all your clients are configured to use SASL, they can all use the same +     nickname (as though they were connected to the same ZNC instance) +  c. Optionally, the server can keep you present on the server even if +     you have no connected clients. To enable this, use the following command: +     `/msg NickServ set always-on true` +  d. You will be able to receive <a href="https://github.com/ergochat/ergo/blob/master/docs/USERGUIDE.md#history">history</a> playback. + + +For more information checkout the <a href="https://github.com/ergochat/ergo/blob/master/docs/USERGUIDE.md">UserGuide</a> and +the <a href="https://github.com/ergochat/ergo/blob/master/docs/MANUAL.md">Manual</a>. + + + +<footer> +  <a href="mailto:hello@liberta.casa">Contact </a> +</footer> +</pre> +</body> +</html> | 
