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

DKIM Key Management

{% for item in dkim_data %}
DKIM DNS Record 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 not dkim_data %}

No DKIM Keys Found

Add domains first to automatically generate DKIM keys

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