{% extends "base.html" %} {% block title %}Edit Domain{% endblock %} {% block navbar %} {% include 'sidebar_email.html' %} {% endblock %} {% block content %}

Edit Domain

Back to Domains
Please provide a valid domain name.
Enter a fully qualified domain name (e.g., example.com)
Current Status

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

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

{% if domain.updated_at %}

Last Updated: {{ domain.updated_at.strftime('%Y-%m-%d %H:%M:%S') }}

{% endif %}
Note

Changing the domain name will affect all associated users, IP addresses, and DKIM keys. Make sure to update your DNS records accordingly.

Cancel
Associated Records
{{ domain.users|length }}
Users
{{ domain.authorized_ips|length }}
IP Addresses
{{ domain.dkim_keys|length }}
DKIM Keys
{% endblock %}