]> granicus.if.org Git - icinga2/commitdiff
ITL: Add missing 'smtp' CheckCommand parameters
authorLennart Betz <lennart.betz@netways.de>
Tue, 7 Jul 2015 18:11:25 +0000 (20:11 +0200)
committerMichael Friedrich <michael.friedrich@gmail.com>
Tue, 7 Jul 2015 19:20:21 +0000 (21:20 +0200)
fixes #9578

Signed-off-by: Michael Friedrich <michael.friedrich@gmail.com>
doc/7-icinga-template-library.md
itl/command-plugins.conf

index 4bdfcb2f66eb50f4fa4b1b21af4e9e6f9d1d9e1b..80c4bf1ed357819702983e92edd1d8efd34436b5 100644 (file)
@@ -680,11 +680,24 @@ Check command object for the `check_smtp` plugin.
 
 Custom attributes passed as [command parameters](3-monitoring-basics.md#command-passing-parameters):
 
-Name                 | Description
----------------------|--------------
-smtp_address         | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
-smtp_port            | **Optional.** The port that should be checked. Defaults to 25.
-smtp_mail_from       | **Optional.** Test a MAIL FROM command with the given email address.
+Name                  | Description
+----------------------|--------------
+smtp_address          | **Optional.** The host's address. Defaults to "$address$" if the host's `address` attribute is set, "$address6$" otherwise.
+smtp_port             | **Optional.** The port that should be checked. Defaults to 25.
+smtp_mail_from        | **Optional.** Test a MAIL FROM command with the given email address.
+smtp_expect           | **Optional.** String to expect in first line of server response (default: '220').
+smtp_command          | **Optional.** SMTP command (may be used repeatedly).
+smtp_response         | **Optional.** Expected response to command (may be used repeatedly).
+smtp_helo_fqdn        | **Optional.** FQDN used for HELO
+smtp_certificate_age  | **Optional.** Minimum number of days a certificate has to be valid.
+smtp_starttls         | **Optional.** Use STARTTLS for the connection.
+smtp_authtype         | **Optional.** SMTP AUTH type to check (default none, only LOGIN supported).
+smtp_authuser         | **Optional.** SMTP AUTH username.
+smtp_authpass         | **Optional.** SMTP AUTH password.
+smtp_ignore_quit      | **Optional.** Ignore failure when sending QUIT command to server.
+smtp_warning          | **Optional.** Response time to result in warning status (seconds).
+smtp_critical         | **Optional.** Response time to result in critical status (seconds).
+smtp_timeout          | **Optional.** Seconds before connection times out (default: 10).
 
 
 ## <a id="plugin-check-command-snmp"></a> snmp
index 51f0987097416b1686743b5cd64fa28c2fe6c8f0..e382d67f9d5e9da7f02026698fc2f3c081ceea63 100644 (file)
@@ -517,6 +517,19 @@ object CheckCommand "smtp" {
                "-H" = "$smtp_address$"
                "-p" = "$smtp_port$"
                "-f" = "$smtp_mail_from$"
+               "-e" = "$smtp_expect$"
+               "-C" = "$smtp_command$"
+               "-R" = "$smtp_response$"
+               "-F" = "$smtp_helo_fqdn$"
+               "-D" = "$smtp_certificate_age$"
+               "-S" = "$smtp_starttls$"
+               "-A" = "$smtp_authtype$"
+               "-U" = "$smtp_authuser$"
+               "-P" = "$smtp_authpass$"
+               "-q" = "$smtp_ignore_quit$"
+               "-w" = "$smtp_warning$"
+               "-c" = "$smtp_critical$"
+               "-t" = "$smtp_timeout$"
        }
 
        vars.smtp_address = "$check_address$"