summaryrefslogtreecommitdiff
path: root/test/confs/3551
blob: ef85ee006569f1dab60891ff2a1dff341133a96b (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
62
63
64
65
66
67
68
69
# Exim test configuration 3550

AUTHS=DIR/tmp/dovecot_auth_socket

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

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

domainlist local_domains = test.ex : *.test.ex

hostlist auth_hosts = 10.0.0.1
hostlist relay_hosts = 10.0.0.4
hostlist auth_relay_hosts = 10.0.0.3 : 10.0.0.4

acl_smtp_rcpt = check_recipient
auth_advertise_hosts = +auth_hosts : !+relay_hosts : +auth_relay_hosts : \
                       10.0.0.5
smtp_accept_max_nonmail = 20
trusted_users = CALLER


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

begin acl

check_recipient:
  deny     message = authentication required
          !authenticated = *
  accept

# ----- Authentication -----

begin authenticators

login:
  driver =		dovecot
  public_name =		LOGIN
  server_socket =	AUTHS
  server_condition =	${if eq {$auth1}{userx} {yes}{no}}
  server_set_id =	$auth1


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

begin routers

localuser:
  driver =	accept
  local_parts =	userx
  transport =	appendfile


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

begin transports

appendfile:
  driver =	appendfile
  delivery_date_add
  envelope_to_add
  file =	DIR/test-mail/$local_part
  create_file =	DIR/test-mail
  return_path_add
  user =	CALLER


# End