{% extends "base.html" %}
{% block title %}
{% trans %}Client setup{% endtrans %}
{% endblock %}
{% block subtitle %}
configure your email client
{% endblock %}
{% block content %}
{% call macros.box(title="Incoming mail") %}
| {% trans %}Mail protocol{% endtrans %} |
IMAP |
| {% trans %}TCP port{% endtrans %} |
{{ "143" if config["TLS_FLAVOR"] == "notls" else "993 (TLS) or 143 (STARTTLS)" }} |
| {% trans %}Server name{% endtrans %} |
{{ config["HOSTNAMES"].split(',')[0] }} |
| {% trans %}Username{% endtrans %} |
{{ current_user if current_user.is_authenticated else "******" }} |
| {% trans %}Password{% endtrans %} |
******* |
{% endcall %}
{% call macros.box(title="Outgoing mail") %}
| {% trans %}Mail protocol{% endtrans %} |
SMTP |
| {% trans %}TCP port{% endtrans %} |
{{ "25" if config["TLS_FLAVOR"] == "notls" else "465 (TLS) or 587 (STARTTLS)" }} |
| {% trans %}Server name{% endtrans %} |
{{ config["HOSTNAMES"].split(',')[0] }} |
| {% trans %}Username{% endtrans %} |
{{ current_user or "******" }} |
| {% trans %}Password{% endtrans %} |
******* |
{% endcall %}
{% endblock %}