diff options
| author | Barry Warsaw | 2009-06-30 06:14:49 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2009-06-30 06:14:49 -0400 |
| commit | fc07eb2b464eaea1f3dcc9ce4d57343571e8527f (patch) | |
| tree | c8d7c87af7cdf0bf46cca711129c699128cf4432 /src | |
| parent | 9e97e8ae31450ce6a308f700fc358710462c01f8 (diff) | |
| download | mailman-fc07eb2b464eaea1f3dcc9ce4d57343571e8527f.tar.gz mailman-fc07eb2b464eaea1f3dcc9ce4d57343571e8527f.tar.zst mailman-fc07eb2b464eaea1f3dcc9ce4d57343571e8527f.zip | |
Diffstat (limited to 'src')
| -rw-r--r-- | src/mailman/docs/README.txt | 91 | ||||
| -rw-r--r-- | src/sphinxconf.py | 8 |
2 files changed, 99 insertions, 0 deletions
diff --git a/src/mailman/docs/README.txt b/src/mailman/docs/README.txt new file mode 100644 index 000000000..20fe32a1c --- /dev/null +++ b/src/mailman/docs/README.txt @@ -0,0 +1,91 @@ +================================================ +Mailman - The GNU Mailing List Management System +================================================ + +This is `GNU Mailman`_, a mailing list management system distributed under the +terms of the `GNU General Public License`_ (GPL) version 3 or later. + +Mailman is written in Python_, a free object-oriented programming language. +Python is available for all platforms that Mailman is supported on, which +includes GNU/Linux and most other Unix-like operating systems (e.g. Solaris, +\*BSD, MacOSX, etc.). Mailman is not supported on Windows, although web and +mail clients on any platform should be able to interact with Mailman just +fine. + + +Copyright +========= + +Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, + 2008, 2009 by the Free Software Foundation, Inc. + +This file is part of GNU Mailman. + +GNU Mailman is free software: you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free Software +Foundation, either version 3 of the License, or (at your option) any later +version. + +GNU Mailman is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +A PARTICULAR PURPOSE. See the GNU General Public License for more details. + +You should have received a copy of the GNU General Public License along with +GNU Mailman. If not, see <http://www.gnu.org/licenses/>. + + +Spelling +======== + +The name of this software is spelled `Mailman` with a leading capital `M` +but with a lower case second `m`. Any other spelling is incorrect. Its full +name is `GNU Mailman` but is often referred colloquially as `Mailman`. + + +History +======= + +Mailman was originally developed by John Viega. Subsequent development +(through version 1.0b3) was by Ken Manheimer. Further work towards the 1.0 +final release was a group effort, with the core contributors being: Barry +Warsaw, Ken Manheimer, Scott Cotton, Harald Meland, and John Viega. Version +1.0 and beyond have been primarily maintained by Barry Warsaw with +contributions from many; see the ACKNOWLEDGMENTS file for details. Jeremy +Hylton helped considerably with the Pipermail code in Mailman 2.0. Mailman +2.1 is now being primarily maintained by Mark Sapiro and Tokio Kikuchi. Barry +Warsaw is the lead developer on Mailman 3. + + +Help +==== + +The Mailman home page is: + + http://www.list.org + +with mirrors at: + + http://www.gnu.org/software/mailman + http://mailman.sf.net + +The community driven wiki (including the FAQ_) is at: + + http://wiki.list.org + +Other help resources, such as on-line documentation, links to the mailing +lists and archives, etc., are available at: + + http://www.list.org/help.html + + +Requirements +============ + +Mailman 3.0 requires `Python 2.6` or newer. + + +.. _`GNU Mailman`: http://www.list.org +.. _`GNU General Public License`: http://www.gnu.org/licenses/gpl.txt +.. _Python: http://www.python.org +.. _FAQ: http://wiki.list.org/display/DOC/Frequently+Asked+Questions +.. _`Python 2.6`: http://www.python.org/download/releases/2.6.2/ diff --git a/src/sphinxconf.py b/src/sphinxconf.py new file mode 100644 index 000000000..2fae422d3 --- /dev/null +++ b/src/sphinxconf.py @@ -0,0 +1,8 @@ +# Sphinx documentation configuration file. +def setup(app): + # hack the 'exclude_trees' configuration value so that our bounce examples + # aren't interpreted as documentation. + app.config.config_values['exclude_trees'][0].extend([ + 'tests/bounces', + 'templates', + ]) |
