source: mailjam/mailjam/tests/mailjam.conf@ 33:8efa7a7802d4

Last change on this file since 33:8efa7a7802d4 was 33:8efa7a7802d4, checked in by Borja Lopez <borja@…>, 12 years ago

Added a new configuration parameter to the xmlrpc_server section of
mailman.conf, access_log, that sets the path to the log file where
incoming requests will be logged (web server style)

Enabled requests logging in the call to SimpleXMLRPCServer

Set current version to 0.1.1, as we have everything we wanted for 0.1.0
plus some bug fixes.

File size: 671 bytes
Line 
1#
2# mailjam.conf - Mailjam 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/mailjam/ssl/mailjam.key
12ssl_crt = /usr/local/etc/mailjam/ssl/mailjam.crt
13logfile = /tmp/mailjam-tests/xmlrpc_server.log
14accesslog = /var/log/mailjam/access.log
15
16[storage]
17backend = json
18path = /tmp/mailjam-tests/storage
19lists_db = %(path)s/mailings.%(backend)s
20members_db = %(path)s/members.%(backend)s
21
22[archive]
23enabled = true
24backend = json
25path = /tmp/mailjam-tests/archives
26
27[mailing_lists]
28private = true
29
30[members]
31auto_signup = false
32allow_chpasswd = false
Note: See TracBrowser for help on using the repository browser.