{% extends "base.html" %} {% block title %}Edit DKIM Selector{% endblock %} {% block content %}

Edit DKIM Selector

Back to DKIM Keys
Please provide a valid selector (letters, numbers, hyphens, and underscores only).
The selector is used in DNS records to identify this DKIM key (e.g., "selector._domainkey.{{ domain.domain_name }}")
Current Information

Domain: {{ domain.domain_name }}

Current Selector: {{ dkim_key.selector }}

Status: {% if dkim_key.is_active %} Active {% else %} Inactive {% endif %}

Created: {{ dkim_key.created_at.strftime('%Y-%m-%d %H:%M:%S') }}

Important Note

Changing the selector will require updating your DNS records. Make sure to update the DNS record name from {{ dkim_key.selector }}._domainkey.{{ domain.domain_name }} to match the new selector name.

Cancel
DNS Record Information
Current DNS Record

Name: {{ dkim_key.selector }}._domainkey.{{ domain.domain_name }}

Type: TXT

Tip: After changing the selector, you'll need to update your DNS provider to use the new record name. The DNS record value will remain the same.

{% endblock %}