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