Testsuite: fix 0903
[exim.git] / test / confs / 0537
CommitLineData
33d73e3b
PH
1# Exim test configuration 0537
2
3TRUSTED=
4
4fab92fb
HSHR
5.include DIR/aux-var/std_conf_prefix
6
c8e2fc1e 7log_selector = +smtp_mailauth
4fab92fb 8primary_hostname = myhost.test.ex
33d73e3b
PH
9
10# ----- Main settings -----
11
12acl_smtp_connect = connect
13acl_smtp_mail = mail
14acl_not_smtp_start = mail
15
16queue_only
17trusted_users = TRUSTED
18
19# ----- ACLs -----
20
21begin ACL
22
23connect:
24 accept acl = log
25
26mail:
27 accept acl = log
28 acl = auth
29
30log:
31 accept logwrite = ===========================================================
32 logwrite = sender_ip_address=[$sender_host_address]
33 logwrite = sender_host_authenticated=$sender_host_authenticated
34 logwrite = authenticated_id=$authenticated_id
35 logwrite = authenticated_sender=$authenticated_sender
36 logwrite = interface_address=[$interface_address]
37 logwrite = received_protocol=$received_protocol
38 logwrite = sender_host_name=$sender_host_name
39 logwrite = sender_ident=$sender_ident
40
41auth:
42 accept authenticated = *
43 logwrite = +++ host is authenticated +++
44
45 accept
46