Account properly for quoted or 2047-encoded MIME parameters while walking headers...
[exim.git] / test / confs / 0552
CommitLineData
047bdd8c
PH
1# Exim test configuration 0552
2
3DDF=
4SERVER=
5
6exim_path = EXIM_PATH
7host_lookup_order = bydns
8primary_hostname = myhost.test.ex
9rfc1413_query_timeout = 0s
10spool_directory = DIR/spool
11log_file_path = DIR/spool/log/SERVER%slog
12gecos_pattern = ""
13gecos_name = CALLER_NAME
14
15# ----- Main settings -----
16
17acl_not_smtp = check_not
18acl_smtp_connect = check_connect
19acl_smtp_rcpt = check_rcpt
20
21queue_only
22
23# ----- ACL -----
24
25begin ACL
26
27check_connect:
28 accept DDF
29
30check_rcpt:
31 accept delay = 1s
32
33check_not:
34 accept delay = 1s
35 logwrite = Accept non-SMTP
36
37
38# ----- Routers -----
39
40begin routers
41
42r1:
43 driver = accept
44 transport = t1
45
46
47# ----- Transports -----
48
49begin transports
50
51t1:
52 driver = smtp
047bdd8c 53 hosts = 127.0.0.1
30079bc1
JH
54 port = PORT_D
55 interface = 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