From 1a94de9ae62d7d590d20820c6120e5167dce1de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20K=C3=A4stle?= <12514511+RincewindsHat@users.noreply.github.com> Date: Thu, 4 Jun 2026 23:59:56 +0200 Subject: [PATCH] check_smtp: implement ok summary --- plugins/check_smtp.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index 19e2a58f..e1f2842e 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c @@ -187,6 +187,9 @@ int main(int argc, char **argv) { my_tcp_connect(config.server_address, config.server_port, &socket_descriptor); mp_check overall = mp_check_init(); + + mp_set_ok_summary(&overall, "SMTP connection check is OK"); + mp_subcheck sc_tcp_connect = mp_subcheck_init(); char buffer[MAX_INPUT_BUFFER]; bool ssl_established = false;