From: Siavash Tavakoli Date: Fri, 26 Jul 2019 08:55:05 +0000 (+0300) Subject: lib-smtp: test-smtp-payload - exclude ssl cases if ssl not supported X-Git-Tag: 2.3.8~179 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ef6a2403ab6a115a85a10c75bad6674945a39341;p=thirdparty%2Fdovecot%2Fcore.git lib-smtp: test-smtp-payload - exclude ssl cases if ssl not supported --- diff --git a/src/lib-smtp/test-smtp-payload.c b/src/lib-smtp/test-smtp-payload.c index 0643687080..206e75b519 100644 --- a/src/lib-smtp/test-smtp-payload.c +++ b/src/lib-smtp/test-smtp-payload.c @@ -1000,6 +1000,7 @@ static void test_run_scenarios(enum smtp_protocol protocol, test_out_reason("unknown payload size", (failure == NULL), failure); +#ifdef HAVE_OPENSSL smtp_server_set.max_pipelined_commands = 5; smtp_server_set.capabilities |= SMTP_CAPABILITY_PIPELINING; test_max_pending = MAX_PARALLEL_PENDING; @@ -1027,6 +1028,7 @@ static void test_run_scenarios(enum smtp_protocol protocol, test_out_reason("parallel pipelining startls", (failure == NULL), failure); +#endif } static void test_smtp_normal(void)