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-ASN: 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 79EA71F4C0; Tue, 15 Oct 2019 20:36:33 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Cc: "Eric W. Biederman" Subject: [PATCH 0/7] List-ID support in mda, watch, www Date: Tue, 15 Oct 2019 20:36:26 +0000 Message-Id: <20191015203633.17665-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Starting with Eric Biederman's support for declaring "List-ID", -watch and -mda are now able to deliver messages using List-ID. Benefits for -mda users: * Extra/private addresses no longer need to be configured Benefits for -watch users: * (slightly?) easier-to-use than "watchheader" * allows combining multiple lists into one inbox There's also several Perl 5.10+-inspired cleanups to the config while I was in the area... Eric W. Biederman (1): Config.pm: Add support for mailing list information Eric Wong (6): config: we always have {-section_order} config: simplify lookup* methods config: avoid unnecessary '||' use config: allow "0" as a valid mainrepo path mda, watch: wire up List-ID header support wwwtext: show listid config directive(s) Documentation/public-inbox-config.pod | 18 ++++ Documentation/public-inbox-mda.pod | 3 + lib/PublicInbox/Config.pm | 150 ++++++++++++-------------- lib/PublicInbox/WatchMaildir.pm | 31 ++++-- lib/PublicInbox/WwwText.pm | 2 +- script/public-inbox-mda | 17 ++- t/config.t | 73 ++++++------- t/config_limiter.t | 24 ++--- t/mda.t | 28 +++++ t/psgi_attach.t | 8 +- t/psgi_bad_mids.t | 10 +- t/psgi_mount.t | 8 +- t/psgi_multipart_not.t | 10 +- t/psgi_scan_all.t | 12 ++- t/psgi_search.t | 8 +- t/psgi_text.t | 8 +- t/psgi_v2.t | 10 +- t/watch_filter_rubylang.t | 20 ++-- t/watch_maildir.t | 14 +-- t/watch_maildir_v2.t | 59 +++++++--- 20 files changed, 305 insertions(+), 208 deletions(-)