summaryrefslogtreecommitdiff
path: root/test/confs/3403
blob: 79fb73fe1209e93814b72c822eacf5deaba525ae (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 3403

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

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

acl_smtp_rcpt = accept
acl_smtp_data = accept add_header = :at_start:${authresults {$primary_hostname}}


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

begin authenticators

plain1:
  driver = plaintext
  public_name = PLAIN
  server_condition = \
    ${if or {\
      {and {{eq{$2}{userx}}{eq{$3}{secret}}}}\
      {and {{eq{$2}{usery}}{eq{$3}{ab?}}}}\
    }\
    {yes}{no}}
  server_set_id = $2
  server_mail_auth_condition = ${if eq{$authenticated_id}{userx}{yes}}


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

begin routers

d1:
  driver = accept
  headers_add = aid: $authenticated_id
  retry_use_local_part
  transport = t1


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

begin transports

t1:
  driver = appendfile
  file = DIR/test-mail/$local_part
  user = CALLER

# End