summaryrefslogtreecommitdiff
path: root/test/confs/0005
blob: babeacb41834d953c782c4a673030da024269b72 (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
51
52
53
54
55
56
57
58
59
60
61
# Exim test configuration 0005

.include DIR/aux-var/std_conf_prefix


# ----- Main settings -----

domainlist local_domains = @

acl_smtp_rcpt = check_recipient
acl_smtp_data = check_data
message_id_header_domain = ${if eq{0}{0}{some.domain}}
message_id_header_text = ${if eq{0}{0}{a@b[c]}}
trusted_users = CALLER


# ----- ACL -----

begin acl

check_recipient:
  accept hosts = :
  accept domains = +local_domains
  deny   message = relay not permitted

check_data:
  warn   message = X-acl-message-linecount: $message_linecount
  accept


# ----- Routers -----

begin routers

fail_remote_domains:
  driver = redirect
  domains = ! +local_domains
  data = :fail: unrouteable mail domain "$domain"

localuser:
  driver = accept
  check_local_user
  transport = local_delivery
  headers_add = X-local-user: uid=$local_user_uid gid=$local_user_gid


# ----- Transports -----

begin transports

local_delivery:
  driver = appendfile
  delivery_date_add
  envelope_to_add
  file = DIR/test-mail/$local_part_data
  headers_add = "X-body-linecount: $body_linecount\n\
                 X-message-linecount: $message_linecount\n\
                 X-received-count: $received_count"
  return_path_add

# End