summaryrefslogtreecommitdiff
path: root/test/confs/0485
blob: 51adbd3f1266ce86e6c4ca0bb0dafb09969211fb (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Exim test configuration 0485

.include DIR/aux-var/std_conf_prefix

primary_hostname = myhost.test.ex

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

hostlist  ahosts = net-lsearch;DIR/aux-fixed/TESTNUM.data
hostlist  bhosts = net-lsearch;DIR/aux-fixed/TESTNUM.data2

acl_smtp_helo = acl_check_helo
acl_smtp_mail = acl_check_mail
acl_smtp_rcpt = acl_check_rcpt
trusted_users = CALLER


# ----- ACLs -----

begin acl

acl_check_helo:
  warn   hosts    = +ahosts
         logwrite = at HELO: >$host_data<
  accept

acl_check_mail:
  warn   logwrite = at MAIL: >$host_data<
  warn   senders  = third@non-null
         logwrite = other lookup at MAIL: ${lookup{xyz}lsearch{DIR/aux-fixed/TESTNUM.data3}}
  warn  !senders  = :
         hosts    = +bhosts
         logwrite = at MAIL (non-null): >$host_data<
  accept

acl_check_rcpt:
  warn   logwrite = at RCPT: >$host_data<
  warn   logwrite = Expansions: $qualify_domain, $local_part@$domain
  accept


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

begin routers

r1:
  driver = accept
  transport = t1


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

begin transports

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

# End