+2001-11-07 [alfons] 0.6.5.claws3
+
+ * src/utils.c
+ * src/procmsg.c
+ do what I mean and correct threading by subject so it really
+ ignores attracting lines without "Re: "
+
2001-11-07 [alfons] 0.6.5.claws2
* src/procmsg.c
g_hash_table_foreach(mark_table, mark_sum_func, &marksum);
g_hash_table_destroy(mark_table);
}
+ debug_print("mark->new = %d, mark->unread = %d, mark->total = %d\n",
+ *(marksum.new), *(marksum.unread), *(marksum.total));
}
static GHashTable *procmsg_read_mark_file(const gchar *folder)
if (msginfo->inreplyto)
parent = g_hash_table_lookup(msgid_table, msginfo->inreplyto);
- if (parent == NULL && !subject_is_reply(msginfo->subject))
+ if (parent == NULL && subject_is_reply(msginfo->subject))
parent = subject_table_lookup(subject_table, msginfo->subject);
if (parent && parent != node) {
* advanced Re: detection like "Re[4]", "ANTW:" or
* Re: Re: Re: Re: Re: Re: Re: Re:" stuff. */
if (subject == NULL) return FALSE;
- else return 0 == g_strcasecmp(subject, "Re: ");
+ else return 0 == g_strncasecmp(subject, "Re: ", 4);
}