From: Eric Wong Date: Sun, 15 Sep 2024 19:32:01 +0000 (+0000) Subject: doc: fix NEWS.html generation X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a19e2d43ea8102e6933de7b8b0185d485536d754;p=thirdparty%2Fpublic-inbox.git doc: fix NEWS.html generation `make check' reveals this failure, but I normally use the faster `make check-run' which doesn't. Fixes: bbe582cdfa42 (view: fix addr2urlmap with Plack::Builder::mount, 2024-09-13) --- diff --git a/Documentation/mknews.perl b/Documentation/mknews.perl index da29cfac9..07e77ebef 100755 --- a/Documentation/mknews.perl +++ b/Documentation/mknews.perl @@ -51,7 +51,15 @@ if ($dst eq 'NEWS') { HTTP_HOST => 'public-inbox.org', 'psgi.url_scheme' => 'https', }, + www => { + pi_cfg => { + -by_addr => { # for addr2urlmap + 'meta@public-inbox.org' => $ibx, + } + } + } }; + PublicInbox::View::addr2urlmap $ctx; if ($dst eq 'NEWS.html') { html_start($out, $ctx); mime2html($out, $mime_latest, $ctx);