forked from extern/django-helpdesk
Merge pull request #166 from mpietsch/master
Changed regex for email subjects to use queue slug to tell internal ticket id from external ones.
This commit is contained in:
commit
d7a769fa1d
@ -172,7 +172,7 @@ def ticket_from_message(message, queue, quiet):
|
|||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
matchobj = re.match(r"^\[(?P<queue>[-A-Za-z0-9]+)-(?P<id>\d+)\]", subject)
|
matchobj = re.match(r".*\["+queue.slug+"-(?P<id>\d+)\]", subject)
|
||||||
if matchobj:
|
if matchobj:
|
||||||
# This is a reply or forward.
|
# This is a reply or forward.
|
||||||
ticket = matchobj.group('id')
|
ticket = matchobj.group('id')
|
||||||
|
Loading…
Reference in New Issue
Block a user