/usr/share/pyshared/lamson/handlers/log.py is in python-lamson 1.0pre11-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """
Implements a simple logging handler that's actually used by the lamson log
command line tool to run a logging server. It simply takes every message it
receives and dumps it to the logging.debug stream.
"""
from lamson.routing import route, stateless
import logging
@route("(to)@(host)", to=".+", host=".+")
@stateless
def START(message, to=None, host=None):
"""This is stateless and handles every email no matter what, logging what it receives."""
logging.debug("MESSAGE to %s@%s:\n%s" % (to, host, str(message)))
|