{% extends "helpdesk/base.html" %}{% load i18n %} {% block helpdesk_title %}{% trans "Ignored E-Mail Addresses" %}{% endblock %} {% block helpdesk_body %}{% blocktrans %}
The following e-mail addresses are currently being ignored by the incoming e-mail processor. You can add a new e-mail address to the list or delete any of the items below as required.
{% endblocktrans %}{% trans "Ignored E-Mail Addresses" %} | |||||
{% trans "Name" %} | {% trans "E-Mail Address" %} | {% trans "Date Added" %} | {% trans "Queues" %} | {% trans "Keep in mailbox?" %} | {% trans "Delete" %} |
---|---|---|---|---|---|
{{ ignore.name }} | {{ ignore.email_address }} | {{ ignore.date }} | {% for queue in ignore.queues.all %}{{ queue.slug }}{% if not forloop.last %}, {% endif %}{% endfor %}{% if not ignore.queues.all %}{% trans "All" %}{% endif %} | {% if ignore.keep_in_mailbox %}{% trans "Keep" %}{% endif %} | {% trans "Delete" %} |
{% trans "Note: If the 'Keep' option is not selected, emails sent from that address will be deleted permanently." %}
{% endblock %}