mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
- Audit: finalize MainCfDiagnosis API - Doc: document Diagnosis models - Doc: remove hacky imports and replace them with autodoc mock imports - Views: add `email_` prefix to email server templates - Apache: delete unnecessary directives (robots tag, cookie header etc.)
28 lines
657 B
HTML
28 lines
657 B
HTML
{# SPDX-License-Identifier: AGPL-3.0-or-later #}
|
|
{% extends "email_form_base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
{{ block.super }}
|
|
|
|
<form action="{{ request.path }}" method="post">
|
|
{% csrf_token %}
|
|
<fieldset>
|
|
<legend>{% trans "Postfix TLS" %}</legend>
|
|
{% include "tls_form.html" with prefix="postfix" proto="smtp" %}
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
<legend>{% trans "Dovecot TLS" %}</legend>
|
|
{% include "tls_form.html" with prefix="dovecot" proto="imap" %}
|
|
</fieldset>
|
|
|
|
<input class="btn btn-primary" type="submit"
|
|
name="btn_update" value="{% trans 'Update' %}">
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|