transient.chat/static/faq.html

82 lines
3.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>FAQ - Transient.chat</title>
<meta
name="description"
content="Frequently asked questions about using Transient.chat"
/>
<link rel="stylesheet" href="/assets/css/styles.css" />
<link rel="icon" href="/assets/images/favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="info-text">
<div class="title-row">
<a href="index.html">
<img
src="/assets/images/transientchat-blue.png"
alt="Transient.chat"
/>
</a>
<h1>Frequently Asked Questions</h1>
</div>
<h2>How long do messages last?</h2>
<p>All chat messages automatically disappear after 1 hour.</p>
<h2>How long do rooms last?</h2>
<p>
All chat rooms automatically disappear after all users leave the room.
</p>
<h2>Do I need an account to use this?</h2>
<p>
No. Just pick a handle and start chatting. If you don't come back in 3
days your handle is released.
</p>
<h2>Is anything stored permanently?</h2>
<p>
No databases or disk files are used for chat messages or media—everything exists temporarily in memory and vanishes within an hour. We persist only basic session configuration, ban records, and room owner mappings using a lightweight local database so they survive server updates.
</p>
<h2>Is my chat secure / private?</h2>
<p>
Yes! We support <strong>Zero-Knowledge End-to-End Encryption (E2EE)</strong>.
You can enable encryption for any room by clicking <strong>+ Add Passphrase</strong> in the sidebar and entering a passphrase.
Encryption keys are derived locally in your browser using PBKDF2 and AES-GCM.
The passphrases reside strictly in your browser's session memory and are <em>never</em> sent to the server.
Anyone without the correct passphrase will only see a placeholder indicating the message is encrypted, with a quick link to add the passphrase to their keyring if they know it.
</p>
<h2>What is a Watchroom?</h2>
<p>
A Watchroom lets you sync YouTube playback with others while chatting.
Everyone sees the same video at the same time.
</p>
<h2>Can I send voice messages?</h2>
<p>
Yes. You can record short voice clips (up to 15 seconds) by holding the microphone button.
Enable <strong>Autoplay</strong> in the sidebar to hear messages automatically as they arrive.
</p>
<h2>What is External Content?</h2>
<p>
External images and videos linked by other users. You can toggle <strong>External Content</strong> on to automatically show embedded media.
</p>
<h2>Can users be removed?</h2>
<p>Yes. Room owners can kick users. Admins can ban users by IP.</p>
<h2>Where can I find the source code?</h2>
<p><a href="https://forgejo.benjimanmiller.com/ben/transient.chat">https://forgejo.benjimanmiller.com/ben/transient.chat</a></p>
<br /><br />
<a href="index.html">← Back to Home</a>
</div>
</body>
</html>