mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
prosodyctl check features: Add descriptions to features
Also shuffles mod_pep check to multi-device sync, as I think that's a better fit.
This commit is contained in:
parent
8005ac825f
commit
9f50add34e
1 changed files with 17 additions and 3 deletions
|
@ -1493,6 +1493,10 @@ local function check(arg)
|
||||||
local function print_feature_status(feature, host)
|
local function print_feature_status(feature, host)
|
||||||
if quiet then return; end
|
if quiet then return; end
|
||||||
print("", feature.ok and "OK" or "(!)", feature.name);
|
print("", feature.ok and "OK" or "(!)", feature.name);
|
||||||
|
if feature.desc then
|
||||||
|
print("", "", feature.desc);
|
||||||
|
print("");
|
||||||
|
end
|
||||||
if not feature.ok then
|
if not feature.ok then
|
||||||
if feature.lacking_modules then
|
if feature.lacking_modules then
|
||||||
table.sort(feature.lacking_modules);
|
table.sort(feature.lacking_modules);
|
||||||
|
@ -1643,24 +1647,27 @@ local function check(arg)
|
||||||
local features = {
|
local features = {
|
||||||
{
|
{
|
||||||
name = "Basic functionality";
|
name = "Basic functionality";
|
||||||
|
desc = "Support for secure connections, authentication and messaging";
|
||||||
check = function ()
|
check = function ()
|
||||||
check_module("disco");
|
check_module("disco");
|
||||||
check_module("roster");
|
check_module("roster");
|
||||||
check_module("saslauth");
|
check_module("saslauth");
|
||||||
check_module("tls");
|
check_module("tls");
|
||||||
check_module("pep");
|
|
||||||
end;
|
end;
|
||||||
};
|
};
|
||||||
{
|
{
|
||||||
name = "Multi-device sync";
|
name = "Multi-device messaging and data synchronization";
|
||||||
|
desc = "Multiple clients connected to the same account stay in sync";
|
||||||
check = function ()
|
check = function ()
|
||||||
check_module("carbons");
|
check_module("carbons");
|
||||||
check_module("mam");
|
check_module("mam");
|
||||||
check_module("bookmarks");
|
check_module("bookmarks");
|
||||||
|
check_module("pep");
|
||||||
end;
|
end;
|
||||||
};
|
};
|
||||||
{
|
{
|
||||||
name = "Mobile optimizations";
|
name = "Mobile optimizations";
|
||||||
|
desc = "Help mobile clients reduce battery and data usage";
|
||||||
check = function ()
|
check = function ()
|
||||||
check_module("smacks");
|
check_module("smacks");
|
||||||
check_module("csi_simple", "csi_battery_saver");
|
check_module("csi_simple", "csi_battery_saver");
|
||||||
|
@ -1668,6 +1675,7 @@ local function check(arg)
|
||||||
};
|
};
|
||||||
{
|
{
|
||||||
name = "Web connections";
|
name = "Web connections";
|
||||||
|
desc = "Allow connections from browser-based web clients";
|
||||||
check = function ()
|
check = function ()
|
||||||
check_module("bosh");
|
check_module("bosh");
|
||||||
check_module("websocket");
|
check_module("websocket");
|
||||||
|
@ -1675,24 +1683,28 @@ local function check(arg)
|
||||||
};
|
};
|
||||||
{
|
{
|
||||||
name = "User profiles";
|
name = "User profiles";
|
||||||
|
desc = "Enable users to publish profile information";
|
||||||
check = function ()
|
check = function ()
|
||||||
check_module("vcard_legacy", "vcard");
|
check_module("vcard_legacy", "vcard");
|
||||||
end;
|
end;
|
||||||
};
|
};
|
||||||
{
|
{
|
||||||
name = "Blocking";
|
name = "Blocking";
|
||||||
|
desc = "Block communication with chosen entities";
|
||||||
check = function ()
|
check = function ()
|
||||||
check_module("blocklist");
|
check_module("blocklist");
|
||||||
end;
|
end;
|
||||||
};
|
};
|
||||||
{
|
{
|
||||||
name = "Push notifications";
|
name = "Push notifications";
|
||||||
|
desc = "Receive notifications on platforms that don't support persistent connections";
|
||||||
check = function ()
|
check = function ()
|
||||||
check_module("cloud_notify");
|
check_module("cloud_notify");
|
||||||
end;
|
end;
|
||||||
};
|
};
|
||||||
{
|
{
|
||||||
name = "Audio/video calls";
|
name = "Audio/video calls and P2P";
|
||||||
|
desc = "Assist clients in setting up connections between each other";
|
||||||
check = function ()
|
check = function ()
|
||||||
check_module(
|
check_module(
|
||||||
"turn_external",
|
"turn_external",
|
||||||
|
@ -1706,10 +1718,12 @@ local function check(arg)
|
||||||
name = "File sharing";
|
name = "File sharing";
|
||||||
check = function ()
|
check = function ()
|
||||||
check_component("http_file_share", "http_upload", "http_upload_external");
|
check_component("http_file_share", "http_upload", "http_upload_external");
|
||||||
|
desc = "Sharing of files to groups and offline users";
|
||||||
end;
|
end;
|
||||||
};
|
};
|
||||||
{
|
{
|
||||||
name = "Group chats";
|
name = "Group chats";
|
||||||
|
desc = "Create group chats and channels";
|
||||||
check = function ()
|
check = function ()
|
||||||
check_component("muc");
|
check_component("muc");
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue