update to pre-4.87 master
[exim.git] / test / confs / 3415
CommitLineData
afda344b
PH
1# Exim test configuration 3415
2
3SERVER=
4SUBMISSION_OPTIONS=
5AUTH_ID_DOMAIN=
6
7exim_path = EXIM_PATH
8host_lookup_order = bydns
9primary_hostname = myhost.test.ex
afda344b
PH
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/SERVER%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
bfe645c1 14tls_advertise_hosts =
afda344b
PH
15
16# ----- Main settings -----
17
18acl_smtp_mail = a1
19acl_smtp_rcpt = accept
20
21queue_only
22trusted_users = CALLER
23
24
25# ----- ACL -----
26
27begin acl
28
29a1:
30 warn senders = ^(?!notsubmit@)
31 control = submissionSUBMISSION_OPTIONS
32 accept
33
34
35# ----- Authenticators -----
36
37begin authenticators
38
39au1:
40 driver = plaintext
41 public_name = PLAIN
42 server_prompts = :
43 server_condition = \
44 ${if and {{eq{$2}{username}}{eq{$3}{mysecret}}}{yes}{no}}
45 server_set_id = $2AUTH_ID_DOMAIN
46
47
48# End