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