summaryrefslogtreecommitdiff
path: root/test/confs/0496
blob: 490c29087942864ffc8f3e6cf3bafa97f2bd1a6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Exim test configuration 0496

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

# ----- Main settings -----

acl_smtp_rcpt = check_rcpt


# ----- ACL -----

begin acl

check_rcpt:
  warn     message = data1 data1\ndata2 data2\n
  warn     message = \n\ndata3\n\ndata4\n\n
  warn     message = :after_received:After-Received: some text\n\
                     :at_start:At-Start: some text\n\
                     :at_end:  At-End: some text
  warn     message = data4
  warn     add_header = X-multiline: foo\n\tbar
  accept   logwrite = $headers_added


# ----- Routers -----

begin routers

r9:
  driver = accept
  transport = t1


# ----- Transports -----

begin transports

t1:
  driver = appendfile
  file = DIR/test-mail/$local_part
  create_file = DIR/test-mail
  user = CALLER

# End