diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-07-27 10:13:52 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-07-27 10:13:52 +0000 |
commit | 33d73e3b7a0201f4af19e8217ced618e68eaf1fb (patch) | |
tree | 16b244ac03e951196eaec6a98b317660e08a7cc7 /test/confs/0537 | |
parent | 1b781f48b407ebb827db510c4b50d5ce348265f6 (diff) |
Made -oMaa and -oMt work with -bh and -bs to pretend the connection is
authenticated or an ident call has been made. Suppress the default
values for $authenticated_id and $authenticated_sender (but permit -oMai
and -oMas) when testing with -bh.
Diffstat (limited to 'test/confs/0537')
-rw-r--r-- | test/confs/0537 | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/test/confs/0537 b/test/confs/0537 new file mode 100644 index 000000000..b8dec5a30 --- /dev/null +++ b/test/confs/0537 @@ -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 + |