mod_admin_telnet: Show s2s authentication method (probably) used

This commit is contained in:
Kim Alvefur 2019-11-02 16:02:37 +01:00
parent 1783288951
commit 1a78e0a7ac

View file

@ -538,6 +538,12 @@ local function session_flags(session, line)
if session.cert_identity_status == "valid" then
line[#line+1] = "(authenticated)";
end
if session.dialback_key then
line[#line+1] = "(dialback)";
end
if session.external_auth then
line[#line+1] = "(SASL)";
end
if session.secure then
line[#line+1] = "(encrypted)";
end