diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-06-30 02:24:30 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-06-30 02:24:30 +0800 |
commit | e64a02be08f27b9a403de2bdf147626b8c8f2523 (patch) | |
tree | 75102b9d6c342e614e49f3de15d15c30a04c7000 | |
parent | f57c6219924045efc8a6f9f3107d5369a2de7a66 (diff) | |
download | gsoc2013-evolution-e64a02be08f27b9a403de2bdf147626b8c8f2523.tar gsoc2013-evolution-e64a02be08f27b9a403de2bdf147626b8c8f2523.tar.gz gsoc2013-evolution-e64a02be08f27b9a403de2bdf147626b8c8f2523.tar.bz2 gsoc2013-evolution-e64a02be08f27b9a403de2bdf147626b8c8f2523.tar.lz gsoc2013-evolution-e64a02be08f27b9a403de2bdf147626b8c8f2523.tar.xz gsoc2013-evolution-e64a02be08f27b9a403de2bdf147626b8c8f2523.tar.zst gsoc2013-evolution-e64a02be08f27b9a403de2bdf147626b8c8f2523.zip |
Added Originator: header as a header to look for when looking for the
2001-06-29 Jeffrey Stedfast <fejj@ximian.com>
* camel-mime-utils.c: Added Originator: header as a header to look
for when looking for the mailing list.
svn path=/trunk/; revision=10603
-rw-r--r-- | camel/ChangeLog | 3 | ||||
-rw-r--r-- | camel/camel-mime-utils.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index 61a7327904..c150ac3729 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,8 @@ 2001-06-29 Jeffrey Stedfast <fejj@ximian.com> + * camel-mime-utils.c: Added Originator: header as a header to look + for when looking for the mailing list. + * tests/mime-filter/Makefile.am: Build the test-crlf test program. * tests/mime-filter/test-crlf.c: New test suite for the crlf diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 91f89b5947..70b0a3f60a 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -3489,6 +3489,7 @@ static struct { { "X-Loop", " *([^@]+)" }, { "List-Id", " *([^<]+)" }, { "Mailing-List", " *list ([^@]+)" }, + { "Originator", " *([^@]+)" }, }; char * |