Changeset 33:8efa7a7802d4 in mailjam for mailjam/daemon.py


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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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
Note: See TracChangeset for help on using the changeset viewer.