From: Art Cancro Date: Tue, 13 May 2014 02:15:43 +0000 (-0400) Subject: We have a read-only, reader-only NNTP service finished. Preparing the code for merge... X-Git-Tag: v9.01~122^2~2 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=450dba1201c2bc9150885a9883962effccd0e957;hp=458432bb2cc89c16b94cf49120d92388b8e005a1;p=citadel.git We have a read-only, reader-only NNTP service finished. Preparing the code for merge into master. --- diff --git a/citadel/modules/nntp/serv_nntp.c b/citadel/modules/nntp/serv_nntp.c index a7f2aecb7..2a20fd4ce 100644 --- a/citadel/modules/nntp/serv_nntp.c +++ b/citadel/modules/nntp/serv_nntp.c @@ -686,7 +686,8 @@ void nntp_mode(const char *cmd) { extract_token(which_mode, cmd, 1, ' ', sizeof which_mode); if (!strcasecmp(which_mode, "reader")) { - cprintf("201 Reader mode FIXME implement posting and change to 200\r\n"); + // FIXME implement posting and change to 200 + cprintf("201 Reader mode activated\r\n"); } else { cprintf("501 unknown mode\r\n"); @@ -770,7 +771,7 @@ void nntp_article(const char *cmd) { // We don't know how to do that yet. else if ( (lb != NULL) && (rb != NULL) && (lb < rb) ) { must_change_currently_selected_article = 0; - cprintf("500 FIXME I don't know how to fetch by message-id yet.\r\n"); + cprintf("500 I don't know how to fetch by message-id yet.\r\n"); // FIXME return; }