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