Logging: support +outgoing_port on defer lines and per-host error lines
[exim.git] / test / confs / 0537
CommitLineData
33d73e3b
PH
1# Exim test configuration 0537
2
3TRUSTED=
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
33d73e3b
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
c8e2fc1e 12log_selector = +smtp_mailauth
23f3dc67 13tls_advertise_hosts =
33d73e3b
PH
14
15# ----- Main settings -----
16
17acl_smtp_connect = connect
18acl_smtp_mail = mail
19acl_not_smtp_start = mail
20
21queue_only
22trusted_users = TRUSTED
23
24# ----- ACLs -----
25
26begin ACL
27
28connect:
29 accept acl = log
30
31mail:
32 accept acl = log
33 acl = auth
34
35log:
36 accept logwrite = ===========================================================
37 logwrite = sender_ip_address=[$sender_host_address]
38 logwrite = sender_host_authenticated=$sender_host_authenticated
39 logwrite = authenticated_id=$authenticated_id
40 logwrite = authenticated_sender=$authenticated_sender
41 logwrite = interface_address=[$interface_address]
42 logwrite = received_protocol=$received_protocol
43 logwrite = sender_host_name=$sender_host_name
44 logwrite = sender_ident=$sender_ident
45
46auth:
47 accept authenticated = *
48 logwrite = +++ host is authenticated +++
49
50 accept
51