]> Sergey Matveev's repositories - public-inbox.git/commitdiff
mbox: update URL for mboxrd info
authorEric Wong <e@80x24.org>
Thu, 26 Sep 2019 22:38:52 +0000 (22:38 +0000)
committerEric Wong <e@80x24.org>
Fri, 27 Sep 2019 10:48:42 +0000 (10:48 +0000)
qmail.org seems unavailable.

lib/PublicInbox/Mbox.pm

index 8837400a435788d1fa1ef17b6dc85674bc59672d..6d902e6ce25b722d6a79420a8378dc9bd2964129 100644 (file)
@@ -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";
 }