{% extends "base.html" %} {% block title %}Domains - Email Server Management{% endblock %} {% block page_title %}Domain Management{% endblock %} {% block content %}

Domains

Add Domain
All Domains
{% if domains %}
{% for domain in domains %} {% endfor %}
Domain Name Status Created Users DKIM Actions
{{ domain.domain_name }}
{% if domain.is_active %} Active {% else %} Inactive {% endif %} {{ domain.created_at.strftime('%Y-%m-%d %H:%M') }} {{ domain.users|length if domain.users else 0 }} users {% set has_dkim = domain.dkim_keys and domain.dkim_keys|selectattr('is_active')|list %} {% if has_dkim %} {% else %} {% endif %}
{% if domain.is_active %} {% else %} {% endif %}
{% else %}

No domains configured

Get started by adding your first domain

Add Your First Domain
{% endif %}
{% if domains %}
Domain Information
  • Active domains: {{ domains|selectattr('is_active')|list|length }}
  • DKIM configured: {{ domains|selectattr('dkim_keys')|list|length }}
  • Total users: {{ domains|sum(attribute='users')|length if domains[0].users is defined else 'N/A' }}
Quick Tips
  • DKIM keys are automatically generated for new domains
  • Configure DNS records after adding domains
  • Add users or whitelist IPs for authentication
{% endif %} {% endblock %}