From ef2e5890df09193717f9d345ffaaa406e2d8aae7 Mon Sep 17 00:00:00 2001 From: Jeremy Harris Date: Mon, 3 Jan 2022 16:08:37 +0000 Subject: TLS: event for daemon accept fail --- test/confs/5721 | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 test/confs/5721 (limited to 'test/confs/5721') diff --git a/test/confs/5721 b/test/confs/5721 new file mode 100644 index 000000000..d156b1bf5 --- /dev/null +++ b/test/confs/5721 @@ -0,0 +1,34 @@ +# Exim test configuration 5721 + +.include DIR/aux-var/tls_conf_prefix + +primary_hostname = myhost.test.ex + +# ----- Main settings ----- + +acl_smtp_connect = accept logwrite = ACL conn +acl_smtp_quit = accept logwrite = ACL quit +acl_smtp_notquit = accept logwrite = ACL notquit + +tls_advertise_hosts = * +tls_certificate = DIR/aux-fixed/cert1 + +host_reject_connection = ${acl {hrc}} +event_action = ${acl {tls_fail}} + +# ------ ACL ------ + +begin acl + +hrc: + accept logwrite = eval host_reject_connection + # no mesage= hence host_reject_connection should be empty + +tls_fail: + warn logwrite = EV $event_name + accept condition = ${if eq {tls:fail:connect}{$event_name}} + logwrite = EVDATA: $event_data + accept + + +# End -- cgit v1.2.3