testcase
[exim.git] / test / confs / 0530
CommitLineData
30dba1e6
PH
1# Exim test configuration 0530
2
3exim_path = EXIM_PATH
bc3c7bb7 4keep_environment =
30dba1e6
PH
5host_lookup_order = bydns
6primary_hostname = myhost.test.ex
30dba1e6
PH
7spool_directory = DIR/spool
8log_file_path = DIR/spool/log/%slog
9gecos_pattern = ""
10gecos_name = CALLER_NAME
23f3dc67 11tls_advertise_hosts =
30dba1e6
PH
12
13# ----- Main settings -----
14
15acl_smtp_rcpt = accept control = suppress_local_fixups
16
17
18# ----- Routers -----
19
20begin routers
21
22r1:
23 driver = accept
24 senders = :
25 transport = t1
26
27r2:
28 driver = accept
29 transport = t2
30
31
32# ----- Transports -----
33
34begin transports
35
36t1:
37 driver = appendfile
38 file = DIR/test-mail/$local_part
39 user = CALLER
40
41t2:
42 driver = autoreply
43 to = $sender_address
44 subject = Re: $h_subject:
45 text = This is the text of the autoreply.
46 user = CALLER
47
48# End