mirror of
https://github.com/Mibew/jabber-plugin.git
synced 2024-11-15 00:34:19 +03:00
2.2 KiB
2.2 KiB
Mibew Jabber plugin
Plugin for Mibew Messenger to send notifications on new chats into Jabber (by XMPP).
Install
- 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.
Plugin's configurations
The plugin can be configured with values in "<Mibew root>
/configs/config.yml"
file.
config.server
Type: String
Address of your XMPP (Jabber) server. Should be written as <proto>://<server address>:<port>
.
config.username
Type: String
The username (JID) of your notification bot. Could be written as JID/Resource
.
config.password
Type: String
The password of bot XMPP account.
config.rcpt
Type: String
or Array
JID or JIDs to send notifications to.
Build from sources
- 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.