python from lamson import server def handle_incoming_mail(message): print(message.headers['Subject']) print(message.body()) server.Router().route('INBOX', handle_incoming_mail) server.start() python server.start(config_path="/path/to/config.ini")