fix in thread id parsing
This commit is contained in:
parent
ff17db6fe4
commit
61b4803bcb
1 changed files with 1 additions and 1 deletions
|
|
@ -91,7 +91,7 @@ class IncomingMail:
|
|||
import re
|
||||
subject = self.mail.get('Subject', '')
|
||||
|
||||
return re.findall('(?<=\[)[\w/]+', subject)
|
||||
return re.findall('(?<=\[)[\w/-]+', subject)
|
||||
|
||||
|
||||
def process_part(self, part):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue