Testsuite: avoid ipv6 when testing retry data
[exim.git] / test / confs / 0038
CommitLineData
afda344b
PH
1# Exim test configuration 0038
2
3RRATELIMIT=0/1h/strict
4DRATELIMIT=0/1h/per_byte/strict
8f240103 5ACLRCPT=check_rcpt
afda344b
PH
6
7exim_path = EXIM_PATH
8host_lookup_order = bydns
9primary_hostname = myhost.test.ex
10rfc1413_query_timeout = 0s
11spool_directory = DIR/spool
12log_file_path = DIR/spool/log/%slog
13gecos_pattern = ""
14gecos_name = CALLER_NAME
15
16# ----- Main settings -----
17
8f240103 18acl_smtp_rcpt = ACLRCPT
afda344b
PH
19acl_smtp_data = check_data
20qualify_domain = test.ex
21
22
23# ----- ACL -----
24
25begin acl
26
27check_rcpt:
28 warn ratelimit = RRATELIMIT
29 log_message = RCPT: \
30 sender_rate=$sender_rate \
31 sender_rate_limit=$sender_rate_limit \
32 sender_rate_period=$sender_rate_period
33 accept
34
8f240103
PH
35check_rcpt2:
36 warn ratelimit = RRATELIMIT/noupdate
37 log_message = RCPT2-1: \
38 sender_rate=$sender_rate \
39 sender_rate_limit=$sender_rate_limit \
40 sender_rate_period=$sender_rate_period
41
42 warn ratelimit = RRATELIMIT
43 log_message = RCPT2-2: \
44 sender_rate=$sender_rate \
45 sender_rate_limit=$sender_rate_limit \
46 sender_rate_period=$sender_rate_period
47
48 accept
49
afda344b
PH
50check_data:
51 warn ratelimit = DRATELIMIT
52 log_message = DATA: \
53 sender_rate=$sender_rate \
54 sender_rate_limit=$sender_rate_limit \
55 sender_rate_period=$sender_rate_period
56 deny
57
58# End