mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_external_services: Warn about missing recommended fields
These are RECOMMENDED in XEP-0215 so most likely a mistake if they are left out. Of the two REQUIRED fields, 'host' falls back to module.host and 'type' rejects the whole item.
This commit is contained in:
parent
6e91f0ad43
commit
7683221a64
1 changed files with 4 additions and 0 deletions
|
@ -63,12 +63,16 @@ local function prepare(item)
|
|||
end
|
||||
if type(item.transport) == "string" then
|
||||
srv.transport = item.transport;
|
||||
else
|
||||
module:log("warn", "Service missing recommended 'transport' field: %q", item);
|
||||
end
|
||||
if type(item.host) == "string" then
|
||||
srv.host = item.host;
|
||||
end
|
||||
if type(item.port) == "number" then
|
||||
srv.port = item.port;
|
||||
elseif not srv.port then
|
||||
module:log("warn", "Service missing recommended 'port' field: %q", item);
|
||||
end
|
||||
if type(item.username) == "string" then
|
||||
srv.username = item.username;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue