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