source: mailjam/mailjam/__init__.py

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: 390 bytes
Line 
1# -*- coding: utf-8 -*-
2
3"""
4The mailjam project - A small mailing list manager
5
6This file is released under the BSD license, see LICENSE for
7more information.
8
9Francisco de Borja Lopez Rio - <borja@codigo23.net>
10Soluciones Informaticas Codigo23 S.L.U. - http://codigo23.net
11"""
12
13__version__ = '0.1.1'
14
15from mailjam.models import Member, MailingList
16from mailjam.storage import JsonStorage
Note: See TracBrowser for help on using the repository browser.