PIPE_CONNECT: fix feature-cache refresh
[exim.git] / test / confs / 3415
CommitLineData
afda344b
PH
1# Exim test configuration 3415
2
3SERVER=
4SUBMISSION_OPTIONS=
5AUTH_ID_DOMAIN=
6
d4dc049f
JH
7.include DIR/aux-var/std_conf_prefix
8
afda344b 9primary_hostname = myhost.test.ex
afda344b
PH
10
11# ----- Main settings -----
12
13acl_smtp_mail = a1
14acl_smtp_rcpt = accept
15
16queue_only
17trusted_users = CALLER
18
19
20# ----- ACL -----
21
22begin acl
23
24a1:
25 warn senders = ^(?!notsubmit@)
26 control = submissionSUBMISSION_OPTIONS
27 accept
28
29
30# ----- Authenticators -----
31
32begin authenticators
33
34au1:
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