Made -oMaa and -oMt work with -bh and -bs to pretend the connection is
[exim.git] / test / confs / 0537
diff --git a/test/confs/0537 b/test/confs/0537
new file mode 100644 (file)
index 0000000..b8dec5a
--- /dev/null
@@ -0,0 +1,50 @@
+# Exim test configuration 0537
+
+TRUSTED=
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+primary_hostname = myhost.test.ex
+rfc1413_query_timeout = 0s
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+# ----- Main settings -----
+
+acl_smtp_connect = connect
+acl_smtp_mail    = mail
+acl_not_smtp_start = mail
+
+queue_only
+trusted_users = TRUSTED
+
+# ----- ACLs -----
+
+begin ACL
+
+connect:
+  accept acl = log
+
+mail:
+  accept acl = log
+         acl = auth
+
+log:
+  accept logwrite = ===========================================================
+         logwrite = sender_ip_address=[$sender_host_address]
+         logwrite = sender_host_authenticated=$sender_host_authenticated
+         logwrite = authenticated_id=$authenticated_id
+         logwrite = authenticated_sender=$authenticated_sender
+         logwrite = interface_address=[$interface_address]
+         logwrite = received_protocol=$received_protocol
+         logwrite = sender_host_name=$sender_host_name
+         logwrite = sender_ident=$sender_ident
+
+auth:
+  accept authenticated = *
+         logwrite = +++ host is authenticated +++
+
+  accept
+