source: mailjam/postman/tests/postman.conf@ 12:dcc1da2dfa90

Last change on this file since 12:dcc1da2dfa90 was 10:d5329a2a05b7, checked in by Borja Lopez <borja@…>, 12 years ago

Fully added support for the configuration file. Now all the code uses
postman.conf to read the configuration parameters from it

Added a tests/postman.conf configuration file with specific configurtion
to use while testing (mostly tmp paths)

Updated the run_tests script to delete the temporary directory where
data is saved while running tests

Updated the tests modules/files so they use the tests config file

File size: 533 bytes
RevLine 
[10]1#
2# postman.conf - Postman 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
11logfile = /tmp/postman-tests/xmlrpc_server.log
12
13[storage]
14backend = json
15path = /tmp/postman-tests/storage
16lists_db = %(path)s/mailings.%(backend)s
17members_db = %(path)s/members.%(backend)s
18
19[archive]
20enabled = true
21backend = json
22path = /tmp/postman-tests/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.