diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-12 23:22:31 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-09-12 23:22:31 +0800 |
commit | 5994bc5006075c88b81f378ed858fdc7ac00f8bc (patch) | |
tree | e24789c067c2f5d168cd041385a4d990aee69686 /mail/mail-mlist-magic.c | |
parent | 497e2144ace593643f64eb4dfd48f691d205521b (diff) | |
download | gsoc2013-evolution-5994bc5006075c88b81f378ed858fdc7ac00f8bc.tar.gz gsoc2013-evolution-5994bc5006075c88b81f378ed858fdc7ac00f8bc.tar.zst gsoc2013-evolution-5994bc5006075c88b81f378ed858fdc7ac00f8bc.zip |
For additional coolness, display the name of the mailing list in the
right-click menu. Also, make the action box appear in the filter
dialog and fix a stupid cut & paste bug that prevented the code from
checking for the right headers.
svn path=/trunk/; revision=5365
Diffstat (limited to 'mail/mail-mlist-magic.c')
-rw-r--r-- | mail/mail-mlist-magic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-mlist-magic.c b/mail/mail-mlist-magic.c index 10104db4d0..d02638572e 100644 --- a/mail/mail-mlist-magic.c +++ b/mail/mail-mlist-magic.c @@ -81,7 +81,7 @@ get_header (CamelMimeMessage *message, { const char *value; - value = camel_medium_get_header (CAMEL_MEDIUM (message), "Sender"); + value = camel_medium_get_header (CAMEL_MEDIUM (message), header_name); if (value == NULL) return NULL; |