summaryrefslogtreecommitdiff
path: root/test/confs/3402
blob: d22aa99a743a16d4a1aab71ccc350f17c6a7ae66 (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
# Exim test configuration 3402

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

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

acl_smtp_rcpt = accept


# ----- 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}}

# End