+2003-08-15 [christoph] 0.9.4claws23
+
+ * src/news.c
+ o check number of messages and don't return a 0 message
+ when no messages are available
+ o don't parse xref header anymore
+
+ (closes Bug 203 I'm not getting any news)
+
2003-08-15 [paul] 0.9.4claws22
* src/common/defs.h
PARSE_ONE_PARAM(ref, msgid);
PARSE_ONE_PARAM(size, ref);
PARSE_ONE_PARAM(line, size);
- PARSE_ONE_PARAM(xref, line);
+ /*
+ * PARSE_ONE_PARAM(xref, line);
+ *
+ * if we parse extra headers we should first examine the
+ * LIST OVERVIEW.FMT response from the server. See
+ * RFC2980 for details
+ */
tmp = strchr(xref, '\t');
if (!tmp) tmp = strchr(line, '\r');
return -1;
}
+ if (num <= 0) {
+ remove_all_numbered_files(dir);
+ return 0;
+ }
+
if(last < first) {
log_warning(_("invalid article range: %d - %d\n"),
first, last);