Allow relative file names in .include lines (Closes 1971)
[exim.git] / test / confs / 3415
1 # Exim test configuration 3415
2
3 SERVER=
4 SUBMISSION_OPTIONS=
5 AUTH_ID_DOMAIN=
6
7 .include DIR/aux-var/std_conf_prefix
8
9 primary_hostname = myhost.test.ex
10
11 # ----- Main settings -----
12
13 acl_smtp_mail = a1
14 acl_smtp_rcpt = accept
15
16 queue_only
17 trusted_users = CALLER
18
19
20 # ----- ACL -----
21
22 begin acl
23
24 a1:
25 warn senders = ^(?!notsubmit@)
26 control = submissionSUBMISSION_OPTIONS
27 accept
28
29
30 # ----- Authenticators -----
31
32 begin authenticators
33
34 au1:
35 driver = plaintext
36 public_name = PLAIN
37 server_prompts = :
38 server_condition = \
39 ${if and {{eq{$2}{username}}{eq{$3}{mysecret}}}{yes}{no}}
40 server_set_id = $2AUTH_ID_DOMAIN
41
42
43 # End