Changeset 27:b1d527287347 in mailjam for mailjam


Ignore:
Timestamp:
May 23, 2012, 6:32:54 PM (12 years ago)
Author:
Borja Lopez <borja@…>
Branch:
default
Phase:
public
Message:

Added more information to the README file

Updated the architecture scheme so it fits the renaming of the project
to mailjam

Fixed the search path for configuration files. Now it searches on /etc
first, /usr/local/etc then.

Added more docs regarding the installation, configuration and running
of each component

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mailjam/config.py

    r23 r27  
    1717    def __init__(self, configfile=None):
    1818        self.configfile = configfile
    19         self.default_paths = ['/usr/local/etc/mailjam', '/usr/local/etc',
    20                               '/etc/mailjam', '/etc',
     19        self.default_paths = ['/etc/mailjam', '/etc',
     20                              '/usr/local/etc/mailjam', '/usr/local/etc',
    2121                              os.path.join(os.path.dirname(__file__),'../conf')]
    2222        self.config = {}
     
    107107    @property
    108108    def sections(self):
    109         return ['server', 'archive', 'history']
     109        return ['server', 'history']
    110110
    111111
Note: See TracChangeset for help on using the changeset viewer.