From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 8D3A91FC99 for ; Fri, 27 Nov 2020 09:52:55 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 07/12] nntp: LIST ACTIVE.TIMES use angle brackets around address Date: Fri, 27 Nov 2020 09:52:49 +0000 Message-Id: <20201127095254.21624-8-e@80x24.org> In-Reply-To: <20201127095254.21624-1-e@80x24.org> References: <20201127095254.21624-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This matches the example shown in RFC 3977, section 7.6.1.3 --- lib/PublicInbox/NNTP.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/NNTP.pm b/lib/PublicInbox/NNTP.pm index 5cbf5a16..eb2c0b38 100644 --- a/lib/PublicInbox/NNTP.pm +++ b/lib/PublicInbox/NNTP.pm @@ -149,7 +149,7 @@ sub list_active_times ($;$) { for my $ngname (grep(/$wildmat/, @{$self->{nntpd}->{groupnames}})) { my $ibx = $groups->{$ngname}; my $c = eval { $ibx->uidvalidity } // time; - more($self, "$ngname $c $ibx->{-primary_address}"); + more($self, "$ngname $c <$ibx->{-primary_address}>"); } }