source: mailjam/conf/mailjam.conf

Last change on this file 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
RevLine 
[8]1#
[16]2# mailjam.conf - Mailjam daemon configuration file
[8]3#
4
5[xmlrpc_server]
6address = localhost
7port = 9876
8ssl = false
[16]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
[33]12accesslog = /var/log/mailjam/access.log
[8]13
14[storage]
15backend = json
[16]16path = /usr/local/mailjam/storage
[8]17lists_db = %(path)s/mailings.%(backend)s
18members_db = %(path)s/members.%(backend)s
19
20[archive]
21enabled = true
22backend = json
[16]23path = /usr/local/mailjam/archives
[8]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.