{% extends 'dashboard/domain_detail/base.html' %} {% set domain_detail_page = "info" %} {% block title %} {{ custom_domain.domain }} Info {% endblock %} {% block domain_detail_content %}

{{ custom_domain.domain }}

Created {{ custom_domain.created_at | dt }}. {{ nb_alias }} aliases

Auto create/on the fly alias

Simply use anything@{{ custom_domain.domain }} next time you need an alias: it'll be automatically created the first time it receives an email. To have more fine-grained control, you can also define auto create rules .
Auto-created aliases are automatically owned by the following mailboxes .
{% set domain_mailboxes=custom_domain.mailboxes %}

Default Display Name

Default display name for aliases created with {{ custom_domain.domain }} unless overwritten by the alias display name.
{% if custom_domain.name %} {% endif %}

Random Prefix Generation

Add a random prefix for this domain when creating a new alias.

{% if custom_domain.is_sl_subdomain %} Delete Subdomain {% else %} Delete Domain {% endif %}

This operation is irreversible. All aliases associated with this domain will be deleted. {% if custom_domain.is_sl_subdomain %}
After deletion, your subdomain quota will be {{ current_user.subdomain_quota - 1 }}. {% endif %}
Delete domain
{% endblock %} {% block script %} {% endblock %}