From fcc41958450dc8bd450284ebb3f899e552b4c562 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Wed, 20 Jun 2001 19:46:58 +0000 Subject: If the first char of the mailing-list name is '<', chop it off to make 2001-06-20 Jeffrey Stedfast * camel-mime-utils.c (header_raw_check_mailing_list): If the first char of the mailing-list name is '<', chop it off to make Ettore happy. Fixes bug #2153. svn path=/trunk/; revision=10347 --- camel/camel-mime-utils.c | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'camel/camel-mime-utils.c') diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index bba18017d9..d787559710 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -3421,13 +3421,20 @@ header_raw_check_mailing_list(struct _header_raw **list) continue; } - - v = header_raw_find(list, mail_list_magic[i].name, NULL); - if (v != NULL && regexec(&pattern, v, 2, match, 0) == 0 && match[1].rm_so != -1) { - regfree(&pattern); - return g_strndup(v+match[1].rm_so, match[1].rm_eo-match[1].rm_so); + + v = header_raw_find (list, mail_list_magic[i].name, NULL); + if (v != NULL && regexec (&pattern, v, 2, match, 0) == 0 && match[1].rm_so != -1) { + const char *mlist, *mlend; + + regfree (&pattern); + mlist = v + match[1].rm_so; + mlend = v + match[1].rm_eo; + if (*mlist == '<') + mlist++; + + return g_strndup (mlist, mlend - mlist); } - regfree(&pattern); + regfree (&pattern); } return NULL; -- cgit