Plugin for Mibew Messenger to send notifications on new chats into Jabber (by XMPP).
- Get the archive with the plugin sources. You can download it from the official site or build the plugin from sources.
- Untar/unzip the plugin's archive.
- Put files of the plugins to the
<MIBEW-ROOT>/plugins
folder. - Configure the plugin by altering the section
plugins
in "<Mibew root>
/configs/config.yml" file.
If the "plugins" structure looks like plugins: []
it will become:
plugins:
"Mibew:Jabber": # Plugin's configurations are described below
server: "tcp://example.com:5222"
username: "account@example.com/MibewMessenger"
password: "password"
rcpt: "jid@example.com"
or (if you want to send notifications to multiple users):
plugins:
"Mibew:Jabber": # Plugin's configurations are described below
server: "tcp://example.com:5222"
username: "account@example.com/MibewMessenger"
password: "password"
rcpt: ["jid1@example.com", "jid2@example.com"]
- Navigate to
<MIBEW-BASE-URL>/operator/plugin
page and enable the plugin.
The plugin can be configured with values in "<Mibew root>
/configs/config.yml"
file.
Type: String
Address of your XMPP (Jabber) server. Should be written as <proto>://<server address>:<port>
.
Type: String
The username (JID) of your notification bot. Could be written as JID/Resource
.
Type: String
The password of bot XMPP account.
Type: String
or Array
JID or JIDs to send notifications to.
- Obtain a copy of the repository using
git clone
, download button, or another way. - Install node.js and npm.
- Install Gulp.
- Install npm dependencies using
npm install
. - Run Gulp to build the sources using
gulp default
.
Finally .tar.gz
and .zip
archives of the ready-to-use Plugin will be available in release directory.