mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_admin_telnet: Show s2s authentication method (probably) used
This commit is contained in:
parent
1783288951
commit
1a78e0a7ac
1 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue