pages/services/irc.html

61 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>m455's irc server</title>
</head>
<body>
<a href="/services/">&lt;-- go back</a>
<main>
<h1>m455's irc server</h1>
<p>
m455 runs a small, private irc server using <a href="https://ergo.chat/">ergo</a>.
</p>
<h2>server features</h2>
the following list describes the features available for this server:
<ul>
<li>you need to be registered to connect to the server.</li>
<li>all hostnames are cryptographically cloaked, so IP addresses are not visible to anyone, except server administrators.</li>
<li>you can connect from multiple devices using the same nickname.</li>
<li>you can change your nickname.</li>
<li>chat history and messages are not saved, but the last 100 messages are kept in ram, and are "played back" (displayed) when someone joins the server. to disable history playback, you can run <code>/msg nickserv set autoreplay-lines 0</code>. to re-enable history playback, you can run <code>/msg nickserv set autoreplay-lines 100</code>.</li>
<li>the server supports a SASL work-around if your client doesn't support SASL. just use the name you use to sign in, and set the password to the format of <code>yourusername:password</code>. for example, my username would be <code>m455</code>, and my password would be <code>m455:mysecretpassword</code>.</li>
</ul>
<p>for more more detailed information about the features available, refer to
<a href="/oregano.htm">our ergo.chat page</a>.</p>
<h2>connecting to the server</h2>
<p>
after you receive an account and a temporary password, you can connect to my
server by configuring your IRC client to use the following settings:
</p>
<pre>
SASL username: &lt;username&gt;
SASL password: &lt;password&gt;
host: m455.casa
port: 6697
SSL/TLS: true
</pre>
<p>
if your IRC client doesn't support SASL, then you can use the following settings
instead:
</p>
<pre>
username: &lt;username&gt;
password: &lt;username:password&gt;
host: m455.casa
port: 6697
SSL/TLS true
</pre>
<h2>troubleshooting</h2>
<p>
if you're still having trouble connecting to my server with your IRC client, then <a href="https://libera.chat/guides/sasl">libera.chat's guide to connecting with SASL</a> might help.
</p>
</main>
</body>
</html>