diff options
author | Dan Winship <danw@src.gnome.org> | 2001-07-25 23:23:43 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-07-25 23:23:43 +0800 |
commit | f1e3f2f0e433a03b0232855b444de90408784b62 (patch) | |
tree | e071390cec3a3bc8610349d7ce5d24a91c54bbb0 /camel | |
parent | 70189842d2ef05f8ac2dbc6e500b6f29328b4630 (diff) | |
download | gsoc2013-evolution-f1e3f2f0e433a03b0232855b444de90408784b62.tar gsoc2013-evolution-f1e3f2f0e433a03b0232855b444de90408784b62.tar.gz gsoc2013-evolution-f1e3f2f0e433a03b0232855b444de90408784b62.tar.bz2 gsoc2013-evolution-f1e3f2f0e433a03b0232855b444de90408784b62.tar.lz gsoc2013-evolution-f1e3f2f0e433a03b0232855b444de90408784b62.tar.xz gsoc2013-evolution-f1e3f2f0e433a03b0232855b444de90408784b62.tar.zst gsoc2013-evolution-f1e3f2f0e433a03b0232855b444de90408784b62.zip |
Add another Sender pattern.
* camel-mime-utils.c (mail_mlist_magic): Add another Sender
pattern.
svn path=/trunk/; revision=11399
Diffstat (limited to 'camel')
-rw-r--r-- | camel/ChangeLog | 5 | ||||
-rw-r--r-- | camel/camel-mime-utils.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 211f714473..8c01bb243c 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,8 @@ +2001-07-25 Dan Winship <danw@ximian.com> + + * camel-mime-utils.c (mail_mlist_magic): Add another Sender + pattern. + 2001-07-24 Not Zed <NotZed@Ximian.com> * providers/imap/camel-imap-folder.c (camel_imap_folder_changed): diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 424234d600..13b8253926 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -3531,6 +3531,7 @@ static struct { char *pattern; } mail_list_magic[] = { { "Sender", " *owner-([^@]+)" }, + { "Sender", " *([^@]+)-owner" }, { "Return-Path", " *owner-([^@]+)" }, { "X-BeenThere", " *([^@]+)" }, { "Delivered-To", " *mailing list ([^@]+)" }, |