testsuite: abstract out common conf settings
[exim.git] / test / confs / 3414
1 # Exim test configuration 3414
2
3 ACL=
4 S=
5
6 exim_path = EXIM_PATH
7 keep_environment =
8 host_lookup_order = bydns
9 primary_hostname = myhost.test.ex
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14 tls_advertise_hosts =
15
16 # ----- Main settings -----
17
18 acl_smtp_mail = mail
19 S acl_smtp_mailauth=ACL
20
21
22 # ----- ACLs -----
23
24 begin acl
25
26 acl1:
27 accept condition = ${if eq{$authenticated_sender}{ok@ok}{1}{0}}
28
29 mail:
30 warn log_message = \$authenticated_sender=$authenticated_sender
31 accept
32
33
34 # ----- Authenticators -----
35
36 begin authenticators
37
38 ok:
39 driver = plaintext
40 public_name = PLAIN
41 server_prompts = :
42 server_condition = true
43
44
45 # End