msys.dp_config.message_size_limits
Last updated March 2020
Message size limits. Multiple can be defined, with different whitelist honoring settings.
This configuration table defines
Find below the sample excerpt included in the dp_config.lua
file.
msys.dp_config.message_size_limits = {
{ check = true,
size = "50m",
honor_whitelist = { "global" } },
{ check = true,
size = "20m",
honor_whitelist = { } }
};
The elements of this configuration table are as follows:
- check
-
Whether or not to use this configuration item.
- size
-
The limitation you wish to apply. Use bytes (1024b), kilobytes (50k), megabytes (5m).
- honor_whitelist
-
A table listing any applicable whitelists set in the
msys.dp_config.whitelist
table.
Was this page helpful?