.pdf)
WHM Plugins
exim_configuration_check function from within your custom script:
/xml-api/exim_configuration_check function call name, plus the required variables (see below), to a URL which includes the address of your server.
example.com, you would include the following string in your script: https://example.com:2087/xml-api/exim_configuration_check
exim_configuration_check function from within your custom script:
/json-api/exim_configuration_check function call name, plus the required variables (see below), to a URL which includes the address of your server.
example.com, you would include the following string in your script: https://example.com:2087/json-api/exim_configuration_check
1 indicates success.
https://example.com:2087/xml-api/exim_configuration_check in WebHost Manager will produce output similar to:
<exim_configuration_check> <message/> <status>1</status> <statusmsg>Configuration OK</statusmsg> </exim_configuration_check>
https://example.com:2087/json-api/exim_configuration_check in WebHost Manager will produce output similar to:
{
"status":1,
"message":null,
"statusmsg":"Configuration OK"
}