mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
improve matrix page
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
parent
abe0477a1d
commit
353c8a0210
5 changed files with 672 additions and 82 deletions
|
@ -3,6 +3,7 @@
|
||||||
{
|
{
|
||||||
"matrix_id": "@ari:ari.lt",
|
"matrix_id": "@ari:ari.lt",
|
||||||
"email_address": "ari.web.xyz@gmail.com",
|
"email_address": "ari.web.xyz@gmail.com",
|
||||||
|
"lt.ari.room": "#root:ari.lt",
|
||||||
"role": "m.role.admin"
|
"role": "m.role.admin"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
@ -102,5 +102,13 @@
|
||||||
"blog.ari.lt": 246.4,
|
"blog.ari.lt": 246.4,
|
||||||
"legacy.blog.ari.lt": 14.6
|
"legacy.blog.ari.lt": 14.6
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"2024-01-29": {
|
||||||
|
"total": 464,
|
||||||
|
"top": {
|
||||||
|
"ari.lt": 355.1,
|
||||||
|
"blog.ari.lt": 69.5,
|
||||||
|
"files.ari.lt": 27.9
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,6 +76,8 @@
|
||||||
brought to you by Ari Archer and <a href="/thanks">her supporters</a>
|
brought to you by Ari Archer and <a href="/thanks">her supporters</a>
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
|
<i>Here for the Matrix homeserver? See <a href="/matrix">/matrix</a></i>
|
||||||
|
|
||||||
<nav class="mobile-only">
|
<nav class="mobile-only">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="#blog">latest blog posts</a></li>
|
<li><a href="#blog">latest blog posts</a></li>
|
||||||
|
|
|
@ -8,23 +8,27 @@
|
||||||
|
|
||||||
<meta
|
<meta
|
||||||
name="description"
|
name="description"
|
||||||
content="ari-web ( ari.lt ) matrix homeserver guidelines"
|
content="Ari-web Matrix homeserver Sign-up requirements, Guidelines, Privacy policy, and Termination policy."
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta
|
||||||
name="keywords"
|
name="keywords"
|
||||||
content="matrix, homeserver, matrix homeserver, ari-web, ari archer, open source, free speech, democracy"
|
content="matrix, homeserver, matrix homeserver, ari-web, ari archer, open source, free speech, democracy, document, cc0, ee2e, legal, gdpr, dmca, rules, toc, email, contact, sign-up"
|
||||||
/>
|
/>
|
||||||
<meta
|
<meta
|
||||||
name="robots"
|
name="robots"
|
||||||
content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"
|
content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"
|
||||||
/>
|
/>
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="article" />
|
||||||
|
|
||||||
<meta name="color-scheme" content="dark" />
|
<meta name="color-scheme" content="dark" />
|
||||||
<meta name="theme-color" content="black" />
|
<meta name="theme-color" content="black" />
|
||||||
|
|
||||||
|
<meta name="license" content="CC0" />
|
||||||
|
|
||||||
<link rel="manifest" href="/manifest.json" />
|
<link rel="manifest" href="/manifest.json" />
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://ari.lt/page/matrix" />
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
* {
|
* {
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
|
@ -41,96 +45,667 @@
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 2em;
|
padding: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
margin: 10px 0;
|
||||||
|
overflow: hidden;
|
||||||
|
padding: 0 0 0 20px;
|
||||||
|
font-weight: 100;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote:before {
|
||||||
|
content: "";
|
||||||
|
border-left: #e6e0c8 solid 2px;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 14px;
|
||||||
|
top: 13px;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skip {
|
||||||
|
position: absolute;
|
||||||
|
top: -40px;
|
||||||
|
left: 0;
|
||||||
|
background: #000;
|
||||||
|
color: white;
|
||||||
|
padding: 8px;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.skip:focus {
|
||||||
|
top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer,
|
||||||
|
h1 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1><a href="https://ari.lt/">ari.lt</a> matrix homeserver</h1>
|
<a class="skip" href="#main">Skip to main content</a>
|
||||||
|
|
||||||
<p>
|
<article>
|
||||||
hello ! <a href="https://ari.lt/">ari.lt</a> is a general purpose
|
<header>
|
||||||
matrix homeserver based on democratic principles ( such as the
|
<h1 id="ari-lt-matrix-homeserver">
|
||||||
people in power are controlled and monitored by the people ) open to
|
<a href="https://ari.lt/">ari.lt</a> Matrix homeserver
|
||||||
the public with request to prevent spam and abuse and i am inviting
|
</h1>
|
||||||
anyone who wants an account on this homeserver to contact me :
|
</header>
|
||||||
</p>
|
|
||||||
|
<main id="main">
|
||||||
|
<div id="toc">
|
||||||
|
<p>Table Of Contents (<a href="#toc">ToC</a>):</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Introduction: <a href="#intro">#intro</a></li>
|
||||||
|
<li>
|
||||||
|
Registration:
|
||||||
|
<a href="#registration">#registration</a>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
email :
|
Contacts: <a href="#contacts">#contacts</a>
|
||||||
<a href="mailto:ari.web.xyz@gmail.com">ari.web.xyz@gmail.com</a>
|
</li>
|
||||||
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
matrix :
|
"Freeze peach" (free speech):
|
||||||
<a href="https://matrix.to/#/@ari:ari.lt">@ari:ari.lt</a>
|
<a href="#peach">#peach</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
matrix room :
|
Privacy: <a href="#privacy">#privacy</a> (TL;DR:
|
||||||
<a href="https://matrix.to/#/#root:ari.lt">#root:ari.lt</a>
|
<a href="#p-tldr">#p-tldr</a>)
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
GDPR compliance: <a href="#gdpr">#gdpr</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
DMCA compliance: <a href="#dmca">#dmca</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Termination:
|
||||||
|
<a href="#termination">#termination</a> (TL;DR:
|
||||||
|
<a href="#t-tldr">#t-tldr</a>)
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Guidelines:
|
||||||
|
<a href="#guidelines">#guidelines</a> (TL;DR:
|
||||||
|
<a href="#g-tldr">#g-tldr</a>)
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
License: <a href="#license-cc0">#license-cc0</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<i>Last updated: 2024-01-29</i>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="intro">
|
||||||
|
<h2><a href="#intro">#</a> Introduction</h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
these contacts are defined in the
|
Hello! This is the
|
||||||
|
<a href="https://ari.lt/">ari.lt</a> Matrix homeserver's
|
||||||
|
home page. For those who are unaware -
|
||||||
|
<a
|
||||||
|
href="https://en.wikipedia.org/wiki/Matrix_(protocol)"
|
||||||
|
>Matrix</a
|
||||||
|
>
|
||||||
|
is an end-to-end encrypted, decentralized, federated
|
||||||
|
messaging protocol, and I've been maining it for a while
|
||||||
|
now - that's exactly why I have spun up a
|
||||||
|
<a href="https://github.com/matrix-org/dendrite"
|
||||||
|
>Dendrite</a
|
||||||
|
>
|
||||||
|
homeserver, of which you can find the source
|
||||||
|
<i>configuration</i> (source code is unchanged) at
|
||||||
|
<a href="https://matrix.ari.lt/git"
|
||||||
|
>https://matrix.ari.lt/git</a
|
||||||
|
>. This document defines this homeserver's limits, data
|
||||||
|
processing, compliance and main focuses: democracy,
|
||||||
|
freedom (free speech: see
|
||||||
|
<a href="#peach">"Freeze peach"</a>), and privacy.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="registration">
|
||||||
|
<h2><a href="#registration">#</a> Registration</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
The server is not <i>open registration</i> in a way
|
||||||
|
where you can just sign up at your own will instantly -
|
||||||
|
as to prevent spam, "alt" (alternative account) spam,
|
||||||
|
ban evasion, and attacks. So to say -- to provide a
|
||||||
|
smooth experience for people using this homeserver. If
|
||||||
|
you want an account on this homeserver (as in you want a
|
||||||
|
Matrix account on
|
||||||
|
<a href="https://ari.lt/">ari.lt</a> and your MXID
|
||||||
|
(Matrix ID, username) will appear as
|
||||||
|
@your_username:ari.lt) you have to contact me through
|
||||||
|
one of the following
|
||||||
|
<a href="#contacts">contacts</a> listed in
|
||||||
<a href="https://ari.lt/.well-known/matrix/support"
|
<a href="https://ari.lt/.well-known/matrix/support"
|
||||||
>msc1929 endpoint</a
|
>the MSC1929 endpoint</a
|
||||||
>
|
>
|
||||||
too, when contacting please specify the username you want, i'll let
|
and make sure to read
|
||||||
you know if it's taken, and if it is not, i will reply with your
|
<a href="#notice">the notice below</a>:
|
||||||
temporary password, which i <b>highly</b> suggest changing right
|
|
||||||
after login,, you will also be auto-joined in the
|
|
||||||
<a href="https://matrix.to/#/#root:ari.lt">#root:ari.lt</a> room and
|
|
||||||
<a href="https://matrix.to/#/#ari:ari.lt">#ari:ari.lt</a> space
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<ul id="contacts">
|
||||||
|
<li>
|
||||||
|
Matrix:
|
||||||
|
<a href="https://matrix.to/#/@ari:ari.lt"
|
||||||
|
>@ari:ari.lt</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
E-Mail:
|
||||||
|
<a href="mailto:ari.web.xyz@gmail.com"
|
||||||
|
>ari.web.xyz@gmail.com</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Main <a href="https://ari.lt/">ari.lt</a> room:
|
||||||
|
<a href="https://matrix.to/#/#root:ari.lt"
|
||||||
|
>#root:ari.lt</a
|
||||||
|
>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<div id="notice">
|
||||||
|
<p>
|
||||||
|
Before contacting, please read
|
||||||
|
<a href="#privacy">Privacy</a>,
|
||||||
|
<a href="#guidelines">Guidelines</a>, and
|
||||||
|
<a href="#termination">Termination</a> sections, and
|
||||||
|
make sure, whenever you contact me for an account,
|
||||||
|
you add
|
||||||
|
<a href="#consent">this consent statement</a>
|
||||||
|
to your request:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<blockquote id="consent">
|
||||||
|
<p>
|
||||||
|
I have read the Privacy and Termination
|
||||||
|
policies, along with the Guidelines of the
|
||||||
|
<a href="https://ari.lt/">ari.lt</a> homeserver
|
||||||
|
located on the
|
||||||
|
<a href="https://ari.lt/page/matrix"
|
||||||
|
>https://ari.lt/page/matrix</a
|
||||||
|
>
|
||||||
|
page and I understand and consent to the
|
||||||
|
policies and statements written in that
|
||||||
|
document.
|
||||||
|
</p>
|
||||||
|
</blockquote>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
your wanted username and activity must not violate the following
|
This is done to prevent future confusion and
|
||||||
rules :
|
accusations that may or may not happen, and to note
|
||||||
|
that I (the owner of this homeserver)
|
||||||
|
<b>do not (don't)</b> take any accountability,
|
||||||
|
responsibility, or repercussions for the users of
|
||||||
|
this homeserver (<a href="https://ari.lt/">ari.lt</a
|
||||||
|
>).
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="peach">
|
||||||
|
<h2><a href="#peach">#</a> "Freeze peach" (free speech)</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Just because this homeserver is focused on freedom and
|
||||||
|
democracy, this does not mean total anarchy and zero
|
||||||
|
control. Many people nowadays misinterpret "free speech"
|
||||||
|
as total anarchy: allowing hate speech, spam, no banning
|
||||||
|
or termination, no warnings, etc. This is not this type
|
||||||
|
of homeserver. I have seen way too many of those and I
|
||||||
|
am tired of such homeservers. For this homeserver human
|
||||||
|
decency is a must and there's no way around that,
|
||||||
|
<a href="#guidelines">Guidelines</a>
|
||||||
|
go more in-depth on this.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<ul>
|
<p>Please be a decent human.</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="privacy">
|
||||||
|
<h2><a href="#privacy">#</a> Privacy</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<a href="https://ari.lt/">ari.lt</a> does not collect
|
||||||
|
any identifiable information (not even
|
||||||
|
<a href="https://nginx.org/">nginx</a> logs!) about the
|
||||||
|
users of its services, except:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<ul id="collection">
|
||||||
<li>
|
<li>
|
||||||
you must follow all german and lithuanian law, not following
|
The default logging
|
||||||
this, depending on how severe it is will get your account
|
<a href="https://github.com/matrix-org/dendrite"
|
||||||
deactivated with or without 1 day notice
|
>Dendrite</a
|
||||||
|
>
|
||||||
|
does by default (used for issue diagnostics and does
|
||||||
|
not include any identifiable information).
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
hate speech and constant harassment is not tolerated,, you will
|
<a href="https://spec.matrix.org/latest/"
|
||||||
get a warning if found out, and if the behaviour continues you
|
>Matrix data</a
|
||||||
will get 1 day or so notice and then your account be deactivated
|
>: messages, media (avatars, attachments), ... -
|
||||||
permenantly
|
whatever you upload on the homeserver. (encryption
|
||||||
</li>
|
depends on whether or not encryption for the
|
||||||
<li>
|
specific resource is available and if so - was it
|
||||||
basic human decency is a must ( such as not engaging,
|
enabled? (for example private messages have
|
||||||
distributing child pornography ( lolicon included ) ), action is
|
encryption, but public rooms do not)).
|
||||||
depending on severity, generally 1 day notice is what you'll
|
|
||||||
get, but if its servere enough your account may get instantly
|
|
||||||
deactivated
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
the homeserver collects no explicitly privacy invading data on you (
|
That's about it. This homeserver tries to keep logging
|
||||||
not even webserver logging ) except the default dendrite logging
|
to a minimum to provide a private experience to its
|
||||||
which helps to debug certain issues, though it doesn't include
|
users. You may also be interested in the following
|
||||||
anything too identifying or sensitive
|
statements:
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<div id="gdpr">
|
||||||
|
<h3><a href="#gdpr">#</a> GDPR compliance</h3>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
in general, if you're a decent human being - you're good :) welcome
|
This homeserver is fully
|
||||||
to
|
<a href="https://gdpr.eu/what-is-gdpr/">GDPR</a>
|
||||||
<a href="https://ari.lt/">ari.lt</a> ! just to warn,
|
compliant. I.e.:
|
||||||
<b
|
|
||||||
>no, this homeserver is not a "freeze peach" ( 'free speech' as
|
|
||||||
in like total anarchy free speech, hate speech, etc -- seen way
|
|
||||||
too many of those ) homeserver, just be decent and fair please
|
|
||||||
<3</b
|
|
||||||
>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<i
|
<ul>
|
||||||
>psst you should check out the
|
<li>
|
||||||
<a href="https://matrix.imwiki.org/">matrix.imwiki.org</a> matrix wiki</i
|
Data is collected by your own explicit consent,
|
||||||
|
as you have to contact the owner ("me") to
|
||||||
|
create an account, having read all terms,
|
||||||
|
conditions, and statements.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Data is only collected for legitimate interest
|
||||||
|
as mentioned above (error diagnostics and data
|
||||||
|
storage).
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
No extra data is collected (no third-part
|
||||||
|
cookies, advertisements, analytics, etc.).
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Data is only processed to provide wanted
|
||||||
|
services (in this case - Matrix messaging,
|
||||||
|
attachments and avatars, etc. as defined and
|
||||||
|
implemented by
|
||||||
|
<a href="https://spec.matrix.org/latest/"
|
||||||
|
>the Matrix specification</a
|
||||||
>
|
>
|
||||||
|
and
|
||||||
|
<a href="https://github.com/matrix-org/dendrite"
|
||||||
|
>Dendrite Matrix homeserver
|
||||||
|
implementation</a
|
||||||
|
>). The data provider is
|
||||||
|
<a href="https://contabo.com/">Contabo GmbH</a>
|
||||||
|
and the server is hosted in Germany (Frankfurt),
|
||||||
|
see their privacy policy
|
||||||
|
<a href="https://contabo.com/en/legal/privacy/"
|
||||||
|
>here</a
|
||||||
|
>.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Disclosure to law enforcement - available data
|
||||||
|
will be disclosed to law enforcement agencies if
|
||||||
|
required to do so.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
You can request copies of your personal data and
|
||||||
|
request changes to the data.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="dmca">
|
||||||
|
<h3><a href="#dmca">#</a> DMCA compliance</h3>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
This homeserver is not a breeding ground for DMCA
|
||||||
|
violations, all intellectual property rights of
|
||||||
|
others is respected. If you face any violations
|
||||||
|
please use
|
||||||
|
<a href="#contacts">the listed contacts</a> to
|
||||||
|
report it. In the report the following data will be
|
||||||
|
required:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Description of copyrighted data or intellectual
|
||||||
|
property
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Description of where the material is infringing
|
||||||
|
on your copyright
|
||||||
|
</li>
|
||||||
|
<li>Contact information</li>
|
||||||
|
<li>
|
||||||
|
Proof of infringement and belief that the
|
||||||
|
infringer is not authorized to use the
|
||||||
|
intellectual property at hand
|
||||||
|
</li>
|
||||||
|
<li>Proof of your copyright</li>
|
||||||
|
<li>Your electronic or physical signature</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<i id="p-tldr"
|
||||||
|
><a href="#p-tldr">TL;DR</a>? Privacy is a focus here,
|
||||||
|
though that does not absolve the users of repercussions
|
||||||
|
of their acts.</i
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="termination">
|
||||||
|
<h2><a href="#termination">#</a> Termination</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Termination (deactivation - you won't be able to log in
|
||||||
|
or access any of your data after the act of
|
||||||
|
<i>deactivation</i>) of an account is depends a lot on
|
||||||
|
what you've been doing, the severity of what you've been
|
||||||
|
doing, how far you've went, and the warnings you've
|
||||||
|
gotten beforehand (if applicable):
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li id="law-violation">
|
||||||
|
Violation of
|
||||||
|
<a
|
||||||
|
href="https://europam.eu/?module=legislation&country=Lithuania"
|
||||||
|
>Lithuanian</a
|
||||||
|
>
|
||||||
|
and/or
|
||||||
|
<a
|
||||||
|
href="https://europam.eu/?module=legislation&country=Germany"
|
||||||
|
>German</a
|
||||||
|
>
|
||||||
|
law
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
If seen as minor: 12-hour notice before
|
||||||
|
termination
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
If seen as anything else besides minor:
|
||||||
|
instant termination
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li id="guideline-violation">
|
||||||
|
Violation of guidelines
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
Single minor violations of guidelines will
|
||||||
|
only get you a warning, with enough warnings
|
||||||
|
(say like 2 or 3), you will get a 1-day
|
||||||
|
notice to move away from this homeserver,
|
||||||
|
and your account will be terminated
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
If your violation of guidelines was medium
|
||||||
|
severity, you will get a 12-hour to 1-day
|
||||||
|
notice to move away from this homeserver,
|
||||||
|
then your account will be terminated
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
And finally, if your violation of guidelines
|
||||||
|
is seen as severe: you will get an instant
|
||||||
|
account termination with zero notice
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li id="user-reports">
|
||||||
|
Reports from users
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
If a lot of users report you (by any forms
|
||||||
|
of
|
||||||
|
<a href="#contacts">contacts listed above</a
|
||||||
|
>), showing unhappiness in your stay on the
|
||||||
|
homeserver, after a discussion along with
|
||||||
|
proof, and a talk with you: you may or may
|
||||||
|
not get terminated (of course, you will be
|
||||||
|
involved in the process, so you'll have
|
||||||
|
plenty of time to move on). At least a
|
||||||
|
warining is unavoidable.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
If the proof is severe enough and it
|
||||||
|
violates any
|
||||||
|
<a href="#guidelines">Guidelines</a>, the
|
||||||
|
termination policy for guideline violation
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li id="ban">
|
||||||
|
The administrators of the homeserver keep the right
|
||||||
|
to request a full homeserver or per-user ban off a
|
||||||
|
homeserver, room, space or any Matrix messaging unit
|
||||||
|
if they think it is in best interest of the users,
|
||||||
|
with or without notice.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<i id="t-tldr"
|
||||||
|
><a href="#t-tldr">TL;DR</a>? Follow the law and be
|
||||||
|
human. Termination is dependent on your actions and
|
||||||
|
(optionally) given prior notice(s).</i
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="guidelines">
|
||||||
|
<h2><a href="#guidelines">#</a> Guidelines</h2>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
The activity of rooms and accounts on the
|
||||||
|
<a href="https://ari.lt/">ari.lt</a> homeserver, any
|
||||||
|
events sent over, etc. must follow and adhere to the
|
||||||
|
following guidelines. if any of the following guidelines
|
||||||
|
(rules) are broken
|
||||||
|
<a id="#termination">Termination policy</a> applies.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
You must follow all
|
||||||
|
<a
|
||||||
|
href="https://europam.eu/?module=legislation&country=Lithuania"
|
||||||
|
>Lithuanian</a
|
||||||
|
>
|
||||||
|
and
|
||||||
|
<a
|
||||||
|
href="https://europam.eu/?module=legislation&country=Germany"
|
||||||
|
>German</a
|
||||||
|
>
|
||||||
|
law
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Creating an unhealthy environment for
|
||||||
|
<a href="https://ari.lt/">ari.lt</a> homeserver or
|
||||||
|
not users (hate speech, harassment, ...) is not
|
||||||
|
allowed.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Human decency is a must, such as:
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>Tolerance</li>
|
||||||
|
<li>
|
||||||
|
Non-discrimination (For example (keep in
|
||||||
|
mind their derivatives too):
|
||||||
|
<a
|
||||||
|
href="https://en.wikipedia.org/wiki/Racism"
|
||||||
|
>Racism</a
|
||||||
|
>,
|
||||||
|
<a
|
||||||
|
href="https://en.wikipedia.org/wiki/Homophobia"
|
||||||
|
>Homophobia</a
|
||||||
|
>,
|
||||||
|
<a
|
||||||
|
href="https://en.wikipedia.org/wiki/Transphobia"
|
||||||
|
>Transphobia</a
|
||||||
|
>,
|
||||||
|
<a
|
||||||
|
href="https://en.wikipedia.org/wiki/Sexism"
|
||||||
|
>Sexism</a
|
||||||
|
>,
|
||||||
|
<a
|
||||||
|
href="https://en.wikipedia.org/wiki/Xenophobia"
|
||||||
|
>Xenophobia</a
|
||||||
|
>,
|
||||||
|
<a
|
||||||
|
href="https://en.wikipedia.org/wiki/Social_stigma_of_obesity"
|
||||||
|
>Fatphobia</a
|
||||||
|
>, etc.)
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Not spreading misinformation and/or
|
||||||
|
disinformation
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Taking responsibility and accountability for
|
||||||
|
your own actions
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Not spreading
|
||||||
|
<a
|
||||||
|
href="https://www.rainn.org/news/what-child-sexual-abuse-material-csam"
|
||||||
|
>CSAM (Child Sexual Abuse Material)</a
|
||||||
|
>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a
|
||||||
|
href="https://en.wikipedia.org/wiki/Lolicon"
|
||||||
|
>Lolicon/Shoticon</a
|
||||||
|
>
|
||||||
|
also falls under this category. No
|
||||||
|
exceptions.
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>Respect for other Matrix users</li>
|
||||||
|
<li>
|
||||||
|
Other basic human decency rules, which are
|
||||||
|
common knowledge ...
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Spreading personal information without the person's
|
||||||
|
(or self) consent, sometimes also known as
|
||||||
|
<a href="https://en.wikipedia.org/wiki/Doxing"
|
||||||
|
>Doxing</a
|
||||||
|
>
|
||||||
|
and its "minor" forms.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Content that violations the intellectual property
|
||||||
|
rights of others is disallowed, this also ties in
|
||||||
|
with law.
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Sending bulk unsolicited messages to others (spam)
|
||||||
|
is disallowed.
|
||||||
|
</li>
|
||||||
|
<li>Harassing and stalking others is disallowed.</li>
|
||||||
|
<li>
|
||||||
|
Causing any other form of harm to other individuals,
|
||||||
|
jurisdictions, systems, etc. is also disallowed
|
||||||
|
(such as
|
||||||
|
<a
|
||||||
|
href="https://en.wikipedia.org/wiki/Denial-of-service_attack"
|
||||||
|
>(D)DoS attacks</a
|
||||||
|
>)
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
Other acts which are seen as abusive by the
|
||||||
|
administrators of this homeserver is also seen as a
|
||||||
|
violation of the guidelines
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<i id="g-tldr"
|
||||||
|
><a href="#g-tldr">TL;DR</a>? Be decent, follow the law,
|
||||||
|
and don't abuse what you are given.</i
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer id="license-cc0">
|
||||||
|
<p
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dct="http://purl.org/dc/terms/"
|
||||||
|
id="license"
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
property="dct:title"
|
||||||
|
rel="cc:attributionURL"
|
||||||
|
href="https://ari.lt/page/matrix"
|
||||||
|
>Ari-web Matrix homeserver (ari.lt/matrix.ari.lt)
|
||||||
|
statement document</a
|
||||||
|
>
|
||||||
|
by
|
||||||
|
<a
|
||||||
|
rel="cc:attributionURL dct:creator"
|
||||||
|
property="cc:attributionName"
|
||||||
|
href="https://ari.lt/"
|
||||||
|
>Ari Archer</a
|
||||||
|
>
|
||||||
|
is marked with
|
||||||
|
<a
|
||||||
|
href="http://creativecommons.org/publicdomain/zero/1.0?ref=chooser-v1"
|
||||||
|
target="_blank"
|
||||||
|
rel="license noopener noreferrer"
|
||||||
|
style="display: inline-block"
|
||||||
|
>
|
||||||
|
CC0 1.0 Universal
|
||||||
|
<img
|
||||||
|
style="
|
||||||
|
height: 22px !important;
|
||||||
|
margin-left: 3px;
|
||||||
|
vertical-align: text-bottom;
|
||||||
|
"
|
||||||
|
src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1"
|
||||||
|
/>
|
||||||
|
<img
|
||||||
|
style="
|
||||||
|
height: 22px !important;
|
||||||
|
margin-left: 3px;
|
||||||
|
vertical-align: text-bottom;
|
||||||
|
"
|
||||||
|
src="https://mirrors.creativecommons.org/presskit/icons/zero.svg?ref=chooser-v1"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</p>
|
||||||
|
<a href="https://ari.lt/">
|
||||||
|
<img
|
||||||
|
src="https://ari.lt/badge.png"
|
||||||
|
loading="lazy"
|
||||||
|
alt="ari-web badge"
|
||||||
|
height="31px"
|
||||||
|
width="88px"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</footer>
|
||||||
|
</article>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -4,6 +4,10 @@
|
||||||
<loc>https://ari.lt/</loc>
|
<loc>https://ari.lt/</loc>
|
||||||
<priority>1.0</priority>
|
<priority>1.0</priority>
|
||||||
</url>
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://ari.lt/matrix</loc>
|
||||||
|
<priority>0.9</priority>
|
||||||
|
</url>
|
||||||
<url>
|
<url>
|
||||||
<loc>https://ari.lt/btc</loc>
|
<loc>https://ari.lt/btc</loc>
|
||||||
<priority>0.9</priority>
|
<priority>0.9</priority>
|
||||||
|
|
Loading…
Add table
Reference in a new issue