{%- extends "base.html" %} {%- block title %} {% trans %}Client setup{% endtrans %} {%- endblock %} {%- block subtitle %} {% trans %}configure your email client{% endtrans %} {%- endblock %} {%- block content %}
If you use an Apple device, click here to autoconfigure it.
{%- call macros.table(title=_("Incoming mail"), datatable=False) %} {% trans %}Mail protocol{% endtrans %} IMAP {% trans %}TCP port{% endtrans %} {{ "143" if config["TLS_FLAVOR"] == "notls" else "993 (TLS)" }} {% trans %}Server name{% endtrans %}
{{ config["HOSTNAMES"] }}
{% trans %}Username{% endtrans %}
{{ current_user if current_user.is_authenticated else "******" }}
{% trans %}Password{% endtrans %}
*******
{%- endcall %} {%- call macros.table(title=_("Outgoing mail"), datatable=False) %} {% trans %}Mail protocol{% endtrans %} SMTP {% trans %}TCP port{% endtrans %} {{ "25" if config["TLS_FLAVOR"] == "notls" else "465 (TLS)" }} {% trans %}Server name{% endtrans %}
{{ config["HOSTNAMES"] }}
{% trans %}Username{% endtrans %}
{{ current_user if current_user.is_authenticated else "******" }}
{% trans %}Password{% endtrans %}
*******
{%- endcall %} {%- endblock %}