diff options
author | Adam <Adam@anope.org> | 2010-09-19 17:21:08 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-09-19 17:21:08 -0400 |
commit | ce69f294a116bf8dfaf0e5e650159dbefe1b484c (patch) | |
tree | f6b5245fe876bbd968f1a12708861ab67fcb7717 /data | |
parent | f8ee95ef989b83d9af7f802a25a8c7d9f81dd116 (diff) |
Added configuration for m_dnsbl for what return values get banned
Diffstat (limited to 'data')
-rw-r--r-- | data/example.conf | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/data/example.conf b/data/example.conf index 639077f65..43a6069f7 100644 --- a/data/example.conf +++ b/data/example.conf @@ -1744,16 +1744,27 @@ blacklist { /* Name of the blacklist */ name = "rbl.efnetrbl.org"; + /* How long to set the akill for */ time = 4h; + /* Reason for akill. * %n is the nick of the user * %u is the ident/username of the user - * %r is the realname of the user + * %g is the realname of the user * %h is the hostname of the user * %i is the IP of the user + * %r is the reason (configured below). Will be nothing if not configured. */ reason = "You are listed in the efnet RBL, visit http://rbl.efnetrbl.org/?i=%i for info" + + /* Replies to ban and their reason. If this is totally ommited all replies get banned */ + 1 = "Open Proxy"; + /* Don't ban for result 2 or 3 */ + #2 = "spamtrap666"; + #3 = "spamtrap50"; + 4 = "TOR"; + 5 = "Drones / Flooding"; } blacklist { |