Testsuite: Explicit disabling of identd no longer needed
[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 host_lookup_order = bydns
9 primary_hostname = myhost.test.ex
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/SERVER%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14
15 # ----- Main settings -----
16
17 acl_smtp_mail = a1
18 acl_smtp_rcpt = accept
19
20 queue_only
21 trusted_users = CALLER
22
23
24 # ----- ACL -----
25
26 begin acl
27
28 a1:
29 warn senders = ^(?!notsubmit@)
30 control = submissionSUBMISSION_OPTIONS
31 accept
32
33
34 # ----- Authenticators -----
35
36 begin authenticators
37
38 au1:
39 driver = plaintext
40 public_name = PLAIN
41 server_prompts = :
42 server_condition = \
43 ${if and {{eq{$2}{username}}{eq{$3}{mysecret}}}{yes}{no}}
44 server_set_id = $2AUTH_ID_DOMAIN
45
46
47 # End