source: mailjam/conf/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: 556 bytes
Line 
1#
2# postman.conf - Postman configuration file
3#
4
5[xmlrpc_server]
6address = localhost
7port = 9876
8ssl = false
9ssl_key = /usr/local/etc/postman/ssl/postman.key
10ssl_crt = /usr/local/etc/postman/ssl/postman.crt
11logfile = /var/log/postman/xmlrpc_server.log
12
13[storage]
14backend = json
15path = /usr/local/postman/storage
16lists_db = %(path)s/mailings.%(backend)s
17members_db = %(path)s/members.%(backend)s
18
19[archive]
20enabled = true
21backend = json
22path = /usr/local/postman/archives
23
24[mailing_lists]
25private = true
26
27[members]
28auto_signup = false
29allow_chpasswd = false
Note: See TracBrowser for help on using the repository browser.