Palaver ZNC module provides push notifications to Palaver while Palaver is disconnected from IRC.
You will receive a push notification when any of the following rules are met:
Settings > Mentions
Notifications will ONLY be sent if all your clients are disconnected, or marked as away. You can use the clientaway module to mark a connected client as away.
This is so while you are on IRC on another device you wont receive many notifications on your phone at the same time.
$ wget https://github.com/cocodelabs/znc-palaver/archive/master.tar.gz
$ tar -xzf master.tar.gz
$ cd znc-palaver-master
$ git clone https://github.com/Palaver/znc-palaver
$ cd znc-palaver
$ make
Copy the compile ZNC module to your ZNC settings:
$ mkdir -p ~/.znc/modules
$ cp palaver.so ~/.znc/modules
Now load the ZNC module:
/msg *status loadmod palaver
When upgrading the module to a newer version be sure to run
/msg *status unloadmod palaver
before you copy the updated module into
place. Without doing this, you may experience an issue where you will be
unable to load the update version correctly without restarting ZNC.
If you are having any problems with the module you can follow the following steps to debug your setup.
/msg *palaver info
and it will let you know if your device is registered./msg *palaver test
to send a test notification to your registered devices.There may be a few reasons for this problem, you can run ZNC in debug mode
(znc --debug
) while you send /msg *palaver test
to find out more.
ZNC will then output why the notification failed to send.
This is most likely due to using older versions of OpenSSL. Upgrading to the latest version of OpenSSL and recompiling ZNC against the modern version of OpenSSL should solve your problem.
This error indicates that ZNC was unable to send the push notification due to the network being unreachable. This may be that caused by your operating system or ZNC being configured for IPv6 when your service provider does not support it.
To solve this problem you can force IPv4 connections in ZNC using:
/msg *status setbindhost 0.0.0.0
This error indicates a problem with the C++ regex implementation in your C++ compiler. Older versions of GCC have buggy implementations of regex and are incompatible with the module. GCC 4.9 or newer, and Clang are known to work. Please upgrade to a modern version.