source: mailjam/postman/tests/postman.conf@ 13:f1f11159dbed

Last change on this file since 13:f1f11159dbed was 13:f1f11159dbed, checked in by Borja Lopez <borja@…>, 12 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
Line 
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]
8address = localhost
9port = 9876
10ssl = false
11ssl_key = /usr/local/etc/postman/ssl/postman.key
12ssl_crt = /usr/local/etc/postman/ssl/postman.crt
13logfile = /tmp/postman-tests/xmlrpc_server.log
14
15[storage]
16backend = json
17path = /tmp/postman-tests/storage
18lists_db = %(path)s/mailings.%(backend)s
19members_db = %(path)s/members.%(backend)s
20
21[archive]
22enabled = true
23backend = json
24path = /tmp/postman-tests/archives
25
26[mailing_lists]
27private = true
28
29[members]
30auto_signup = false
31allow_chpasswd = false
Note: See TracBrowser for help on using the repository browser.