Changeset 33:8efa7a7802d4 in mailjam for mailjam


Ignore:
Timestamp:
May 24, 2012, 7:25:07 PM (12 years ago)
Author:
Borja Lopez <borja@…>
Branch:
default
Phase:
public
Message:

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.

Location:
mailjam
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • mailjam/__init__.py

    r29 r33  
    1111"""
    1212
    13 __version__ = '0.1.0'
    14 
     13__version__ = '0.1.1'
    1514
    1615from mailjam.models import Member, MailingList
  • mailjam/daemon.py

    r31 r33  
    235235            self.server = SimpleXMLRPCServer((self.address, self.port),
    236236                                             allow_none=True,
    237                                              logRequests=False)
     237                                             logRequests=True)
    238238            self.server.register_introspection_functions()
    239239        return True
  • mailjam/tests/mailjam.conf

    r16 r33  
    1212ssl_crt = /usr/local/etc/mailjam/ssl/mailjam.crt
    1313logfile = /tmp/mailjam-tests/xmlrpc_server.log
     14accesslog = /var/log/mailjam/access.log
    1415
    1516[storage]
Note: See TracChangeset for help on using the changeset viewer.