diff options
Diffstat (limited to 'test/confs/5711')
-rw-r--r-- | test/confs/5711 | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test/confs/5711 b/test/confs/5711 new file mode 100644 index 000000000..d66935645 --- /dev/null +++ b/test/confs/5711 @@ -0,0 +1,34 @@ +# Exim test configuration 5711 + +.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 |