testcase
[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
bc3c7bb7 8keep_environment =
afda344b
PH
9host_lookup_order = bydns
10primary_hostname = myhost.test.ex
afda344b
PH
11spool_directory = DIR/spool
12log_file_path = DIR/spool/log/SERVER%slog
13gecos_pattern = ""
14gecos_name = CALLER_NAME
23f3dc67 15tls_advertise_hosts =
afda344b
PH
16
17# ----- Main settings -----
18
19acl_smtp_mail = a1
20acl_smtp_rcpt = accept
21
22queue_only
23trusted_users = CALLER
24
25
26# ----- ACL -----
27
28begin acl
29
30a1:
31 warn senders = ^(?!notsubmit@)
32 control = submissionSUBMISSION_OPTIONS
33 accept
34
35
36# ----- Authenticators -----
37
38begin authenticators
39
40au1:
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