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 73B4F1F463 for ; Thu, 26 Sep 2019 22:38:52 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH] mbox: update URL for mboxrd info Date: Thu, 26 Sep 2019 22:38:52 +0000 Message-Id: <20190926223852.17362-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: qmail.org seems unavailable. --- lib/PublicInbox/Mbox.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/PublicInbox/Mbox.pm b/lib/PublicInbox/Mbox.pm index 8837400..6d902e6 100644 --- a/lib/PublicInbox/Mbox.pm +++ b/lib/PublicInbox/Mbox.pm @@ -125,7 +125,9 @@ sub msg_hdr ($$;$) { sub msg_body ($) { # mboxrd quoting style - # ref: http://www.qmail.org/man/man5/mbox.html + # https://en.wikipedia.org/wiki/Mbox#Modified_mbox + # https://www.loc.gov/preservation/digital/formats/fdd/fdd000385.shtml + # https://web.archive.org/http://www.qmail.org/man/man5/mbox.html $_[0] =~ s/^(>*From )/>$1/gm; $_[0] .= "\n"; } -- EW