From: Art Cancro Date: Fri, 7 Feb 2014 00:04:22 +0000 (-0500) Subject: LIST returns 215, not 231 X-Git-Tag: v9.01~122^2~32 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=000ac53450a0f5988d0ae870229331156a2ea2d6 LIST returns 215, not 231 --- diff --git a/citadel/modules/nntp/serv_nntp.c b/citadel/modules/nntp/serv_nntp.c index 863685960..d60abd15f 100644 --- a/citadel/modules/nntp/serv_nntp.c +++ b/citadel/modules/nntp/serv_nntp.c @@ -535,7 +535,7 @@ void nntp_list(const char *cmd) { return; } - cprintf("231 list of newsgroups follows\r\n"); + cprintf("215 list of newsgroups follows\r\n"); CtdlGetUser(&CC->user, CC->curr_user); CtdlForEachRoom(nntp_list_backend, &nld); cprintf(".\r\n");