{% extends "helpdesk/base.html" %}{% load i18n %} {% block helpdesk_title %}{% trans "Ignored E-Mail Addresses" %}{% endblock %} {% block helpdesk_body %}{% blocktrans %}

Ignored E-Mail Addresses

The following e-mail addresses are currently being ignored by the incoming e-mail processor. You can add a new item or delete any of the items below as required.

{% endblocktrans %}
{% trans "Ignored E-Mail Addresses" %}
{% for ignore in ignore_list %} {% endfor %}
{% 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 %}{% empty %}{% trans "All" %}{% endfor %} {% if ignore.keep_in_mailbox %}{% trans "Keep" %}{% endif %}

{% trans "Note: If the 'Keep' option is not selected, emails sent from that address will be deleted permanently." %}

{% endblock %}