blob: b8dec5a3048996213a4e254160a359ef0dcc55a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
|