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