fliu 2f77d99899
email: Code cleanup, address reviews
- View: security.html -> email_security.html
- Setup: will not install Redis
- Setup: put clamav packages on hold
- Crash recovery: opening firewall ports becomes the last post action
- Crash recovery: group postconf.set_many into small transactions
- Crash recovery: safer postconf.set_master_cf_options
2021-08-17 19:44:05 -07:00

28 lines
651 B
HTML

{# SPDX-License-Identifier: AGPL-3.0-or-later #}
{% extends "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 %}