{% extends "app.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load i18n %} {% load static %} {% block page_js %} {% endblock %} {% block status %} {{ block.super }}

{% trans "Status" %}

{% blocktrans trimmed %} The Matrix server domain is set to {{ domain_name }}. User IDs will look like @username:{{ domain_name }}. Changing the domain name requires uninstalling and reinstalling the app which will wipe app's data. {% endblocktrans %}

{% blocktrans trimmed %} New users can be registered from any client if public registration is enabled. {% endblocktrans %}

{% if config.public_registration and config.registration_verification == 'token' and registration_tokens %}

{% blocktrans trimmed %} New users must use one of the following tokens for verification during account registration: {% endblocktrans %}

{% for token in registration_tokens %} {% endfor %}
{% trans "Registration Token" %} {% trans "Uses Allowed" %} {% trans "Pending Registrations" %} {% trans "Completed Registrations" %} {% trans "Expiry Time" %}
{{ token.token }} {% if token.uses_allowed is None %} {% trans "Unlimited" %} {% else %} {{ token.uses_allowed }} {% endif %} {{ token.pending }} {{ token.completed }} {% if token.expiry_time %} {{ token.expiry_time|date:"DATETIME_FORMAT" }} {% else %} {% trans "None" %} {% endif %}
{% endif %}

{% trans "Federation" %}

{% blocktrans trimmed with tester_url="https://federationtester.matrix.org/" %} Matrix Synapse is configured to work with other Matrix servers on the internet. This allows {{ box_name }} users to participate in rooms that are hosted elsewhere and Matrix users on other servers to participate in rooms hosted here. If you face problems with federation, try the federation tester tool. {% endblocktrans %}

{% if certificate_status != "valid" %} {% endif %} {% endblock %}