Cleanup news post queue even after some messages are refused
This commit is contained in:
parent
5055afc9d3
commit
250ae75a87
@ -6,6 +6,10 @@ v0.71.6 02-Sep-2005
|
|||||||
mbcico:
|
mbcico:
|
||||||
Changed compression state logic.
|
Changed compression state logic.
|
||||||
|
|
||||||
|
mbfido:
|
||||||
|
If some newsarticles are not accepted for post, don't treat
|
||||||
|
this as fatal and clear the sendqueue.
|
||||||
|
|
||||||
|
|
||||||
v0.71.5 18-Aug-2005 - 02-Sep-2005
|
v0.71.5 18-Aug-2005 - 02-Sep-2005
|
||||||
|
|
||||||
|
4
TODO
4
TODO
@ -92,10 +92,6 @@ mbfido:
|
|||||||
|
|
||||||
N: Someday make retoss from bad possible (volonteers?).
|
N: Someday make retoss from bad possible (volonteers?).
|
||||||
|
|
||||||
N: When posting news better check which articles are posted ok, and
|
|
||||||
what are fatal errors from the newsserver to prevent repost of good
|
|
||||||
posts.
|
|
||||||
|
|
||||||
mbcico:
|
mbcico:
|
||||||
L: Implement binkp option ND.
|
L: Implement binkp option ND.
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ extern int news_bad;
|
|||||||
|
|
||||||
int newspost(void)
|
int newspost(void)
|
||||||
{
|
{
|
||||||
int start = TRUE;
|
int start = TRUE, fatal = FALSE;
|
||||||
char *buf, *p;
|
char *buf, *p;
|
||||||
long curpos, count, seqnr;
|
long curpos, count, seqnr;
|
||||||
FILE *ofp = NULL, *nb;
|
FILE *ofp = NULL, *nb;
|
||||||
@ -219,9 +219,11 @@ int newspost(void)
|
|||||||
unlink(buf);
|
unlink(buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! news_bad) {
|
snprintf(buf, 10240, "%s/tmp/newsout", getenv("MBSE_ROOT"));
|
||||||
snprintf(buf, 10240, "%s/tmp/newsout", getenv("MBSE_ROOT"));
|
if (! fatal) {
|
||||||
unlink(buf);
|
unlink(buf);
|
||||||
|
} else {
|
||||||
|
Syslog('+', "Fatal errors posting news, %s not removed", buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
free(buf);
|
free(buf);
|
||||||
|
Reference in New Issue
Block a user