]> Sergey Matveev's repositories - public-inbox.git/commitdiff
doc: acknowledge the MMDF mailbox format
authorEric Wong <e@80x24.org>
Tue, 7 Sep 2021 22:42:08 +0000 (22:42 +0000)
committerEric Wong <e@80x24.org>
Wed, 8 Sep 2021 02:40:55 +0000 (02:40 +0000)
While I don't currently see a point in supporting MMDF, we'll
still acknowledge it since mutt actually supports it.  Expand a
bit on MH while we're at it, since MH seems at least relevant.

Documentation/lei-mail-formats.pod
Documentation/txt2pre

index 8accedb49616f2e277760cf4c3e6b65ea123d559..da723d2b83dbaf67c4dac7f5a56dc9cb5649d4d9 100644 (file)
@@ -82,7 +82,13 @@ mbox.
 =head1 MH
 
 Not yet supported, locking semantics (or lack thereof) appear to
-make it unsuitable for parallel access.
+make it unsuitable for parallel access.  It is widely-supported
+by a variety of MUAs and mailing list managers, however.
+
+=head1 MMDF
+
+Not yet supported, and it's unclear if current usage/support makes
+it worth supporting.
 
 =head1 IMAP
 
index d98dfdd3965a06bf70fd758a83789eba1dae7da3..6367374d49501d8042712fd0865628963f4657a7 100755 (executable)
@@ -117,6 +117,7 @@ $xurls{'ssoma(1)'} = 'https://ssoma.public-inbox.org/ssoma.txt';
 $xurls{'cgitrc(5)'} = 'https://git.zx2c4.com/cgit/tree/cgitrc.5.txt';
 $xurls{'prove(1)'} = 'https://perldoc.perl.org/prove.html';
 $xurls{'mbox(5)'} = 'https://manpages.debian.org/stable/mutt/mbox.5.en.html';
+$xurls{'mmdf(5)'} = 'https://manpages.debian.org/stable/mutt/mmdf.5.en.html';
 
 my $str = do { local $/; <STDIN> };
 my ($title) = ($str =~ /\A([^\n]+)/);