42413b4e49c8444ab1f36662313f095312a89ca7
[exim.git] / test / confs / 3418
1 # Exim test configuration 3418
2
3 .include DIR/aux-var/std_conf_prefix
4
5 primary_hostname = myhost.test.ex
6
7 # ----- Main settings -----
8
9 domainlist local_domains = test.ex : *.test.ex
10
11 auth_advertise_hosts = 10.0.0.5
12 trusted_users = CALLER
13
14 event_action = ${acl {logger}}
15
16 # ----- ACL -----
17
18 begin acl
19
20 .include DIR/aux-fixed/event-logger-acl
21
22
23
24 # ----- Authentication -----
25
26 begin authenticators
27
28 testname:
29   driver = plaintext
30   public_name = mylogin
31   server_debug_print = +++MYLOGIN \$1="$1" \$2=\"$2" \$3="$3"
32   server_condition = "\
33     ${if match{$1}{^(\\\\S+)\\\\s+(\\\\S+)\\$}\
34     {${if and {{eq{$1}{userx}}{eq{$2}{secret}}}{yes}{no}}}{no}}"
35   server_set_id = $auth1
36
37
38 # End