source: mailjam/postman/config.py@ 4:14b2a12d495e

Last change on this file since 4:14b2a12d495e was 2:108a82defd3e, checked in by Francisco de Borja Lopez Rio <borja@…>, 12 years ago

Fixed some bugs in the models and mta modules

Added tests for the mta module, including a dummy email that is used for
those tests.

Added an initial version of the Postman class (inside the daemon module). This
class will handle the main execution of the postman daemon, the manager
that will take care of mailing lists management.

Added the structure of folders needed to store json files associated with a given
postman instance.

File size: 355 bytes
Line 
1# -*- coding: utf-8 -*-
2
3import os
4
5# The default path for storage files
6storage_path = os.path.join(os.path.dirname(__file__), 'storage')
7
8# The default path for the archives
9archive_path = os.path.join(os.path.dirname(__file__), 'archives')
10
11# Set to True to set that, by default, only emails from members
12# will go into the list
13private_mailing = True
Note: See TracBrowser for help on using the repository browser.