----------------|--------------
imap_address | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
imap_port | **Optional.** The port that should be checked. Defaults to 143.
+imap_timeout | **Optional.** The timeout in seconds.
## <a id="plugin-check-command-ldap"></a> ldap
----------------|--------------
pop_address | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
pop_port | **Optional.** The port that should be checked. Defaults to 110.
+pop_timeout | **Optional.** The timeout in seconds.
## <a id="plugin-check-command-processes"></a> procs
----------------|--------------
simap_address | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
simap_port | **Optional.** The host's port.
+simap_timeout | **Optional.** The timeout in seconds.
## <a id="plugin-check-command-smtp"></a> smtp
----------------|--------------
spop_address | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
spop_port | **Optional.** The host's port.
+spop_timeout | **Optional.** The timeout in seconds.
## <a id="plugin-check-command-ssh"></a> ssh
arguments = {
"-H" = "$imap_address$"
"-p" = "$imap_port$"
+ "-t" = "$imap_timeout$"
}
vars.imap_address = "$check_address$"
arguments = {
"-H" = "$simap_address$"
"-p" = "$simap_port$"
+ "-t" = "$simap_timeout$"
}
vars.simap_address = "$check_address$"
arguments = {
"-H" = "$pop_address$"
"-p" = "$pop_port$"
+ "-t" = "$pop_timeout$"
}
vars.pop_address = "$check_address$"
arguments = {
"-H" = "$spop_address$"
"-p" = "$spop_port$"
+ "-t" = "$spop_timeout$"
}
vars.spop_address = "$check_address$"