Last change
on this file since 14:0a6affee82cd was 13:f1f11159dbed, checked in by Borja Lopez <borja@…>, 13 years ago |
Added first version of the project documentation. Inside docs/src there is
the sphinx [1] project we use to manage the docs. Inside docs/html there is
a copy of the docs in html format.
Fixed some typos in the INSTALL file
Added two new parameters to the postman.conf file (both the example config
file inside conf/ and the one used for testing in postman/tests/). These
parameters do nothing yet (they are related to ssl stuff) but we do talk
about them in the docs.
Added a new method to the XMLRPC list of methods related to members.
[1] http://sphinx.pocoo.org
|
File size:
631 bytes
|
Rev | Line | |
---|
[10] | 1 | #
|
---|
| 2 | # postman.conf - Postman configuration file
|
---|
| 3 | #
|
---|
| 4 | # IMPORTANT: This config file should be used only
|
---|
| 5 | # for testing purposes
|
---|
| 6 |
|
---|
| 7 | [xmlrpc_server]
|
---|
| 8 | address = localhost
|
---|
| 9 | port = 9876
|
---|
| 10 | ssl = false
|
---|
[13] | 11 | ssl_key = /usr/local/etc/postman/ssl/postman.key
|
---|
| 12 | ssl_crt = /usr/local/etc/postman/ssl/postman.crt
|
---|
[10] | 13 | logfile = /tmp/postman-tests/xmlrpc_server.log
|
---|
| 14 |
|
---|
| 15 | [storage]
|
---|
| 16 | backend = json
|
---|
| 17 | path = /tmp/postman-tests/storage
|
---|
| 18 | lists_db = %(path)s/mailings.%(backend)s
|
---|
| 19 | members_db = %(path)s/members.%(backend)s
|
---|
| 20 |
|
---|
| 21 | [archive]
|
---|
| 22 | enabled = true
|
---|
| 23 | backend = json
|
---|
| 24 | path = /tmp/postman-tests/archives
|
---|
| 25 |
|
---|
| 26 | [mailing_lists]
|
---|
| 27 | private = true
|
---|
| 28 |
|
---|
| 29 | [members]
|
---|
| 30 | auto_signup = false
|
---|
| 31 | allow_chpasswd = false
|
---|
Note:
See
TracBrowser
for help on using the repository browser.