From: Eric Wong Date: Thu, 26 Sep 2019 22:38:52 +0000 (+0000) Subject: mbox: update URL for mboxrd info X-Git-Tag: v1.2.0~73 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=3ac87edaac331844cf4f7c9fbff2c51a71148b8c mbox: update URL for mboxrd info qmail.org seems unavailable. --- diff --git a/lib/PublicInbox/Mbox.pm b/lib/PublicInbox/Mbox.pm index 8837400a..6d902e6c 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"; }