-
Notifications
You must be signed in to change notification settings - Fork 15
Plugins
Verlihub provides some plugins that extend the core with new features like IP logging, chatroom, Lua language support and so on. In this part of the guide it will be display how to add, disable and enable plugins and commands of each extension.
You can manage plugins in Verlihub using four simple commands: pluglist, onplug, offplug and replug. Each command can be used in main chat window and as private message in hub bot. Here there is the explanation on how to use them:
!pluglist : List all loaded plugins
!onplug : Use this command to load a plugin
!offplug : Unload a plugin in use
!replug : Reload a plugin in use
!lstplug : List the registered plugins
Plugins will be automatically compiled with Verlihub core (if their dependencies are satisfied) unless you excluded it during installation. There are various plugins available for Verlihub:
- plugman: this is the Plugin manager for Verlihub
- lua: this allows you to use simple scripts written in Lua language (https://www.lua.org)
- python: this allows you to use scripts written with Python (https://www.python.org)
Note: Following plugins are deprecated:
- forbid: this plugin allows you to filter main chat and private messages with forbidden words
- replacer: this plugin replaces given patterns in text. For example if someone types Windows in the main chat, you can have this plugin change it to Winblows
- floodprot: this plugin offers more control from users flooding the hub
- stats: this periodically saves statistics in the database (i.e. users, share, upload, searching, etc...)
- messanger: this plugin is used to send messages to offline users
- iplog: this logs IP addresses as users join and leave the hub
- chatroom: this will set up individual chatrooms for users. This would work similarly to OPChat. This is great if you have a multiple-language hub
- isp: this plugin allows you to check connection types, nickname prefixes, and minimum shares, among other things
- pisg: this plugin allows you to create log file to be used with pisg that is a statistics generator. You can see generated graphs about daily actitity, most active times, most active nicks and so on (http://pisg.sourceforge.net/)
Some plugins will add new variables that you can see with !getconfig plugins command. See Configure the hub chapter for more information.
These commands are available after the LUA plugin is loaded:
!lualist : Lists loaded LUA scripts
!luaload <script> : Loads specified LUA script using relative path to VerliHub config folder
!luaunload <script / ID> : Unloads specified LUA script using relative path to VerliHub config folder or script ID as proposed with lualist command
!luareload <script / ID> : Reload a script, instead of using !luaunload and then !luaload or script ID as proposed with lualist command
!lualog <enable (0/1)> : Enable or disable LUA debug when you load a new script
!luainfo : Show information about running scripts
!luaversion : Show information about LUA library
If the script contains errors plugin will not load it and alert you where error is. To enable LUA logging use:
!lualog 1
To load automatically LUA scripts at every hub (re)start put them in hub config folder (where it is located dbconf file)
You can find a collection of usufull LUA scripts in the specific GIT repository located on Github site.
This plugin allow you to use Python script using VerliHub API. These commands are available after the LUA plugin is loaded:
!pylist : Lists loaded Python scripts
!pyload <script> : Loads specified Python script using relative path to VerliHub config folder
!pyunload <script / ID> : Unloads specified Python script using relative path to VerliHub config folder or script ID as proposed with lualist command
!pyreload <script / ID> : Reload a script, instead of using !pyunload and then !pyload or script ID as proposed with lualist command
!pylog <enable (0/1)> : Enable or disable Python debug when you load a new script
Forbid plugin allow you to filter both main chat and both private messages that contains forbidden words. These commands are available after loading the forbid plugin:
!lstforbid : Lists forbidden patterns
!addforbid <pattern> [-C <max_class>] [-f <flags>] [-r <kick_reason>] : Adds a forbidden pattern. See below the table for more information regarding the parameters
!modforbid <pattern> : Modifies forbidden pattern. See below the table for more information regarding the parameters
!delforbid <pattern> : Deletes forbidden pattern
Here there is a explanation of command parameters:
- -C <max_class>: using the -C option you can specify the classes to ignore filtering. Set to 1 to ignore registered users and up
- -f <flags>: you can specify which chats are screened and whether or not a report is sent to OPChat when a rule is broken. See flags paragraph
- -r <kick_reason>: you can specify a kick reason, enclose this in quotation marks.
| Value | Explanation| |-----------|------------|------------| |1|Control public chat| |2|Control private messages| |4|Notify in OPChat when a rule is broken|
If you want to use more than one flag just sum them
Plugins will add these variables:
- max_class_dest
- max_repeat_char: maximum number of repeated characters in the string
- max_upcase_percent: percentage of uppercase word in the message
To change this value please refers to Change plugin variable paragraph.
You can use this plugin as anti-spam utility. For example to allow some e-mail addresses in main chat use:
!addforbid (?<!google|@hotmail|etc|etc)(.com|.net|.org|etc|etc) -f 1
in this case the first set of brackets with ? <!. Or to ban IP addresses:
!addforbid b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)b -f 7 -C 0 -r "Kick message _2h"
Other usefull expressions are listed below.
rncrnornm|.rnnrnernt|.rnornrrng|.rnernu|.rnrrno|.rnnrnorn-rnirnp : This expression will catch this type of spam:
m
y
s
i
t
e
.
c
o
m
.s+cs+os+m|.s+ns+es+t|.s+os+rs+g|.s+es+u|.s+rs+o|.s+ns+os+-s+is+p|.s+is+ns+fs+o : This regex line will stop spam like this
. c o m
. c o m
The spammer can add as many spaces as they want and that regex will catch it. This will stop .com .net .org .eu .ro .no-ip but much more can be added. If you replace the "+" with "*" it will detect 0 or more spaces. The "+" detects 1 or more and in this way the expression will also catch the addresses without spaces characters.
(([a-zA-Z0-9]{3,15}[-.][a-zA-Z0-9]{3,15}([.-])([a-zA-Z0-9]{3,15}|[A-Za-z]{2,3})(([.-])([a-zA-Z0-9]{3,15}|[A-Za-z]{2,3}))?(/)?:[0-9]{1,5})|(dchub://|adc://|adcs://)[a-zA-Z0-9]{3,15}([.-])([a-zA-Z0-9]{3,15}|[A-Za-z]{2,3})(([.-_])([a-zA-Z0-9]{3,15}|[A-Za-z]{2,3}))?(/)?(:[0-9]{1,5}$)?) : This expression is valid to ban all addresses.
((http|HTTP)(s|S)?://|((w){3}|(W){3}).)[a-zA-Z0-9-]{3,15}([.-])([a-zA-Z0-9]{3,15}|[A-Za-z]{2,3})(([.-])([a-zA-Z0-9]{3,15}|[A-Za-z]{2,3}))?(/)? : This expression is valid to catch web addresses.
b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)b(:[0-9]{1,5}$)? : This expression is valid to catch IP addresses only.
\b\w{1,15}@\w{1,15}(.\w{1,15})?.[A-Za-z]{2,4}\b : This expression is valid to ban all e-mail addresses.
This plugin replaces given patterns in text. These commands are available after loading the replacer plugin:
!getreplacer : Lists words to replace
!addreplacer <word> <replacement word> <level of immunity> : Adds a word replacement. You can specify level of immunity so user with class equal or bigger than to given value will be immune to the word replacement
!delreplacer <word> : Removes an entry
Floodprot offers protection against flooders. The plugin does not provide any commands but it will add three new configuration variables:
- max_conn_per_ip: represents the maximum number of connection per IP. Set to 1 to allow one IP per user
- max_users_per_ip: represents the maximum number of users per IP. Set to 1 to allow one IP per user
- bantime_on_flood: number of seconds to ban the flooder
To change this value please refers to Change plugin variable paragraph.
No command is available for this plugin. Plugins periodically saves statistics in the database (i.e. users, share, upload, searching, etc...) Plugins save this data:
- uptime
- number users in hub
- users in each zone
- total share in GB
- total hub's upload (sent bytes, not real traffic)
- upload per each zone
- mean frequency of various actions
- active search
- passive search
- logins
- logouts
One of the best features of the stats plugin, is that the statistics it generates can be utililized by tools such as MRTG and RRDTOOL. MRTG is a program that generates graphs based on inputs from an external source. This allows you to view nice graphical statistics for your hub from a web page. RRDTOOL has similar functionality, but it only gathers and processes the data. You will also need a wrapper to capture the rrds generated by the program and display the graphs. RRDTOOL is also considerably faster and it is more advanced. It is recommended, that users without experience, use MRTG.
With messenger you can send messages to offline users. These commands are available after loading the messanger plugin:
+msgsend <nick> <topic/subject> <message text> : Sends a message to given nickname and will be displayed next time they log in
+msgip <ip> <topic/subject> <message text> : Sends a message to IP and will be displayed next time they log in
It is a good idea to send the message to a registered nickname not to send message to a guest user with given nickname
With this plugin you can log any IPs of users. These commands are available after loading the IPLog plugin:
!lastip <nick> [ <limit=10>] : Shows last IP addresses for given nickname
!lastnick <ip> [ <limit=10>] : Shows the last nicknames used by the given IP address
!iplog <ip> : Shows log history for given IP address
!nicklog <nick> : Show log history for given nickname
There are two sets of commands for the chatroom plugin; the first set it used to create, edit and delete rooms and the second one is used to invite users or revoke invitation.
The commands to manipulate the chatrooms are:
!lstroom : Lists all available chatrooms
!addroom <nick> [-CC <country code>] [-ac <min_auto_class>][-AC <max_auto_class>][-c <min_class>][-t <topic>] : Create a chatroom named nick. When specifying the nickname, make sure to respect nickname rules. See below the table for more information regarding the parameters
!delroom <nick> : Removes specified chat room
Here there is a explanation of command parameters:
- -CC <country code>: you can specify a country code for chatroom to create country specific room. This is a good idea if you a multi language hub. Only users with that county code can enter in the room.
- -ac <min_auto_class>: chatroom will be automatically open for users with class greater than given value
- -AC <max_auto_class>: chatroom will be automatically open for users with class less than given value
- -c <min_class>: this is the minimum class to use the chatroom
- -t <topic>: this the topic of the chat
The commands to manage the users in the chatrooms are:
+invite <online_users_nick> <invite message> : Invites a person into the chatroom with an optional invitation message
+leave : User can use this command to leave the room; no messages from the chatroom will be received
+out <nick> : Excludes a user from the chatroom. This command is different from the previous one because can be used by OP to exclude a user from the room
The plugin will add new variables:
- pi_chatroom.min_class_add: minimum class to add a new room
- pi_chatroom.min_class_del: minimum class to delete a room
- pi_chatroom.min_class_lst: minimum class to get list of all rooms
- pi_chatroom.min_class_mod: minimum class to edit a room
To change this value please refers to Change plugin variable paragraph.
This plugin allows you to check connection types, nickname prefixes, and minimum shares, among other things. These commands are available after loading the IPLog plugin:
!lstisp : Give a list of ISPs
!addisp <iprange> <other_parameters> : Add new ISP. See below the table for more information regarding the parameters : !modisp <iprange> <other_parameters> : Edit existing ISP. See below the table for more information regarding the parameters
!delisp <ipmin/iprange> : Deletes the given ISP. See below the table for more information regarding the parameters
Here there is a explanation of command parameters:
- -N <name>: a descriptive field used to indicate to other OPs what entry do
- -CC <country_codes>: a comma separated list of ISO standard country codes (VerliHub uses GeoIP to recognize CC from IP)
- -n <nick_pattern>: a regex pattern that nick must match; empty to disable. Inserting %[CC] into the regex will replace this by user CC. For example use [BBB] to match [BBB] anywhere in the nick or ^[BBB] to match [BBB] on the beginning of the nick and ^[A-Z0-9_].* to match nick that stars with number, letters or underscore
- -d <desc_tag>: this text is inserted into the users description; empty to disable. It may also contain %[CC]
- -c <conn_type>: determines what connetion users should have (case insensitive), empty to disable. You can use also regex, for example (Modem|[\d.]+Kbps) would be for all modem types, ^.LAN.... would be for LAN and .* for anything
- -g <share_guest>: minimum share value in GiB for guest users in gigabytes, -1 to disable or use natural number
- -r <share_reg>: minimum share value in GiB for registered users in gigabytes, -1 to disable or use natural number
- -v <share_vip>: minimum share value in GiB for VIP users in gigabytes, -1 to disable or use natural number
- -o <share_op>: minimum share value in GiB for OPs in gigabytes, -1 to disable or use natural number
- -G <max_share_guest>: maximum share value in GiB for guest users in gigabytes, -1 to disable or use natural number
- -R <max_share_reg>: maximum share value in GiB for registered users in gigabytes, -1 to disable or use natural number
- -V <max_share_vip>: maximum share value in GiB for VIP users in gigabytes, -1 to disable or use natural number
- -O <max_share_op>: maximum share value in GiB for OPs in gigabytes, -1 to disable or use natural number
- -mn <nick error message>: the message which should appear to user when he has wrong nick. You can use %[nick], %[pattern] or %[CC]
- -mc <conn error message>: the message which should appear to user when he has wrong connection type. You can use %[pattern] substring
When minshare is lower then hub's settings it won't work, so you will need to set min_share to lower limit
If you want to add user contry code before description, you can use this command:
!addisp 0.0.0.0..0.0.0.0 -N"ALL" -d"<%[CC]>"
this will add rules for all IPs
The plugin also add new configuration variables:
- max_check_nick_class: maximum class of user to check nickname
- max_check_isp_class: maximum class of user to check ISP
- max_check_conn_class: maximum class of user to check connection
- max_insert_desc_class: maximum class of user that plugin should replace description
- unit_min_share_bytes: TO BE REMOVED
- unit_max_share_bytes: TO BE REMOVED
- msg_share_more: message to send if user has a share more than set value for the ISP
- msg_share_less: message to send if user has a share less than set value for the ISP
- msg_no_isp: message to send if user ISP is not allowed
- allow_all_connections: allow all connections from ISP. Set to 1 to allow, 0 to disable
- case_sensitive_nick_pattern: math nick pattern with case sensitive. Set 1 to enable, 0 to disable
To change this value please refers to Change plugin variable paragraph.
To get a full list of ISP you can use Maxmind GeoIP ISP (license needed).
pisg (Perl IRC Statistics Generator) is a Perl script which takes IRC/DC++ logfiles and turns them into nice looking stats, which can be shown to users of your hub. The plugin automatically generate log files from main chat and put it in hub config folder as pisg.log. For more information on how to generate statistics, please read vh_pisg utility script page.
This plugin has not been implemented yet
Copyright © 2006-2024 Verlihub Team
Verlihub menu
- Verlihub Repository
- Wiki Home
- Installation
- Setup and Deployment
- Configuration
- Users
- Connections
- Messages
- Kicks and Bans
- Redirects
- Command List
- Variable List
- How-to
- FAQ's
- Utilities
Verlihub scripts