]> Sergey Matveev's repositories - public-inbox.git/commitdiff
doc: misc cleanups and whitespace additions
authorEric Wong <e@80x24.org>
Mon, 1 Feb 2016 04:06:08 +0000 (04:06 +0000)
committerEric Wong <e@80x24.org>
Mon, 1 Feb 2016 04:06:08 +0000 (04:06 +0000)
Add a few newlines for readability (perhaps at the expense of
economy).  Stop mentioning "Open Source" as it is redundant
and "Free Software" fits our goals, better.

Documentation/design_notes.txt
Documentation/design_www.txt
INSTALL
README

index d96c8d8247cbdf4654ebb8157d89492522ffbe65..ec1dc80084f65e1ea220e68bfaa0cf603d63fb8f 100644 (file)
@@ -3,6 +3,7 @@ public-inbox design notes
 
 Challenges to running normal mailing lists
 ------------------------------------------
+
 1) spam
 2) bounce processing of invalid/bad email addresses
 3) processing subscribe/unsubscribe requests
@@ -14,6 +15,7 @@ confused users who cannot unsubscribe.
 
 Use existing infrastructure
 ---------------------------
+
 * public-inbox can coexist with existing mailing lists, any subscriber
   to the existing mailing list can begin delivering messages to
   public-inbox-mda(1)
@@ -34,6 +36,7 @@ Use existing infrastructure
 
 Why email?
 ----------
+
 * Freedom from proprietary services, tools and APIs.  Communicating with
   developers and users of Free Software should not rely on proprietary
   tools or services.
@@ -64,17 +67,19 @@ Why email?
 
 Why git?
 --------
+
 * git is distributed and robust while being both fast and
   space-efficient with text data.  NNTP was considered, but does not
   support delta-compression and places no guarantees on data/transport
-  integrity.  However, an NNTP gateway (read-only?) is possible.
+  integrity.  However, a read-only NNTP gateway is implemented.
 
-* As of 2014, git is widely used and known to nearly all Free Software
+* As of 2016, git is widely used and known to nearly all Free Software
   developers.  For non-developers it is packaged for all major GNU/Linux
   and *BSD distributions.  NNTP is not as widely-used nowadays.
 
 Why perl 5?
 -----------
+
 * Perl 5 is widely available on modern *nix systems with good a history
   of backwards and forward compatibility.
 
@@ -83,6 +88,7 @@ Why perl 5?
 
 Laziness
 --------
+
 * Stick to dependencies available in Debian main, this should make it
   easier for potential users to install, and easier for distro
   maintainers to pick up.
@@ -110,6 +116,7 @@ Laziness
 
 Web notes
 ---------
+
 * Getting users to install/run ssoma (or any new tool) is difficult.
   The web views must be easily read/cache/mirror-able.
 
@@ -124,6 +131,7 @@ Web notes
 
 What sucks about public-inbox
 -----------------------------
+
 * Lack of push notification.  On the other hand, feeds seem popular.
 
 * some (mostly GUI) mail clients cannot set In-Reply-To headers
@@ -131,6 +139,7 @@ What sucks about public-inbox
 
 Scalability notes
 -----------------
+
 Even with shallow clone, storing the history of large/busy mailing lists
 may place much burden on subscribers and servers.  However, having a
 single (or few) refs representing the entire history of a list is good
