From: Ralf Baechle Date: Wed, 22 Sep 2010 15:17:30 +0000 (+0100) Subject: parser: Recognize X-list list header X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=7a64470f5aaae267187d9f85ff11f65022777959;p=patchwork parser: Recognize X-list list header Ecartis inserts X-list list headers. Signed-off-by: Jeremy Kerr --- diff --git a/apps/patchwork/bin/parsemail.py b/apps/patchwork/bin/parsemail.py index 68bd94c..a85f42d 100755 --- a/apps/patchwork/bin/parsemail.py +++ b/apps/patchwork/bin/parsemail.py @@ -36,7 +36,7 @@ except ImportError: from patchwork.parser import parse_patch from patchwork.models import Patch, Project, Person, Comment -list_id_headers = ['List-ID', 'X-Mailing-List'] +list_id_headers = ['List-ID', 'X-Mailing-List', 'X-list'] whitespace_re = re.compile('\s+') def normalise_space(str):