Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 0300
CommitLineData
afda344b
PH
1# Exim test configuration 0300
2
3DELAY=0s
4PAH=127.0.0.1
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
afda344b
PH
9spool_directory = DIR/spool
10log_file_path = DIR/spool/log/%slog
11gecos_pattern = ""
12gecos_name = CALLER_NAME
13
14# ----- Main settings -----
15
16acl_smtp_connect = check_connect
17acl_smtp_helo = check_helo
18acl_smtp_rcpt = accept
19pipelining_advertise_hosts = PAH
20
21
22# ----- ACL -----
23
24begin ACL
25
26check_connect:
27 accept delay = DELAY
28
29check_helo:
30 warn condition = ${if eq {$sender_helo_name}{dis.able}{yes}{no}}
31 control = no_enforce_sync
32 accept
33
34
35# ------ Routers ------
36
37begin routers
38
39r1:
40 driver = redirect
41 data = :blackhole:
42
43# End