From dfbffd165c0acd70375e1dee0c5ac79c911ed694 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sun, 27 Apr 2014 15:11:50 -0400 Subject: [PATCH] LIST OVERVIEW.FMT - change :bytes and :lines to Bytes: and Lines: in order to keep some newsreaders from barfing. RFC3977 says that this is allowed even though these items are technically considered metadata rather than headers. --- citadel/modules/nntp/serv_nntp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/citadel/modules/nntp/serv_nntp.c b/citadel/modules/nntp/serv_nntp.c index 1e686d3bc..a7f2aecb7 100644 --- a/citadel/modules/nntp/serv_nntp.c +++ b/citadel/modules/nntp/serv_nntp.c @@ -533,8 +533,8 @@ void nntp_list(const char *cmd) { cprintf("Date:\r\n"); cprintf("Message-ID:\r\n"); cprintf("References:\r\n"); - cprintf(":bytes\r\n"); - cprintf(":lines\r\n"); + cprintf("Bytes:\r\n"); + cprintf("Lines:\r\n"); cprintf(".\r\n"); return; } -- 2.30.2