-
Notifications
You must be signed in to change notification settings - Fork 3
/
plugin-rbl.html
38 lines (26 loc) · 1.07 KB
/
plugin-rbl.html
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
<html>
<body>
<h2><a href="mailfront.html">mailfront</a></h2>
<h1>Plugin: rbl</h1>
<hr />
<p>This plugin looks up the remote IP of the client in a list of RBLs,
and blocks all messages if it is listed.</p>
<h2>Configuration</h2>
<dl>
<dt><tt>RBL_BLACKLISTS</tt></dt> <dd>The list of RBL domain names to
search, separated by commas (<tt>,</tt>). If this list is empty, no
action is taken.</dd>
<dt><tt>RBL_DEBUG</tt></dt> <dd>If set, this plugin will provide extra
output which may be useful in diagnosing RBL issues.</dd>
<dt><tt>RBL_QUEUEDIR</tt></dt> <dd>If set and the client is listed on
one of the listed RBLs, capture the message into the named directory and
then reject instead of rejecting
earlier. See <a href="backend-queuedir.html">the <tt>queuedir</tt>
backend</a> for more details on settings (prefixed
by <tt>RBL_</tt>).</dd>
<dt><tt>RBL_WHITELISTS</tt></dt> <dd>The list of RBL domain names to
search for whitelist entries, separated by commas (<tt>,</tt>). If the
IP is found in one of these lists, the blacklists are not consulted.</dd>
</dl>
</body>
</html>