testcase
[exim.git] / test / confs / 0552
CommitLineData
047bdd8c
PH
1# Exim test configuration 0552
2
3DDF=
4SERVER=
5
6exim_path = EXIM_PATH
bc3c7bb7 7keep_environment =
047bdd8c
PH
8host_lookup_order = bydns
9primary_hostname = myhost.test.ex
047bdd8c
PH
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/SERVER%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
23f3dc67 14tls_advertise_hosts =
047bdd8c
PH
15
16# ----- Main settings -----
17
18acl_not_smtp = check_not
19acl_smtp_connect = check_connect
20acl_smtp_rcpt = check_rcpt
21
22queue_only
23
24# ----- ACL -----
25
26begin ACL
27
28check_connect:
29 accept DDF
30
31check_rcpt:
32 accept delay = 1s
33
34check_not:
35 accept delay = 1s
36 logwrite = Accept non-SMTP
37
38
39# ----- Routers -----
40
41begin routers
42
43r1:
44 driver = accept
45 transport = t1
46
47
48# ----- Transports -----
49
50begin transports
51
52t1:
53 driver = smtp
30079bc1 54 port = PORT_D
7eb59ff9 55 hosts = 127.0.0.1
047bdd8c
PH
56 allow_localhost
57 command_timeout = 2s
58
59
60# ----- Retry -----
61
62begin retry
63
64* * F,1d,1s
65
66
67# End