about summary refs log tree commit homepage
path: root/lib/PublicInbox/Mbox.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-09-26 22:38:52 +0000
committerEric Wong <e@80x24.org>2019-09-27 10:48:42 +0000
commit3ac87edaac331844cf4f7c9fbff2c51a71148b8c (patch)
tree6b99ca756594c5367b9df54e166e0f8ffc3c2b9a /lib/PublicInbox/Mbox.pm
parentdadaf7fd96301f1737b2eca2171a742daef8befd (diff)
downloadpublic-inbox-3ac87edaac331844cf4f7c9fbff2c51a71148b8c.tar.gz
qmail.org seems unavailable.
Diffstat (limited to 'lib/PublicInbox/Mbox.pm')
-rw-r--r--lib/PublicInbox/Mbox.pm4
1 files changed, 3 insertions, 1 deletions
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";
 }