2006-05-15 [colin] 2.2.0cvs18
authorColin Leroy <colin@colino.net>
Mon, 15 May 2006 17:53:23 +0000 (17:53 +0000)
committerColin Leroy <colin@colino.net>
Mon, 15 May 2006 17:53:23 +0000 (17:53 +0000)
* src/procmsg.c
Fix automatic rule creation with List-Post

ChangeLog
PATCHSETS
configure.ac
src/procmsg.c

index 834acf2a72748f9411d62ead743618e04dfa6083..52f0e7c98e3f0396a0daa50f467559253d98f66b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-05-15 [colin]     2.2.0cvs18
+
+       * src/procmsg.c
+               Fix automatic rule creation with List-Post
+
 2006-05-15 [paul]      2.2.0cvs17
 
        * tools/filter_conv_new.pl
index fb31288274a1206f945a86519a11b0162e15b933..03a3bfb27306a1b826892ecee6ad02f47cab2ab7 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.115.2.84 -r 1.115.2.85 src/main.c;  ) > 2.2.0cvs15.patchset
 ( cvs diff -u -r 1.115.2.85 -r 1.115.2.86 src/main.c;  ) > 2.2.0cvs16.patchset
 ( cvs diff -u -r 1.1.2.2 -r 1.1.2.3 tools/filter_conv_new.pl;  ) > 2.2.0cvs17.patchset
+( cvs diff -u -r 1.150.2.62 -r 1.150.2.63 src/procmsg.c;  ) > 2.2.0cvs18.patchset
index 678a966a8557249c655f7743806e812789020c92..3ffbf068a675dc9f7ada3745256c65153f805f36 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=2
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=17
+EXTRA_VERSION=18
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index d45c9ade0d427cdfe9d393910aa982f0b0c74266..40d247a16cdf715f5e5ec55159170f6c2372e254 100644 (file)
@@ -633,7 +633,7 @@ void procmsg_get_filter_keyword(MsgInfo *msginfo, gchar **header, gchar **key,
                } else if (hentry[H_SENDER].body != NULL) {
                        SET_FILTER_KEY("header \"Sender\"", H_SENDER);
                } else if (hentry[H_LIST_POST].body != NULL) {
-                       SET_FILTER_KEY("header \"Sender\"", H_LIST_POST);
+                       SET_FILTER_KEY("header \"List-Post\"", H_LIST_POST);
                } else if (msginfo->to) {
                        *header = g_strdup("to");
                        *key = g_strdup(msginfo->to);