Difference between revisions of "Ignore"
(Moved from Modignore) (Tag: Removed redirect) |
m (title change) |
||
Line 1: | Line 1: | ||
− | {{DISPLAYTITLE: | + | {{DISPLAYTITLE:Ignore}} |
{{External Module}} | {{External Module}} | ||
Latest revision as of 21:39, 2 January 2018
This is an external module. Please note that it may or may not work with the current release (1.6.6). This module is not included in the default ZNC installation, and you will need to manually compile it before you can load this module. Contact the author if you have any questions, but feel free to ask on #znc (chat.freenode.net). Someone might be able to help you there. |
An ignore module for ZNC ≥ 1.0.
Contents
Getting the Code[edit]
The code for this module can be found here. Please read "compiling modules" in order to build this module. Example method of fetching the code:
$ cd ~/.znc/modules/ $ git clone https://github.com/moshee/modignore.git
Installation[edit]
Refer to the README or use the following example:
$ znc-buildmod ignore.cc $ cp ignore.so ~/.znc/modules/
Usage[edit]
Arguments
This user module takes no arguments.
Read loading modules to learn more about loading modules.
Commands[edit]
Commands can be found on the README
Example Output[edit]
<MetaNova> help <*ignore> +-------------------------------------+-----------------------------------------------------------------------------------+ <*ignore> | Command | Description | <*ignore> +-------------------------------------+-----------------------------------------------------------------------------------+ <*ignore> | AddHost [mMaAnNcC] <nick!user@host> | Ignore a hostmask from [m]essage, [a]ction, [n]otice, [c]tcp; uppercase = private | <*ignore> | AddPattern [mMaAnNcC] <regex> | Ignore text matching a regular expression | <*ignore> | Clear | Clear all ignore entries | <*ignore> | Del <n> | Remove an ignore entry by index | <*ignore> | Help search | Generate this output | <*ignore> | List | Display the ignore list | <*ignore> +-------------------------------------+-----------------------------------------------------------------------------------+
The required arguments for AddHost and AddPattern should be "quoted" if they contain spaces.
To Do List[edit]
Taken from the README:
- Ignore invites - Ignore DCC (I'll have to take a look at how this works in the IRC protocol)