Fix CVE-2016-1531
[exim.git] / test / confs / 3406
1 # Exim test configuration 3406
2
3 exim_path = EXIM_PATH
4 keep_environment =
5 host_lookup_order = bydns
6 primary_hostname = myhost.test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11 tls_advertise_hosts =
12
13 # ----- Main settings -----
14
15 acl_smtp_rcpt = accept
16 trusted_users = CALLER
17
18
19 # ----- Authentication -----
20
21 begin authenticators
22
23 a1:
24 driver = plaintext
25 public_name = FIRST
26 server_advertise_condition = \
27 ${if eq{$sender_host_address}{10.0.0.2}{yes}{no}}
28 server_condition = yes
29
30 a2:
31 driver = plaintext
32 public_name = SECOND
33 server_advertise_condition = \
34 ${if eq{$sender_host_address}{10.0.0.3}{yes}{no}}
35 server_condition = yes
36
37 # End