{{ custom_domain.domain }} deleted alias (aka Trash)
How to use
On this page you can view all aliases that have been deleted and belong to the domain
{{ custom_domain.domain }}.
When an alias is in the trash, it cannot be re-created, either via the alias creation page or on-the-fly with the
domain catch-all option.
{% if domain_deleted_aliases | length > 0 %}
{% else %}
There's no deleted alias recorded for this domain.
{% endif %}
{% for deleted_alias in domain_deleted_aliases %}
{{ deleted_alias.email }} -
deleted {{ deleted_alias.created_at | dt }}
{% endfor %}
{% endblock %}