diff options
author | Oliver Skibbe <oliskibbe@gmail.com> | 2015-10-08 09:04:29 +0200 |
---|---|---|
committer | Oliver Skibbe <oliskibbe@gmail.com> | 2015-10-08 09:04:29 +0200 |
commit | b6de2341f8683d51b8723b772e4753507b1607f5 (patch) | |
tree | 79b9cad07ca68d6cd7850d9026db9bdc853a643d /plugins/check_smtp.c | |
parent | dfe66c01c0b556dfbac9c1d901d3ba9ed6a1deac (diff) | |
download | monitoring-plugins-b6de2341f8683d51b8723b772e4753507b1607f5.tar.gz |
check_smtp.c: modified SSL check for use with -e
- currently STARTTLS check does not work with -e if there's text
like '220 hostname ESMTP*'. This is caused by SMTP answer from
host. Postfix answer: 220 2.0.0 Ready to start TLS, Exchange
2010: 220 2.0.0 SMTP server ready. This fix checks against 220
closes #1093
Diffstat (limited to 'plugins/check_smtp.c')
-rw-r--r-- | plugins/check_smtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index 2e9b68b1..1996c6d3 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c @@ -231,7 +231,7 @@ main (int argc, char **argv) send(sd, SMTP_STARTTLS, strlen(SMTP_STARTTLS), 0); recvlines(buffer, MAX_INPUT_BUFFER); /* wait for it */ - if (!strstr (buffer, server_expect)) { + if (!strstr (buffer, SMTP_EXPECT)) { printf (_("Server does not support STARTTLS\n")); smtp_quit(); return STATE_UNKNOWN; |