blob: a66deea6a558ddf80e1cbe8d8a570c58438c4cae (
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
|
rbl {
rbls {
fake {
from = true;
ipv4 = true;
ipv6 = true;
rbl = "fake.rbl";
symbol = "FAKE_RBL_UNKNOWN";
unknown = true;
returncodes = {
"FAKE_RBL_CODE_2" = "127.0.0.2";
"FAKE_RBL_CODE_3" = "127.0.0.3";
}
}
fake_received {
from = false;
ipv4 = true;
ipv6 = true;
received = true;
rbl = "fake.rbl";
symbol = "FAKE_RECEIVED_RBL_UNKNOWN";
unknown = true;
returncodes = {
"FAKE_RECEIVED_RBL_CODE_2" = "127.0.0.2";
"FAKE_RECEIVED_RBL_CODE_3" = "127.0.0.3";
}
}
fake_whitelist {
from = true;
ipv4 = true;
ipv6 = true;
received = true;
is_whitelist = true;
rbl = "fake.wl";
symbol = "FAKE_WL_RBL_UNKNOWN";
unknown = true;
returncodes = {
"FAKE_WL_RBL_CODE_2" = "127.0.0.2";
"FAKE_WL_RBL_CODE_3" = "127.0.0.3";
}
}
}
}
|