Software /
code /
prosody-modules
File
mod_log_sasl_mech/mod_log_sasl_mech.lua @ 1377:92f3b4d81b52
mod_message_logging: Treat messages with no 'to' as directed to the sender
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 03 Apr 2014 00:19:18 +0200 |
parent | 1292:2d061333d0c2 |
child | 1393:4baaa5a66a5a |
line wrap: on
line source
module:hook("authentication-success", function (event) local sasl_handler = event.session.sasl_handler; module:log("info", "Authenticated with %s", sasl_handler and sasl_handler.selected or "legacy auth"); end);