help: Remove references to old ban .confs,
calling bandb "the database" instead.
This commit is contained in:
parent
3102dbdc4f
commit
e875ae74ae
6 changed files with 10 additions and 11 deletions
|
@ -1,9 +1,9 @@
|
||||||
DLINE [duration] <ip> :[reason]
|
DLINE [duration] <ip> :[reason]
|
||||||
|
|
||||||
Adds a DLINE to the ircd.conf or klines.conf file
|
Adds a DLINE to the database which will deny any
|
||||||
which will deny any connections from the IP address
|
connections from the IP address of the banned client.
|
||||||
of the banned client. The banned client will receive
|
The banned client will receive a message saying
|
||||||
a message saying he/she is banned with reason [reason]
|
he/she is banned with reason [reason].
|
||||||
|
|
||||||
Duration is optional, and is in minutes.
|
Duration is optional, and is in minutes.
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
KLINE <user@host> :[reason] [| oper reason]
|
KLINE <user@host> :[reason] [| oper reason]
|
||||||
|
|
||||||
Adds a KLINE to the kline.conf file which will ban the
|
Adds a KLINE to the database which will ban the
|
||||||
specified user from using this server. The banned
|
specified user from using this server. The banned
|
||||||
client will receive a message saying he/she is banned
|
client will receive a message saying he/she is banned
|
||||||
with reason [reason].
|
with reason [reason].
|
||||||
|
|
||||||
If an oper reason is added (the pipe must be specified
|
If an oper reason is added (the pipe must be specified
|
||||||
to seperate the fields) this will be added into the
|
to seperate the fields) this will be added into the
|
||||||
kline.conf but will not be shown to the user when they
|
database but will not be shown to the user when they
|
||||||
are given the kline reason.
|
are given the kline reason.
|
||||||
|
|
||||||
KLINE <user@ip.ip.ip.ip> :[reason] [| oper reason]
|
KLINE <user@ip.ip.ip.ip> :[reason] [| oper reason]
|
||||||
|
|
|
@ -4,7 +4,7 @@ When no [option] is given, ircd will re-read the
|
||||||
ircd.conf file.
|
ircd.conf file.
|
||||||
|
|
||||||
[option] can be one of the following:
|
[option] can be one of the following:
|
||||||
BANS - Re-reads kline.conf, dline.conf, resv.conf and xline.conf
|
BANS - Re-reads kline/dline/resv/xline database
|
||||||
DNS - Re-read the /etc/resolv.conf file
|
DNS - Re-read the /etc/resolv.conf file
|
||||||
HELP - Re-reads help files
|
HELP - Re-reads help files
|
||||||
MOTD - Re-reads MOTD file
|
MOTD - Re-reads MOTD file
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
RESV [time] <channel|nick> :<reason>
|
RESV [time] <channel|nick> :<reason>
|
||||||
|
|
||||||
Reserves a channel or nickname from use. If [time] is not specified this
|
Reserves a channel or nickname from use. If [time] is not specified this
|
||||||
is added to resv.conf, otherwise is temporary for [time] minutes.
|
is added to the database, otherwise is temporary for [time] minutes.
|
||||||
|
|
||||||
Nick resvs accept the same wildcard chars as xlines.
|
Nick resvs accept the same wildcard chars as xlines.
|
||||||
Channel resvs only use exact string comparisons.
|
Channel resvs only use exact string comparisons.
|
||||||
|
|
|
@ -2,5 +2,4 @@ UNRESV <channel|nick>
|
||||||
|
|
||||||
-- Remove a RESV on a channel or nick
|
-- Remove a RESV on a channel or nick
|
||||||
Will attempt to remove the resv for the given
|
Will attempt to remove the resv for the given
|
||||||
channel/nick. If the resv is ircd.conf based,
|
channel/nick.
|
||||||
the resv will not be removed.
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
XLINE [time] <gecos> :<reason>
|
XLINE [time] <gecos> :<reason>
|
||||||
|
|
||||||
Bans by gecos (aka 'real name') field. If [time] is not specified
|
Bans by gecos (aka 'real name') field. If [time] is not specified
|
||||||
this is added to xline.conf, otherwise is temporary for [time]
|
this is added to the database, otherwise is temporary for [time]
|
||||||
minutes.
|
minutes.
|
||||||
|
|
||||||
Eg. /quote xline eggdrop?bot :no bots
|
Eg. /quote xline eggdrop?bot :no bots
|
||||||
|
|
Loading…
Reference in a new issue