# HG changeset patch # User Kim Alvefur # Date 1515038580 -3600 # Node ID afeb06e4cdea61c768c9230c906a26854c846181 # Parent a7c2df6b26621a5e1a82ee5391def80f376242b0 mod_auth_dovecot: Disable debug logging (sensitive data being sent) diff -r a7c2df6b2662 -r afeb06e4cdea mod_auth_dovecot/auth_dovecot/sasl_dovecot.lib.lua --- a/mod_auth_dovecot/auth_dovecot/sasl_dovecot.lib.lua Wed Jan 03 15:19:55 2018 +0100 +++ b/mod_auth_dovecot/auth_dovecot/sasl_dovecot.lib.lua Thu Jan 04 05:03:00 2018 +0100 @@ -139,7 +139,7 @@ if msg:sub(-1) ~= "\n" then msg = msg .. "\n" end - module:log("debug", "sending %q", msg:sub(1,-2)); + -- module:log("debug", "sending %q", msg:sub(1,-2)); local ok, err = self.conn:send(msg); if not ok then log("error", "Could not write to socket: %s", err);