source: mailjam/conf/postman.conf@ 14:0a6affee82cd

Last change on this file since 14:0a6affee82cd was 14:0a6affee82cd, checked in by Borja Lopez <borja@…>, 12 years ago

Added a configuration file specific for the MTA client.

Replaced the postman.config module with a new version based on classes. Now,
instead the old get_config_parameters() function (a modified version of it is
still there, to ensure backwards compatibility) there is a DaemonConfig class,
which contains some methods to perform the config file parsing and configuration
parameters extraction. That class will be then subclassed in order to have
different configuration classes for the daemon and the different clients (mta,
cli, web, etc).

File size: 563 bytes
Line 
1#
2# postman.conf - Postman daemon 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.