@@ -144,5 +153,6 @@ where `n' is the number of history splits.
 
 Copyright
 ---------
+
 Copyright 2013-2015 all contributors <meta@public-inbox.org>
 License: AGPLv3 or later <http://www.gnu.org/licenses/agpl-3.0.txt>
index 87631840e0806a9fc80c32de7fbae61a86c4ebae..760152333e651b916db7d62ae5d70c486da39cf8 100644 (file)
@@ -16,7 +16,7 @@ URL naming
 /$LISTNAME/$MESSAGE_ID/raw                -> raw mbox
 /$LISTNAME/$MESSAGE_ID/f/                 -> HTML content (full quotes)
 
-### Legacy endpoints (may be ambiguous given Message-IDs with similar suffies)
+### Legacy endpoints (may be ambiguous given Message-IDs with similar suffixes)
 /$LISTNAME/m/$MESSAGE_ID/                 -> 301 to /$LISTNAME/$MESSAGE_ID/
 /$LISTNAME/m/$MESSAGE_ID.html             -> 301 to /$LISTNAME/$MESSAGE_ID/
 /$LISTNAME/m/$MESSAGE_ID.txt              -> 301 to /$LISTNAME/$MESSAGE_ID/raw
@@ -45,6 +45,7 @@ of the original email.
 
 Guidelines for using limited HTML
 ---------------------------------
+
 We mainly use HTML for linking pages together with <a>.
 We also set <title> to make window management easier.
 
diff --git a/INSTALL b/INSTALL
index bb682942d7bdbd18f9840b7a735f3b601500e25a..538a95dbb8616154cadfe4aa544db6201a8bb0ee 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -1,5 +1,6 @@
 public-inbox (server-side) installation
 ---------------------------------------
+
 This is for folks who want to setup their own public-inbox instance.
 Clients should see http://ssoma.public-inbox.org/INSTALL.html instead
 if they want to import mail into their personal inboxes.
@@ -20,6 +21,7 @@ standard MakeMaker installation (Perl)
 
 Requirements (server MDA)
 -------------------------
+
 * git
 * ssoma - http://ssoma.public-inbox.org/INSTALL.html
 * SpamAssassin (spamc/spamd)
@@ -55,5 +57,6 @@ Optional modules:
 
 Copyright
 ---------
+
 Copyright 2013-2015 all contributors <meta@public-inbox.org>
 License: AGPLv3 or later <http://www.gnu.org/licenses/agpl-3.0.txt>
diff --git a/README b/README
index 09b66a36bd2b9b74f59117cb307f4b943e4419c6..85b48be81f3faa04687d775ad0c559d355c2974c 100644 (file)
--- a/README
+++ b/README
@@ -1,5 +1,6 @@
 public-inbox - an "archives first" approach to mailing lists
 ------------------------------------------------------------
+
 public-inbox implements the sharing of an email inbox via git to
 complement or replace traditional mailing lists.  Readers may
 read via NNTP, Atom feeds or HTML archives.
@@ -7,9 +8,11 @@ read via NNTP, Atom feeds or HTML archives.
 public-inbox spawned around three main ideas:
 
 * Publically accessible and archived communication is essential to
-  Free and Open Source development.
-* Contributing to Free and Open Source projects should not require the
-  use of non-Free/non-Open Source services or software.
+  Free Software development.
+
+* Contributing to Free Software projects should not require the
+  use of non-Free services or software.
+
 * Graphical user interfaces should not be required for text-based
   communication.
 
@@ -18,6 +21,7 @@ to run their own instances with minimal overhead.
 
 Implementation
 --------------
+
 public-inbox uses ssoma[1], Some Sort Of Mail Archiver which implements
 no policy of its own.  By storing (and optionally) exposing an inbox
 via git, it is fast and efficient to host and mirror public-inboxes.
@@ -47,9 +51,13 @@ replay a public-inbox git archive to subscribers via SMTP.
 
 Features
 --------
+
 * anybody may participate via plain-text email
+
 * stores email in git, readers may have a complete archive of the inbox
+
 * Atom feed and NNTP allows casual readers to follow via feed reader
+
 * uses only well-documented and easy-to-implement data formats
 
 Try it out now, see http://try.public-inbox.org/
@@ -73,10 +81,12 @@ Requirements (participant)
 
 Requirements (server)
 ---------------------
+
 See http://public-inbox.org/INSTALL
 
 Hacking
 -------
+
 Source code is available via git:
 
        git clone git://80x24.org/public-inbox
@@ -85,6 +95,7 @@ See below for contact info.
 
 Contact
 -------
+
 We are happy to see feedback of all types via plain-text email.
 public-inbox discussion is self-hosting on public-inbox.org
 Please send comments, user/developer discussion, patches, bug reports,
@@ -112,6 +123,7 @@ Or pass the same git repository URL for ssoma using the instructions at:
 
 Anti-Spam
 ---------
+
 The maintainer of public-inbox has found SpamAssassin a good tool for
 filtering his personal mail, and it will be the default spam filtering
 tool in public-inbox.
@@ -120,6 +132,7 @@ See http://public-inbox/dc-dlvr-spam-flow.html for more info.
 
 Content Filtering
 -----------------
+
 To discourage phishing, web bugs (tracking), viruses and other nuisances,
 only plain-text content is allowed and non-text content is stripped.
 This saves I/O bandwidth and storage, which is important as
@@ -131,6 +144,7 @@ aims to preserve the focus on content, and not presentation.
 
 Copyright
 ---------
+
 Copyright 2013-2015 all contributors <meta@public-inbox.org>
 License: AGPLv3 or later <http://www.gnu.org/licenses/agpl-3.0.txt>