diff options
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/camel-mime-utils.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 7cae3a87c7..79b420dfad 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2001-10-23 Dan Winship <danw@ximian.com> + + * camel-mime-utils.c (mail_list_magic): Remove an extra * in one + of the regexps that glibc apparently doesn't mind but bsd does. + 2001-10-23 <NotZed@Ximian.com> * providers/local/camel-mbox-summary.c: made d(x) x recompile again. diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 5598afe62d..706a1ff9c0 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -3653,7 +3653,7 @@ static struct { /* X-Mailing-List: gnome-hackers@gnome.org */ /* X-Mailing-List: gnome-hackers */ /* X-Mailing-List: <gnome-hackers> */ - { "X-Mailing-List", " <?*([^@>]+)@?([^ \n\t\r>]*)" }, + { "X-Mailing-List", " <?([^@>]+)@?([^ \n\t\r>]*)" }, /* X-Loop: gnome-hackers@gnome.org */ { "X-Loop", " *([^@]+)@?([^ \n\t\r>]*)" }, /* List-Id: GNOME stuff <gnome-hackers.gnome.org> */ |