1 |
# $Id$ |
2 |
RXLINE [time] <mask> [ON <server>] :[reason] |
3 |
|
4 |
[time] if present, gives number of minutes for temporary RXLINE |
5 |
|
6 |
Adds a regular expression XLINE to the rxline.conf file which |
7 |
will ban the specified gecos from that server. |
8 |
The banned client will receive a message saying he/she |
9 |
is banned with reason [reason] |
10 |
|
11 |
regular expression examples: |
12 |
RXLINE ^bot*bot$ |
13 |
To rxline with a space: |
14 |
RXLINE ^bot[[:space:]]bot$ Where "space" is the written word "space", or |
15 |
RXLINE ^bot\sbot$ |
16 |
|
17 |
RXLINE ^(?i)bot\sbot$ for case insensitive regex matching. |
18 |
|
19 |
See: http://en.wikipedia.org/wiki/Regular_expression |
20 |
http://www.pcre.org/pcre.txt |
21 |
|
22 |
If ON server is present, the RXLINE is propagated to given server. |
23 |
|
24 |
- Requires Oper Priv: admin, xline |