mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-25 01:13:31 +01:00
572ffd5acf
Support the flag on IgnoreEmail model to control deleting the email if ignored.
13 lines
376 B
Python
13 lines
376 B
Python
class IgnoreTicketException(Exception):
|
|
"""
|
|
Raised when an email message is received from a sender who is marked to be ignored
|
|
"""
|
|
pass
|
|
|
|
|
|
class DeleteIgnoredTicketException(Exception):
|
|
"""
|
|
Raised when an email message is received from a sender who is marked to be ignored
|
|
and the record is tagged to delete the email from the inbox
|
|
"""
|
|
pass |