forked from extern/django-helpdesk
Fixe for Email Issue while pulling CC and ValueError for public homepage
This commit is contained in:
@ -412,7 +412,7 @@ def ticket_from_message(message, queue, logger):
|
||||
for ccemail in new_cc:
|
||||
tcc = TicketCC.objects.create(
|
||||
ticket=t,
|
||||
email=ccemail,
|
||||
email=ccemail.replace('\n', ' ').replace('\r', ' '),
|
||||
can_view=True,
|
||||
can_update=False
|
||||
)
|
||||
|
Reference in New Issue
Block a user