Add d/p/15_check_smtp_initialize to fix check_smtp with custom commands and SSL
Thanks to Iustin Pop <iustin@debian.org>! (Closes: #886888)
This commit is contained in:
parent
73f22736fc
commit
4f75b28421
26
debian/patches/15_check_smtp_initialize
vendored
Normal file
26
debian/patches/15_check_smtp_initialize
vendored
Normal file
|
@ -0,0 +1,26 @@
|
|||
From 8520c643dd35bbeebbf36c7145d3f8c12dfaf70b Mon Sep 17 00:00:00 2001
|
||||
From: Iustin Pop <iustin@debian.org>
|
||||
Date: Fri, 18 Jan 2019 22:52:54 +0100
|
||||
Subject: [PATCH] Simply initializes n before it is used
|
||||
|
||||
When SSL is enabled, n is assigned the size of the server's second EHLO
|
||||
response (I think in bytes), which will usually be significantly higher
|
||||
than the command passed. As such, no commands are executed and no responses
|
||||
are checked, which - silently - defeats the desired checks and results in a
|
||||
success value.
|
||||
---
|
||||
plugins/check_smtp.c | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c
|
||||
index 0fcf4c68..d37c57c8 100644
|
||||
--- a/plugins/check_smtp.c
|
||||
+++ b/plugins/check_smtp.c
|
||||
@@ -293,6 +293,7 @@ main (int argc, char **argv)
|
||||
printf("%s", buffer);
|
||||
}
|
||||
|
||||
+ n = 0;
|
||||
while (n < ncommands) {
|
||||
xasprintf (&cmd_str, "%s%s", commands[n], "\r\n");
|
||||
my_send(cmd_str, strlen(cmd_str));
|
1
debian/patches/series
vendored
1
debian/patches/series
vendored
|
@ -5,3 +5,4 @@
|
|||
12_check_apt_only_crit
|
||||
13_check_apt_list_packages
|
||||
14_mariadb
|
||||
15_check_smtp_initialize
|
||||
|
|
Loading…
Reference in a new issue