fix in thread id parsing

This commit is contained in:
Anand Doshi 2012-04-23 13:40:52 +05:30
parent ff17db6fe4
commit 61b4803bcb

View file

@ -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):