{% extends "base.html" %} {% block title %}DKIM Keys - Email Server{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

DKIM Key Management

{% for item in dkim_data %}
Edit
{% if item.dkim_key.is_active %} {% else %} {% endif %}
DKIM DNS Record Active (DNS not checked)
Name:
{{ item.dns_record.name }}
Type: TXT
Value:
{{ item.dns_record.value }}
SPF DNS Record Not checked
Name:
{{ item.domain.domain_name }}
Type: TXT
{% if item.existing_spf %}
Current SPF:
{{ item.existing_spf }}
{% endif %}
Recommended SPF:
{{ item.recommended_spf }}
Key Information
Selector:
{{ item.dkim_key.selector }}
Created:
{{ item.dkim_key.created_at.strftime('%Y-%m-%d %H:%M') }}
Server IP:
{{ item.public_ip }}
Status:
{% if item.dkim_key.is_active %} Active {% else %} Inactive {% endif %}
{% endfor %} {% if old_dkim_data %}

Old DKIM Keys {{ old_dkim_data|length }}

These keys have been replaced or disabled. They are kept for reference and can be permanently removed.

{% for item in old_dkim_data %}
{{ item.domain.domain_name }} {{ item.status_text }}
Selector: {{ item.dkim_key.selector }} | Created: {{ item.dkim_key.created_at.strftime('%Y-%m-%d %H:%M') }} {% if item.dkim_key.replaced_at %} | Replaced: {{ item.dkim_key.replaced_at.strftime('%Y-%m-%d %H:%M') }} {% endif %}
{% endfor %}
{% endif %} {% if not dkim_data %}

No DKIM Keys Found

Add domains first to automatically generate DKIM keys

Add Domain
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}